/* ===================================================
   VIDRAÇARIA HELBERT HILÁRIO — style.css
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── VARIÁVEIS ── */
:root {
  --bg-950: #060810;
  --bg-900: #0a0d14;
  --bg-800: #0f1420;
  --bg-card: #0d1117;
  --teal: #2baece;
  --teal-light: #4fc3de;
  --teal-dark: #1880a0;
  --steel: #3b9bb3;
  --white: #ffffff;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --border: rgba(255,255,255,0.07);
  --border-teal: rgba(43,174,206,0.3);
  --glass-bg: rgba(255,255,255,0.04);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.5);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  --font: 'Inter', system-ui, sans-serif;
  --max-w: 1200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--bg-950);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select {
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-900); }
::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }
::selection { background: rgba(43,174,206,0.3); color: #fff; }

/* ── UTILITIES ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.glass-dark {
  background: rgba(10,13,20,0.88);
  border: 1px solid var(--border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--teal-light) 50%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-teal {
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--teal);
}
.line-teal {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43,174,206,0.5), transparent);
}
.text-center { text-align: center; }
.text-center .section-tag { justify-content: center; }
.text-center .section-tag::before { display: none; }
.text-center .section-tag::after {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--teal);
}

/* ── BOTÕES ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border-radius: 6px;
  padding: 13px 28px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: white;
  border: 1px solid rgba(43,174,206,0.3);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  box-shadow: 0 0 30px rgba(43,174,206,0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--teal-light);
  border: 1px solid rgba(43,174,206,0.4);
}
.btn-outline:hover {
  background: rgba(43,174,206,0.1);
  border-color: rgba(43,174,206,0.7);
  color: #fff;
  transform: translateY(-2px);
}
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── ANIMAÇÕES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(0.9); opacity: 0.7; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1001;
}
#navbar.scrolled {
  background: rgba(10,13,20,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  transition: opacity var(--transition);
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

.nav-logo-icon {
  width: 40px; height: 40px;
  background: rgba(43,174,206,0.1);
  border: 1px solid rgba(43,174,206,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--teal-light);
  transition: var(--transition);
}
.nav-logo:hover .nav-logo-icon {
  background: rgba(43,174,206,0.2);
}
.nav-logo-text .name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  transition: color var(--transition);
}
.nav-logo:hover .name { color: var(--teal-light); }
.nav-logo-text .sub {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-300);
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.05);
}
.nav-link.active { color: var(--teal-light); background: rgba(43,174,206,0.08); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-300);
  border-radius: 6px;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
}
.nav-dropdown-btn:hover, .nav-dropdown-btn.active {
  color: #fff;
  background: rgba(255,255,255,0.05);
}
.nav-dropdown-btn.active { color: var(--teal-light); background: rgba(43,174,206,0.08); }
.nav-dropdown-btn svg { transition: transform 0.25s ease; }
.nav-dropdown-btn.open svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 220px;
  background: rgba(10,13,20,0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  display: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: slideDown 0.2s ease;
}
.dropdown-menu.open { display: block; }
.dropdown-item {
  display: block;
  padding: 9px 12px;
  font-size: 0.84rem;
  color: var(--gray-300);
  border-radius: 6px;
  transition: var(--transition);
}
.dropdown-item:hover { color: #fff; background: rgba(255,255,255,0.06); }
.dropdown-item.active { color: var(--teal-light); background: rgba(43,174,206,0.1); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 0.84rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--teal-light); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-toggle:hover { background: rgba(255,255,255,0.05); }
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gray-300);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span { background: #fff; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu — fullscreen overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6,8,16,0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 80px 24px 28px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* animation state — closed */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0s linear 0.32s;
}
.mobile-menu::-webkit-scrollbar { display: none; }
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0s linear 0s;
}

/* Main nav links */
.mobile-nav-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.mobile-nav-link {
  padding: 13px 16px;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--gray-200);
  border-radius: 10px;
  transition: var(--transition);
  letter-spacing: -0.01em;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--teal-light);
  background: rgba(43,174,206,0.09);
}

