/* ==========================================================================
   ESPONTONE — Landing Page Premium
   Paleta: #C9A227 dourado | #111111 preto | #F5F5F5 cinza claro
   Fonte: Poppins (Google Fonts)
   ========================================================================== */

/* ── Custom Properties ── */
:root {
  --primary:      #44627B;
  --primary-hover:#35506A;
  --secondary:    #6A8FA8;
  --black:        #111111;
  --dark-gray:    #2B2B2B;
  --medium-gray:  #808281;
  --light-gray:   #F5F5F5;
  --white:        #FFFFFF;
  --border:       #DCDDDF;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow:       0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.14);
  --transition:   all .3s ease;
  --container:    1200px;
  --header-h:     72px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography helpers ── */
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover, .btn-outline-white:focus-visible {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--border);
}
.btn-outline-dark:hover, .btn-outline-dark:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-full { width: 100%; justify-content: center; }
.w-full { width: 100%; justify-content: center; }
.btn:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
}
.site-header.scrolled .logo { color: var(--primary); }
.site-header.scrolled .logo-text { color: var(--primary); }
.site-header.scrolled .nav-links a { color: var(--dark-gray); }
.site-header.scrolled .nav-links a:hover { color: var(--primary); }
.site-header.scrolled .menu-toggle span { background: var(--black); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.logo:hover { opacity: .85; }
.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
/* Logo ícone circular ao lado do logo texto */
.logo-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  background: transparent;
}
/* Logo completo com ícone + texto (espontone.png — fundo preto) */
.logo-full {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  /* Inverte o logo quando o header fica branco — aplicado via JS via classe .scrolled */
  transition: filter .35s ease;
}
/* No header branco: inverte apenas o logo texto (fundo preto vira branco) */
.site-header.scrolled .logo-full {
  filter: invert(1);
}
/* O ícone colorido não inverte */
.site-header.scrolled .logo-icon-img {
  filter: none;
}
/* No footer sobre fundo preto a imagem já combina naturalmente */
.logo-full-footer {
  height: 44px;
  opacity: .9;
}
.logo-light { color: var(--white); }

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-weight: 500;
  font-size: .9rem;
  transition: var(--transition);
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width .25s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links a:not(.btn):hover { color: var(--white); }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  animation: slideDown .25s ease;
}
.mobile-menu[hidden] { display: none; }
.mobile-link {
  font-weight: 500;
  color: var(--dark-gray);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-link:hover { color: var(--primary); }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(.55);
  transform: scale(1.03);
  transition: transform 12s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,.32);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
  max-width: 780px;
}
.hero-eyebrow {
  color: var(--border);
  font-size: .8rem;
  letter-spacing: .15em;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 12px 0 20px;
}
.hero-title span { color: var(--secondary); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
}
.hero-stat span {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  font-weight: 400;
}
.hero-stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.22);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--border);
  border-radius: 50%;
  animation: scrollBounce 1.8s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  80% { top: 22px; opacity: 0; }
}

/* Hero como seção secundária (após o vídeo) */
.hero-secondary {
  min-height: 70vh;
}
.hero-secondary .hero-content {
  padding-top: 80px;
  padding-bottom: 80px;
}
section { padding: 96px 0; }
.section-alt { background: var(--light-gray); }

/* ── VIDEO ── */
/* Quando o vídeo é a primeira seção, compensa a altura do header fixo */
.section-hero-video {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
/* .video-bg e .video-bg-video — legado */
.video-bg, .video-bg-video { display: none; }

/* Foto de fundo da seção */
.video-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('hero.png');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  z-index: 0;
}
/* Overlay sobre a foto para legibilidade */
.video-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,20,35,.52);
  z-index: 1;
}
.video-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Player de vídeo vertical no container */
.video-player-container {
  position: relative;
  width: 360px;
  height: 640px;           /* 360 * 16/9 — proporção vertical */
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  background: #000;
}
#main-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}
/* Em mobile ocupa toda a largura, altura proporcional */
@media (max-width: 480px) {
  .video-player-container {
    width: 100%;
    height: calc(100vw * 16 / 9);
    max-height: 80vh;
    border-radius: 12px;
  }
}

/* ── Controles customizados ── */
.video-controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  z-index: 10;
}
.vc-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: opacity .2s;
}
.vc-btn:hover { opacity: .8; }
/* Barra de progresso */
.vc-progress-wrap {
  flex: 1;
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.vc-progress-bg {
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.3);
  border-radius: 3px;
}
.vc-progress-fill {
  position: absolute;
  left: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  width: 0%;
  transition: width .1s linear;
}
.vc-thumb {
  position: absolute;
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
  top: 50%; transform: translate(-50%, -50%);
  left: 0%;
  box-shadow: 0 0 4px rgba(0,0,0,.4);
  transition: left .1s linear;
}
.vc-time {
  font-size: .72rem;
  color: rgba(255,255,255,.85);
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  min-width: 30px;
}

/* Hero branco — sem imagem de fundo */
.hero-white {
  background: var(--white) !important;
  min-height: auto;
}
/* Esconde a imagem de fundo e o overlay herdados de .hero */
.hero-white .hero-bg { display: none; }
.hero-white::after { display: none; }
.hero-white .hero-content {
  padding-top: 72px;
  padding-bottom: 72px;
}
.hero-eyebrow-dark { color: var(--primary) !important; }
.hero-title-dark {
  color: var(--black) !important;
}
.hero-subtitle-dark { color: var(--medium-gray) !important; }
.hero-white .hero-stat strong { color: var(--primary) !important; }
.hero-white .hero-stat span { color: var(--medium-gray) !important; }
.hero-white .hero-stat-divider { background: var(--border) !important; }
.hero-white .hero-scroll { display: none; }