/* Services section */
.mobile-services-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0 12px;
  margin: 4px 0 6px;
}
/* 2-column grid so all 11 services fit without scrolling */
.mobile-service-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 18px;
}
.mobile-service-link {
  padding: 9px 12px;
  font-size: 0.84rem;
  color: var(--gray-400);
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-service-link:hover { color: #fff; background: rgba(255,255,255,0.05); }

/* CTA at bottom */
.mobile-cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 12px; }
.mobile-cta .btn { justify-content: center; }

/* Stagger animation for links on open */
@keyframes mobileSlideIn {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}
.mobile-menu.open .mobile-nav-link {
  animation: mobileSlideIn 0.3s ease both;
}
.mobile-menu.open .mobile-nav-link:nth-child(1) { animation-delay: 0.07s; }
.mobile-menu.open .mobile-nav-link:nth-child(2) { animation-delay: 0.12s; }
.mobile-menu.open .mobile-nav-link:nth-child(3) { animation-delay: 0.17s; }
.mobile-menu.open .mobile-nav-link:nth-child(4) { animation-delay: 0.22s; }
.mobile-menu.open .mobile-services-label { animation: mobileSlideIn 0.3s 0.25s ease both; }
.mobile-menu.open .mobile-service-links    { animation: mobileSlideIn 0.3s 0.28s ease both; }
.mobile-menu.open .mobile-cta             { animation: mobileSlideIn 0.3s 0.32s ease both; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-950);
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg-950) 40%, rgba(6,8,16,0.6) 70%, transparent),
    linear-gradient(to top, var(--bg-950) 0%, transparent 50%);
}
.hero-grid {
  display: none;
}
.hero-glow {
  position: absolute;
  top: 30%;
  right: 20%;
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(43,174,206,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-tag { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  max-width: 700px;
}
.hero p {
  font-size: 1.1rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-300);
}
.hero-badge svg { color: var(--teal-light); flex-shrink: 0; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 0.65rem;
  color: var(--gray-600);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(43,174,206,0.5), transparent);
}

/* ── STATS ── */
.stats {
  padding: 80px 0;
  background: var(--bg-900);
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stat-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(43,174,206,0.2);
}
.stat-value {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.stat-desc {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-900); }
.section-header { max-width: 640px; margin: 0 auto 56px; }
.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ── SERVIÇOS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(43,174,206,0.2);
  border-color: rgba(43,174,206,0.15);
}
.service-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 60%);
}
.service-img-tag {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-light);
  background: rgba(6,8,16,0.8);
  border: 1px solid rgba(43,174,206,0.3);
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.service-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.service-card:hover .service-body h3 { color: var(--teal-light); }
.service-body p {
  font-size: 0.86rem;
  color: var(--gray-400);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.service-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--teal);
  transition: var(--transition);
}
.service-card:hover .service-link { gap: 10px; color: var(--teal-light); }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: relative;
  overflow: visible;
}
.why-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: box-shadow 0.42s ease;
  z-index: 1;
}
.why-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.why-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 16px 20px;
  border-radius: var(--radius);
  z-index: 2;
  border: 1px solid rgba(43,174,206,0.25);
  text-align: center;
}
.why-badge-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.why-badge-text {
  font-size: 0.72rem;
  color: var(--gray-400);
  line-height: 1.3;
  margin-top: 4px;
}
.why-content .section-tag { margin-bottom: 12px; }
.why-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.why-content p {
  font-size: 0.96rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 28px;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.why-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-feature:hover {
  background: rgba(255,255,255,0.03);
  border-color: rgba(43,174,206,0.15);
}
.why-feature-icon {
  width: 38px; height: 38px;
  background: rgba(43,174,206,0.1);
  border: 1px solid rgba(43,174,206,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal-light);
}
.why-feature-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.why-feature-desc {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ── GALLERY PREVIEW ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
  margin-bottom: 40px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,8,16,0.9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
}
.gallery-item-border {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(43,174,206,0);
  transition: border-color 0.3s ease;
  pointer-events: none;
}
.gallery-item:hover .gallery-item-border { border-color: rgba(43,174,206,0.35); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lightbox-inner img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.lightbox-close:hover { background: rgba(43,174,206,0.2); border-color: var(--teal); color: var(--teal-light); }

/* ── TESTIMONIALS ── */
.testimonials { padding: 96px 0; }
.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  margin-right: 20px;
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars span { color: #fbbf24; font-size: 1rem; }
.testimonial-quote {
  font-size: 1.3rem;
  color: rgba(43,174,206,0.15);
  margin-bottom: 10px;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.88rem;
  color: var(--gray-300);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(43,174,206,0.3), rgba(24,128,160,0.3));
  border: 1px solid rgba(43,174,206,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal-light);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}
.testimonial-loc {
  font-size: 0.76rem;
  color: var(--gray-500);
}
.testimonial-service {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--teal);
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(43,174,206,0.08);
  border: 1px solid rgba(43,174,206,0.2);
  white-space: nowrap;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.slider-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
  font-size: 1.1rem;
}
.slider-btn:hover { color: #fff; border-color: rgba(43,174,206,0.4); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}
.slider-dot.active {
  width: 28px !important;
  background: var(--teal);
}
.slider-dot { width: 6px; }

/* ── CONTACT CTA ── */
.contact-cta { padding: 96px 0; }
.cta-card {
  padding: 60px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(43,174,206,0.08), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text { flex: 1; }
.cta-text h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.cta-text p {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 420px;
}
.cta-contacts { display: flex; flex-direction: column; gap: 12px; min-width: 260px; }
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.cta-contact-item:hover { border-color: rgba(43,174,206,0.25); }
.cta-contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(43,174,206,0.1);
  border: 1px solid rgba(43,174,206,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.cta-contact-label {
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-bottom: 2px;
}
.cta-contact-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}
.cta-map {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  border: 1px solid var(--border);
}
.cta-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg);
}

/* ── FOOTER ── */
footer {
  background: #070a10;
  border-top: 1px solid var(--border);
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 300px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43,174,206,0.4), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 56px 0 40px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 260px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social-link:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col h4::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--teal);
  border-radius: 1px;
  flex-shrink: 0;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--gray-500);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--teal-light); }
.footer-link::before { content: '›'; color: var(--teal); font-size: 1rem; }
.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.5;
}
.footer-contact-item svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray-600);
  text-align: center;
}

/* ── FLOATING BUTTONS CONTAINER ── */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 999;
}

/* ── WHATSAPP ── */
.whatsapp-btn {
  position: relative;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.35);
  animation: pulse-ring 2.5s ease-out infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}
.whatsapp-btn svg { width: 28px; height: 28px; }