/* Forçar títulos e textos brancos sobre o fundo escuro do vídeo */
.section-hero-video .section-eyebrow { color: var(--border); }
.section-hero-video .video-main-title { color: var(--white); }

.video-main-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  text-align: center;
}

/* Bullets com check verde (igual ao Quem Somos mas sobre fundo escuro) */
.video-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 680px;
  margin: 24px auto 8px;
  list-style: none;
  text-align: left;
}
.video-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: rgba(255,255,255,.95);
  line-height: 1.65;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  border-left: 3px solid #4ade80;
}
/* Ícone check verde para os bullets do vídeo */
.check-green {
  background: rgba(74,222,128,.15) !important;
  color: #22c55e !important;
  flex-shrink: 0;
}

.video-wrapper { max-width: 860px; margin: 0 auto; }
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: var(--radius);
}
.video-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── SOBRE ── */
.about-single {
  max-width: 720px;
  margin: 0 auto;
}
.about-content .section-eyebrow { margin-bottom: 8px; }
.about-content .section-title { margin-bottom: 20px; }
.about-text {
  color: var(--medium-gray);
  line-height: 1.85;
  margin-bottom: 32px;
  font-size: 1rem;
}
.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  color: var(--dark-gray);
  font-size: .95rem;
}
.check-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(68,98,123,.12);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--light-gray);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}
.about-avatar {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.about-avatar img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 4px;
}
.about-signature strong { display: block; color: var(--black); font-size: .95rem; }
.about-signature span { font-size: .82rem; color: var(--medium-gray); }

/* ── SOBRE — fundo azul ── */
.section-about-blue {
  background: var(--primary);
}
.about-eyebrow-light {
  color: var(--border) !important;
  opacity: .9;
}
.about-title-light {
  color: var(--white) !important;
}
.about-text-light {
  color: rgba(255,255,255,.82) !important;
}
.about-checklist-light li {
  color: rgba(255,255,255,.92) !important;
}
.about-checklist-light .check-icon {
  background: rgba(255,255,255,.15) !important;
  color: #4ade80 !important;
}
.about-signature-light {
  background: rgba(255,255,255,.12) !important;
  border-left-color: rgba(255,255,255,.5) !important;
}
.about-sig-name {
  display: block;
  color: var(--white) !important;
  font-size: .95rem;
}
.about-sig-role {
  font-size: .82rem;
  color: rgba(255,255,255,.65) !important;
}

/* Form card */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.form-card-header {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
  padding: 28px 32px 24px;
}
.form-card-header h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-card-header p {
  color: rgba(255,255,255,.65);
  font-size: .875rem;
}
form { padding: 28px 32px; }
.form-group { margin-bottom: 20px; }
label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 8px;
}
label span { color: var(--primary); }
input, textarea, select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
input::placeholder, textarea::placeholder { color: #AAAAAA; }
input:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201,162,39,.15);
}
input.error, textarea.error { border-color: #D64045; }
textarea { resize: vertical; min-height: 110px; }
.field-error {
  display: block;
  font-size: .78rem;
  color: #D64045;
  margin-top: 5px;
  min-height: 18px;
}

/* Form success */
.form-success {
  padding: 40px 32px;
  text-align: center;
}
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(201,162,39,.12);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.form-success p { color: var(--medium-gray); font-size: .9rem; margin-bottom: 24px; }

/* Botão Instagram — gradiente característico */
.btn-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white);
  border-color: transparent;
}
.btn-instagram:hover, .btn-instagram:focus-visible {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(131,58,180,.35);
  border-color: transparent;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
/* Grid forçado em 3 colunas quando há apenas 3 cards */
.testimonials-3col {
  grid-template-columns: repeat(3, 1fr);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
/* Linha topo: estrelas + ícone Google */
.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.google-icon { flex-shrink: 0; }
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
blockquote p {
  color: var(--medium-gray);
  font-size: .88rem;
  line-height: 1.75;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .875rem; color: var(--black); }
.testimonial-author span { font-size: .78rem; color: var(--medium-gray); }
.review-source {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  font-size: .72rem !important;
  color: var(--medium-gray) !important;
  margin-top: 2px;
}

/* Stats row */
.testimonials-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.stats-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-item span {
  font-size: .8rem;
  color: var(--medium-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── CTA SECTION ── */
.section-cta {
  background: linear-gradient(135deg, #1a2e3d 0%, #2d4a60 60%, #44627B 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  top: -60%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68,98,123,.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-eyebrow { color: var(--border); }
.cta-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-text {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.75);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 24px 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 300px; }
.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.footer-links nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a, .footer-contact a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--secondary); }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 24px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1100;
  width: 60px; height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .3s ease, box-shadow .3s ease;
  animation: floatPulse 3s ease infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,.6); }
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { transition: none; }
  .scroll-indicator::after { animation: none; }
  .whatsapp-float { animation: none; }
}

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 900px) {
  .testimonials-grid,
  .testimonials-3col { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
}

/* Mobile */
@media (max-width: 600px) {
  :root { --header-h: 64px; }
  section { padding: 64px 0; }
  .hero-content { padding-bottom: 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .hero-stat-divider { display: none; }
  .testimonials-grid,
  .testimonials-3col { grid-template-columns: 1fr; }
  .video-bullets li { font-size: .9rem; }
  .stats-row { gap: 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  form { padding: 20px; }
  .form-card-header { padding: 24px 20px; }
}