/* ── INSTAGRAM ── */
.instagram-btn {
  position: relative;
  width: 58px; height: 58px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(214,36,159,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.instagram-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(214,36,159,0.35);
  animation: pulse-ring-ig 2.5s ease-out infinite;
  animation-delay: 1.25s;
}
@keyframes pulse-ring-ig {
  0%   { transform: scale(0.9); opacity: 0.7; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}
.instagram-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(214,36,159,0.55);
}
.instagram-btn svg { width: 27px; height: 27px; }

/* ── FAQ ACORDEÃO (index) ── */
.faq-section { padding: 96px 0; }
.faq-section .section-header { margin-bottom: 52px; }
.faq-section .faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-section .faq-item {
  background: var(--bg-900);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  transition: border-color 0.3s ease;
}
.faq-section .faq-item.open {
  border-color: rgba(0,178,169,0.35);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.45;
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--teal-light); }
.faq-section .faq-item.open .faq-question { color: var(--teal-light); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,178,169,0.1);
  border: 1px solid rgba(0,178,169,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.4s ease;
}
.faq-section .faq-item.open .faq-icon {
  background: rgba(0,178,169,0.2);
  transform: rotate(180deg);
}
.faq-icon svg { width: 14px; height: 14px; color: var(--teal-light); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-section .faq-item.open .faq-answer { max-height: 240px; }
.faq-answer-inner {
  padding: 0 26px 22px;
  color: var(--gray-400);
  font-size: 0.93rem;
  line-height: 1.75;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
}

@media (max-width: 768px) {
  .faq-question { font-size: 0.93rem; padding: 18px 20px; }
  .faq-answer-inner { padding: 0 20px 18px; padding-top: 14px; }
  .floating-btns { bottom: 20px; right: 20px; gap: 12px; }
  .whatsapp-btn, .instagram-btn { width: 52px; height: 52px; }
  .whatsapp-btn svg, .instagram-btn svg { width: 24px; height: 24px; }
}

/* ── PAGE HERO ── */
.page-hero {
  min-height: 460px;
  display: flex;
  align-items: center;
  text-align: center;
  background: var(--bg-950);
  position: relative;
  overflow: hidden;
  padding: 140px 0 60px;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin: 14px 0 16px;
}
.page-hero p {
  font-size: 1rem;
  color: var(--gray-400);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 0 32px;
  position: sticky;
  top: 72px;
  z-index: 30;
  background: var(--bg-950);
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--gray-400);
  transition: var(--transition);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-family: var(--font);
}
.filter-btn:hover { color: #fff; border-color: rgba(255,255,255,0.15); }
.filter-btn.active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 20px rgba(43,174,206,0.3);
}
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}
.masonry-gallery .gallery-item { /* inherits height from grid-auto-rows */ }
.gallery-item.hidden { display: none; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}
.contact-form-card { padding: 36px; border-radius: var(--radius-lg); }
.contact-form-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-600); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(43,174,206,0.5);
  background: rgba(255,255,255,0.06);
}
.form-select { cursor: pointer; background-color: #0d1117; }
.form-textarea { resize: vertical; min-height: 130px; }
.contact-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
  text-align: center;
}
.contact-success.show { display: flex; }
.contact-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(43,174,206,0.1);
  border: 1px solid rgba(43,174,206,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--teal-light);
}
.contact-info-items { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-info-item:hover { border-color: rgba(43,174,206,0.2); }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(43,174,206,0.1);
  border: 1px solid rgba(43,174,206,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info-lbl { font-size: 0.72rem; color: var(--gray-500); margin-bottom: 3px; }
.contact-info-val { font-size: 0.92rem; font-weight: 600; color: #fff; line-height: 1.4; }
.contact-info-map {
  margin-top: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--border);
}
.contact-info-map iframe {
  width: 100%; height: 100%; border: 0;
  filter: invert(90%) hue-rotate(180deg);
}

/* ── ABOUT PAGE ── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-img { border-radius: var(--radius); overflow: hidden; }
.about-img.span2 { grid-column: span 2; aspect-ratio: 16/7; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img:not(.span2) { aspect-ratio: 1; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 32px; }
.about-stat {
  padding: 18px;
  border-radius: var(--radius);
  text-align: center;
}
.about-stat-num { font-size: 1.8rem; font-weight: 900; }
.about-stat-lbl { font-size: 0.76rem; color: var(--gray-400); margin-top: 4px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 18px; }
.value-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.value-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: rgba(43,174,206,0.1);
  border: 1px solid rgba(43,174,206,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--teal-light);
}
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 0.84rem; color: var(--gray-400); line-height: 1.6; }
.timeline { position: relative; max-width: 680px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(43,174,206,0.3), transparent);
}
.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  align-items: flex-start;
}
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-item:nth-child(odd) .timeline-content { text-align: right; }
.timeline-item:nth-child(odd) .timeline-card { text-align: right; }
.timeline-content {
  flex: 1;
  padding: 20px;
  border-radius: var(--radius);
}
.timeline-year {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
}
.timeline-content h3 { font-size: 0.96rem; font-weight: 700; margin-bottom: 4px; }
.timeline-content p { font-size: 0.82rem; color: var(--gray-400); line-height: 1.5; }
.timeline-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--teal-light);
  box-shadow: 0 0 10px rgba(43,174,206,0.5);
  flex-shrink: 0;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

/* ── SERVICE PAGE ── */
.service-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  padding-top: 72px;
  overflow: hidden;
}
.service-hero-bg {
  position: absolute;
  inset: 0;
}
.service-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.service-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg-950) 40%, rgba(6,8,16,0.6) 70%, transparent),
    linear-gradient(to top, var(--bg-950) 0%, transparent 60%);
}
.service-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 60px;
  width: 100%;
}
.service-hero-content h1 {
  font-size: clamp(2rem,5vw,3.5rem);
  font-weight: 900;
  margin: 12px 0 16px;
  max-width: 600px;
}
.service-hero-content p {
  font-size: 1rem;
  color: var(--gray-300);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.benefits-list { display: flex; flex-direction: column; gap: 12px; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.benefit-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(43,174,206,0.15);
  border: 1px solid rgba(43,174,206,0.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal-light);
  font-size: 0.72rem;
  margin-top: 2px;
}
.benefit-text { font-size: 0.9rem; color: var(--gray-300); line-height: 1.5; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 16px; }
.process-card { padding: 24px; border-radius: var(--radius); }
.process-num {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(43,174,206,0.12);
  border: 1px solid rgba(43,174,206,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
  color: var(--teal-light);
  margin-bottom: 14px;
}
.process-card h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 6px; }
.process-card p { font-size: 0.82rem; color: var(--gray-400); line-height: 1.5; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 720px; margin: 0 auto; }
.faq-item { border-radius: var(--radius); padding: 20px; }
.faq-q { font-size: 0.92rem; font-weight: 600; margin-bottom: 8px; }
.faq-a { font-size: 0.84rem; color: var(--gray-400); line-height: 1.6; }
.service-images-grid {
  columns: 3;
  column-gap: 12px;
}
.service-images-grid > div {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
}
.service-images-grid img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.service-images-grid > div:hover img { transform: scale(1.04); }

/* ── SERVICES INDEX ── */
.services-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 20px;
}
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 20px;
}
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.service-features span {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--gray-400);
}

/* ── PAGE HERO (with bg image) ── */
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(6,8,16,0.7) 0%, rgba(6,8,16,0.5) 50%, var(--bg-950) 100%),
    rgba(6,8,16,0.4);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.page-hero { position: relative; }

/* ── ABOUT PAGE (new classes) ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  padding: 16px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(43,174,206,0.25);
  text-align: center;
}
.about-badge-num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.about-badge-text {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-top: 4px;
  line-height: 1.3;
}

/* ── TIMELINE (card alias) ── */
.timeline-card {
  flex: 1;
  padding: 20px;
  border-radius: var(--radius);
}
.timeline-year {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.timeline-card h3 { font-size: 0.96rem; font-weight: 700; margin-bottom: 4px; }
.timeline-card p { font-size: 0.82rem; color: var(--gray-400); line-height: 1.5; }

/* ── REGIONS ── */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
  gap: 14px;
}
.region-card {
  padding: 22px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.region-card:hover {
  transform: translateY(-4px);
  border-color: rgba(43,174,206,0.2);
}
.region-icon { font-size: 1.4rem; margin-bottom: 10px; }
.region-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.region-card p { font-size: 0.76rem; color: var(--gray-500); line-height: 1.4; }

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 0 8px;
}

/* ── CONTACT PAGE (new cards) ── */
.contact-info { }
.contact-form-wrap { }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.contact-card:hover {
  border-color: rgba(43,174,206,0.25);
  transform: translateX(4px);
}
.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-body { flex: 1; }
.contact-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 2px;
}
.contact-card-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}
.contact-card-note {
  font-size: 0.76rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ── RESPONSIVO ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-images { max-width: 520px; margin: 0 auto; }
  .cta-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 16px; }
  .timeline-item, .timeline-item:nth-child(odd) { flex-direction: row; }
  .timeline-item:nth-child(odd) .timeline-content { text-align: left; }
  .timeline-dot { margin-top: 22px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .masonry-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .service-images-grid { columns: 2; }
  .testimonials-track { flex-direction: column; transform: none !important; }
  .testimonial-card { flex: none; width: 100%; margin-right: 0; margin-bottom: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .why-features { grid-template-columns: 1fr; }
  .cta-card { padding: 32px 20px; }
  .cta-contacts { min-width: unset; }
  .form-row { grid-template-columns: 1fr; }
  .hero-badges { gap: 8px; }
  .hero-badge { font-size: 0.76rem; }
  .timeline { padding: 0 0 0 36px; }
  .timeline::before { left: 0; }
  .timeline-item, .timeline-item:nth-child(odd) { flex-direction: column; gap: 8px; }
  .timeline-item:nth-child(odd) .timeline-card { text-align: left; }
  .timeline-dot { position: absolute; left: -4px; }
  .timeline-item { position: relative; }
  .about-img-grid { grid-template-columns: 1fr; }
  .about-img.span2 { grid-column: span 1; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .masonry-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .service-images-grid { columns: 1; }
  .stats-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .btn { justify-content: center; }
  .about-stats { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding-bottom: 80px; }
  .process-grid { grid-template-columns: 1fr; }
  /* Hero content adjustments on very small screens */
  .hero-content { padding: 0 4px; }
  .hero-badges { flex-wrap: wrap; justify-content: center; }
  .service-hero-content, .page-hero-content { padding: 0 4px; }
  /* Contact form full-width on mobile */
  .contact-form-wrap .glass { padding: 24px 16px; }
  /* Sections full padding */
  .container { padding: 0 16px; }
}

/* =====================================================
   ANIMATION STYLES — Premium glass-inspired effects
   ===================================================== */

/* ── Lenis smooth scroll ── */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* ── Custom cursor ── */
.gl-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(43,174,206,0.55);
  background: rgba(43,174,206,0.04);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none;
  z-index: 99990;
  opacity: 0;
  mix-blend-mode: screen;
  will-change: transform;
  transition:
    width  0.35s cubic-bezier(.23,1,.32,1),
    height 0.35s cubic-bezier(.23,1,.32,1),
    border-color 0.3s ease,
    background   0.3s ease;
}
.gl-cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal);
  pointer-events: none;
  z-index: 99991;
  opacity: 0;
  will-change: transform;
  box-shadow: 0 0 10px rgba(43,174,206,0.8), 0 0 20px rgba(43,174,206,0.3);
}
.gl-cursor-ring.cursor-link {
  width: 54px; height: 54px;
  border-color: rgba(43,174,206,0.85);
  background: rgba(43,174,206,0.07);
}
.gl-cursor-ring.cursor-card {
  width: 62px; height: 62px;
  border-color: rgba(43,174,206,0.6);
  background: rgba(43,174,206,0.05);
}
.gl-cursor-ring.cursor-press {
  width: 28px; height: 28px;
  background: rgba(43,174,206,0.2);
  border-color: rgba(43,174,206,1);
}
@media (hover: none), (max-width: 767px) {
  .gl-cursor-ring, .gl-cursor-dot { display: none !important; }
}

/* ── Glass radial glow on hover (mouse tracking via --mx --my) ── */
.service-card,
.stat-card {
  position: relative;
  overflow: hidden;
}
.service-card::before,
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,0.07) 0%,
    transparent 58%
  );
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: inherit;
}
.service-card:hover::before,
.stat-card:hover::before {
  opacity: 1;
}

/* ── Glass light sweep on service cards ── */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,0.05) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left 0.75s ease;
  pointer-events: none;
  z-index: 6;
  border-radius: inherit;
}
.service-card:hover::after {
  left: 160%;
}

/* ── SplitType line wrapper — needed for y-reveal without overflow ── */
.hero-content h1 .line,
.service-hero-content h1 .line,
.page-hero-content h1 .line,
.section-header h2 .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

/* ── Logo responsiva ── */
@media (max-width: 768px) {
  .nav-logo-img { height: 48px; }
}


/* ── VanillaTilt — ensure transform origin correct ── */
.service-card[data-tilt],
.stat-card[data-tilt],
.process-card[data-tilt],
.testimonial-card[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ── Floating entrance keyframe (for delayed elements) ── */
@keyframes glFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
.whatsapp-float,
.floating-btns {
  animation: glFloat 3.5s ease-in-out infinite;
  animation-delay: 2.2s;
}
