/* ============================================================
   SISTEMA DE DESIGN — HIGIENIZAÇÃO DE ESTOFADOS
   Versão: 3.0 — CSS Profissional Completo
   ============================================================

   ÍNDICE
   01. Design Tokens (Custom Properties)
   02. Reset & Base
   03. Tipografia
   04. Layout & Utilitários
   05. Scrollbar
   06. Navbar
   07. Botões Globais
   08. Hero Section
   09. Feature Cards (Benefícios)
   10. Services Section
   11. Achievements
   12. Before & After
   13. About Section
   14. Testimonials
   15. Highlight / Swiper
   16. CTA Section
   17. Location / Contato
   18. Footer
   19. WhatsApp Float
   20. Scroll Top
   21. Play Button & Modal de Vídeo
   22. Media Queries Consolidadas
   ============================================================ */


/* ============================================================
   01. DESIGN TOKENS
   ============================================================ */
:root {

  /* ── Paleta de Cores ──────────────────────────────────── */
  --c-blue-50:    #fffeff;
  --c-blue-100:   #DBEAFE;
  --c-blue-200:   #BFDBFE;
  --c-blue-300:   #93C5FD;
  --c-blue-400:   #60A5FA;
  --c-blue-500:   #3B82F6;
  --c-blue-600:   #1D6BE8;
  --c-blue-700:   #1552C4;
  --c-blue-800:   #1040A0;
  --c-blue-900:   #0D306B;

  --c-orange-50:  #FFF7ED;
  --c-orange-100: #FFEDD5;
  --c-orange-200: #FED7AA;
  --c-orange-300: #FDBA74;
  --c-orange-400: #FB923C;
  --c-orange-500: #F97316;
  --c-orange-600: #EA6A00;
  --c-orange-700: #C15700;

  --c-slate-50:   #F8FAFC;
  --c-slate-100:  #F1F5F9;
  --c-slate-200:  #E2E8F0;
  --c-slate-300:  #CBD5E1;
  --c-slate-400:  #94A3B8;
  --c-slate-500:  #414141;
  --c-slate-600:  #475569;
  --c-slate-700:  #334155;
  --c-slate-800:  #1E293B;
  --c-slate-900:  #0F172A;

  --c-green-500:  #22C55E;
  --c-green-600:  #16A34A;

  /* ── Aliases Semânticos ───────────────────────────────── */
  --color-primary:        var(--c-blue-600);
  --color-primary-hover:  var(--c-blue-700);
  --color-primary-light:  var(--c-blue-50);
  --color-primary-subtle: var(--c-blue-100);

  --color-accent:         var(--c-blue-600);
  --color-accent-hover:   var(--c-blue-700);
  --color-accent-light:   var(--c-orange-50);

  --color-success:        var(--c-green-500);

  /* ── Superfícies ──────────────────────────────────────── */
  --surface-base:     #FAFAF8;
  --surface-elevated: #FFFFFF;
  --surface-section:  #F4F6F8;
  --surface-dark:     var(--c-slate-900);
  --surface-dark-alt: var(--c-slate-800);

  /* ── Texto ────────────────────────────────────────────── */
  --text-heading:       var(--c-slate-900);
  --text-body:          var(--c-slate-700);
  --text-muted:         var(--c-slate-500);
  --text-on-dark:       #FFFFFF;
  --text-on-dark-muted: rgba(255,255,255,0.68);
  --text-on-acent:       var(--c-orange-500);

  /* ── Bordas ───────────────────────────────────────────── */
  --border-default: var(--c-slate-200);
  --border-subtle:  var(--c-slate-100);
  --border-strong:  var(--c-slate-300);

  /* ── Tipografia ───────────────────────────────────────── */
  --font-sans:  'Poppins', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Escala fluida com clamp() — mínimo / ideal / máximo */
  --text-xs:   clamp(0.72rem,  0.68rem + 0.18vw, 0.80rem);
  --text-sm:   clamp(0.82rem,  0.78rem + 0.20vw, 0.95rem);
  --text-base: clamp(0.93rem,  0.88rem + 0.25vw, 1.05rem);
  --text-md:   clamp(1.00rem,  0.96rem + 0.28vw, 1.15rem);
  --text-lg:   clamp(1.10rem,  1.04rem + 0.32vw, 1.30rem);
  --text-xl:   clamp(1.25rem,  1.14rem + 0.52vw, 1.55rem);
  --text-2xl:  clamp(1.50rem,  1.30rem + 0.90vw, 2.00rem);
  --text-3xl:  clamp(1.90rem,  1.50rem + 1.60vw, 2.75rem);
  --text-4xl:  clamp(2.20rem,  1.70rem + 2.20vw, 3.50rem);
  --text-hero: clamp(2.60rem,  2.00rem + 2.80vw, 4.50rem);

  /* ── Espaçamento (escala 4pt) ─────────────────────────── */
  --sp-1:  0.25rem;
  --sp-2:  0.50rem;
  --sp-3:  0.75rem;
  --sp-4:  1.00rem;
  --sp-5:  1.25rem;
  --sp-6:  1.50rem;
  --sp-8:  2.00rem;
  --sp-10: 2.50rem;
  --sp-12: 3.00rem;
  --sp-16: 4.00rem;
  --sp-20: 5.00rem;
  --sp-24: 6.00rem;

  /* Padding vertical de seções — fluido */
  --section-py: clamp(4rem, 7vw, 7rem);

  /* ── Border Radius ────────────────────────────────────── */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-full: 9999px;

  /* ── Sombras ──────────────────────────────────────────── */
  --shadow-xs:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.09), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:  0 10px 32px rgba(0,0,0,0.11), 0 4px 12px rgba(0,0,0,0.07);
  --shadow-xl:  0 20px 48px rgba(0,0,0,0.13), 0 8px 20px rgba(0,0,0,0.08);
  --shadow-blue:   0 8px 28px rgba(29,107,232,0.30);
  

  /* ── Transições ───────────────────────────────────────── */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --t:  260ms var(--ease);
  --t-slow: 420ms var(--ease-out);

  /* ── Z-Index ──────────────────────────────────────────── */
  --z-base:    1;
  --z-raised:  10;
  --z-overlay: 100;
  --z-modal:   500;
  --z-navbar:  1000;
}


/* ============================================================
   02. RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  background: var(--surface-base);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, iframe { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; transition: color var(--t); color: inherit; }

ul, ol { list-style: none; }

button { cursor: pointer; border: none; background: none; font: inherit; }

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}


/* ============================================================
   03. TIPOGRAFIA
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-heading);
}

h1 { font-size: var(--text-hero); font-weight: 900; letter-spacing: -0.04em; }
h2 { font-size: var(--text-4xl);  font-weight: 800; letter-spacing: -0.03em; }
h3 { font-size: var(--text-2xl);  font-weight: 700; }
h4 { font-size: var(--text-xl);   font-weight: 700; }
h5 { font-size: var(--text-lg);   font-weight: 600; }
h6 { font-size: var(--text-md);   font-weight: 600; }

p  { color: var(--text-body); line-height: 1.80; }

.section-title {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.75;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--sp-3);
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-header  { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.highlight         { color: var(--color-primary); }
.highlight-primary { color: var(--color-primary); }
.text-serif        { font-family: var(--font-serif); }


/* ============================================================
   04. LAYOUT & UTILITÁRIOS
   ============================================================ */
section { position: relative; padding: var(--section-py) 0; }

.container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* Divisor decorativo entre seções */
.section-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: var(--r-full);
  margin: var(--sp-4) auto;
}

.services-description {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.75;
}


/* ============================================================
   05. SCROLLBAR
   ============================================================ */
::-webkit-scrollbar       { width: 7px; }
::-webkit-scrollbar-track { background: var(--surface-section); }
::-webkit-scrollbar-thumb { background: var(--c-blue-300); border-radius: var(--r-full); }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }


/* ============================================================
   06. NAVBAR
   ============================================================ */
.navbar {
  padding: clamp(0.75rem, 1.5vw, 1.25rem) 0;
  background: #ffffff88;
  transition:
    background-color 420ms var(--ease-out),
    box-shadow 420ms var(--ease-out),
    padding 420ms var(--ease-out);
  border-bottom: 1px solid transparent;
  will-change: background-color;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom-color: var(--border-subtle);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 0;
}

.navbar-brand { display: flex; align-items: center; padding: 0; }

.logo-img {
  height: clamp(38px, 5vw, 56px);
  width: auto;
  object-fit: contain;
  transition: height var(--t), filter var(--t);
}

.navbar.scrolled .logo-img { height: clamp(34px, 4vw, 46px); }

/* Hamburguer customizado */
.custom-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 22px;
  position: relative;
  background: transparent;
  box-shadow: none !important;
}

.custom-toggler:focus { outline: none; box-shadow: none; }

.toggler-icon {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--color-primary);
  border-radius: var(--r-full);
  left: 0;
  transition: all 250ms var(--ease);
}

.navbar:not(.scrolled) .toggler-icon { background: rgba(255,255,255,0.9); background: var(--color-primary); }

.top-bar    { top: 0px; }
.middle-bar { top: 10px; }
.bottom-bar { top: 20px; }

.custom-toggler.collapsed .top-bar    { top: 0; transform: rotate(0deg); }
.custom-toggler.collapsed .middle-bar { opacity: 1; left: 0; }
.custom-toggler.collapsed .bottom-bar { top: 20px; transform: rotate(0deg); }

.custom-toggler:not(.collapsed) .top-bar    { top: 10px; transform: rotate(135deg); }
.custom-toggler:not(.collapsed) .middle-bar { opacity: 0; left: -60px; }
.custom-toggler:not(.collapsed) .bottom-bar { top: 10px; transform: rotate(-135deg); }

/* Expand a partir de 1025px */
@media (min-width: 1025px) {
  .navbar-expand-custom { flex-flow: row nowrap; justify-content: flex-start; }
  .navbar-expand-custom .navbar-nav { flex-direction: row; }
  .navbar-expand-custom .navbar-nav .nav-link { padding-right: .5rem; padding-left: .5rem; }
  .navbar-expand-custom .navbar-collapse { display: flex !important; flex-basis: auto; }
  .navbar-expand-custom .navbar-toggler  { display: none; }
}

@media (max-width: 1024px) {
  .navbar-expand-custom .navbar-collapse { display: none; width: 100%; }
  .navbar-expand-custom .navbar-collapse.show { display: block !important; }
  .navbar-expand-custom .navbar-toggler { display: block; }

  .navbar-collapse {
    background: rgba(255,255,255,0.98);
    padding: var(--sp-6);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    margin-top: 0.5rem;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
  }

  .nav-link     { margin: var(--sp-2) 0 !important; color: var(--text-heading) !important; }
  .navbar-nav   { margin-bottom: var(--sp-4); }
  .btn-schedule { margin-left: 0 !important; width: 100%; justify-content: center; }
}

.nav-link {
  color: var(--c-slate-800) !important;
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 var(--sp-2);
  position: relative;
  transition: color var(--t);
}

.navbar.scrolled .nav-link { color: var(--text-heading) !important; }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: currentColor;
  border-radius: var(--r-full);
  transition: width var(--t);
}

.nav-link:hover::after,
.nav-link:focus-visible::after { width: 100%; }

/* CTA da navbar */
.btn-schedule {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--color-accent);
  color: var(--text-on-dark) !important;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px var(--sp-5);
  border-radius: var(--r-full);
  border: none;
  transition: all var(--t);
  white-space: nowrap;
}

.btn-schedule:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  color: var( --text-on-dark) !important;
}


/* ============================================================
   07. BOTÕES GLOBAIS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px var(--sp-8);
  border-radius: var(--r-md);
  border: 2px solid transparent;
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.10);
  opacity: 0;
  transition: opacity 150ms var(--ease);
}

.btn:hover::after { opacity: 1; }

/* Botão laranja — CTA principal de conversão */
.btn-primary-gold {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--text-on-dark);
}

.btn-primary-gold:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-3px);
  color: var(--text-on-dark);
}

/* Botão azul */
.btn-primary-blue {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--text-on-dark);
  box-shadow: var(--shadow-blue);
}

.btn-primary-blue:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  color: var(--text-on-dark);
}

.btn-lg { padding: 18px 2.5rem; font-size: var(--text-base); }


/* ============================================================
   08. HERO SECTION
   ============================================================ */
.hero-section.hero-split {
  padding: 0 !important;
  overflow: hidden;
  background: var(--c-slate-900);
  min-height: clamp(600px, 100vh, 900px);
}

.hero-split .split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Coluna de conteúdo */
.hero-split .hero-content-column {
  display: flex;
  align-items: center;
  padding-block: clamp(6rem, 10vw, 9rem);
  background: var(--color-primary-light) !important;
  position: relative;
  z-index: 1;
}

/* Grade decorativa no fundo */
.hero-split .hero-content-column::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(203, 10, 10, 0.025) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(169, 8, 8, 0.015) 40px);
  pointer-events: none;
}

.hero-inner-content {
  width: 100%;
  padding-left: max(calc((100vw - 1400px) / 2 + 2.5rem), 1.5rem);
  padding-right: clamp(2rem, 4vw, 4rem);
  position: relative;
  z-index: 1;
}

/* Coluna de imagem */
.hero-split .hero-image-column {
  background-size: cover;
  background-position: center top;
  position: relative;
  min-height: 420px;
}

.hero-split .hero-image-column::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(139, 174, 255, 0.6) 0%,
    rgba(136, 171, 252, 0.2) 35%,
    transparent 95%
  );
  pointer-events: none;
}

/* Badge de localização */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(250, 188, 96, 0.35);
  border: 1px solid rgba(250, 188, 96, 0.35);
  color: var(--text-on-acent);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
}

.hero-label::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green-500);
  flex-shrink: 0;
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.75); }
}

/* Título H1 */
.hero-title {
  font-size: var(--text-hero);
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.04;
  margin-bottom: var(--sp-6);
  letter-spacing: -0.01em;
}

/* Subtítulo hero */
.hero-subtitle {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.2rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
  flex-wrap: wrap;
}

/* Prova social no hero */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.hero-avatars { display: flex; }

.hero-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--c-slate-900);
  background: var(--c-blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-left: -9px;
}

.hero-avatars span:first-child { margin-left: 0; }

.hero-proof-text {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
}

.hero-proof-text strong {
  color: var(--text-on-dark);
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
}

.hero-stars { color: #FBBF24; font-size: 11px; letter-spacing: 2px; }


/* ============================================================
   09. FEATURE CARDS — BENEFÍCIOS
   ============================================================ */
.feature-layout-section { padding: 0; }

.feature-card {
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--text-on-dark);
  transition: transform var(--t), filter var(--t);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -70px; right: -70px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.055);
  pointer-events: none;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(255,255,255,0.035);
  pointer-events: none;
}

.feature-card:hover { transform: translateY(-5px); filter: brightness(1.06); }

.card-blue-light  { background: linear-gradient(145deg, #1D6BE8 0%, #2B81F5 100%); }
.card-blue-medium { background: linear-gradient(145deg, #0D2E6B 0%, #10409A 100%); }
.card-blue-dark   { background: linear-gradient(145deg, #143891 0%, #1D6BE8 100%); }

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  transition: transform 300ms var(--ease-spring);
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon { transform: scale(1.12) rotate(-5deg); }

.feature-icon i { font-size: 2rem; color: rgba(255,255,255,0.95); }

.feature-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--sp-4);
  color: var(--text-on-dark);
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}

.feature-text {
  font-size: var(--text-base);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
  color: rgba(255,255,255,0.80);
  max-width: 280px;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}

.feature-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 11px var(--sp-6);
  background: rgba(255,255,255,0.16);
  color: var(--text-on-dark);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.30);
  transition: all var(--t);
  position: relative;
  z-index: 1;
}

.feature-btn:hover {
  background: rgba(255,255,255,0.28);
  color: var(--text-on-dark);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.60);
}


/* ============================================================
   10. SERVICES SECTION
   ============================================================ */
.services-section { background: var(--surface-section); }

.service-card-premium {
  background: var(--surface-elevated);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
}

.service-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--c-blue-200);
}

.service-card-premium .card-img-wrapper {
  position: relative;
  width: 100%;
  height: clamp(180px, 18vw, 290px);
  overflow: hidden;
}

.service-card-premium .card-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.service-card-premium:hover .card-img-wrapper img { transform: scale(1.08); }

.service-card-premium .card-body-custom {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--surface-elevated);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* Linha colorida no topo do corpo */
.service-card-premium .card-body-custom::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: var(--r-full);
}

.service-card-premium .card-title-custom {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.service-card-premium .card-subtitle-custom {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
  flex-grow: 1;
}

.service-card-premium .btn-whatsapp-cta {
  background: var(--color-accent);
  color: var(--text-on-dark);
  padding: 13px var(--sp-5);
  border-radius: var(--r-md);
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  transition: all var(--t);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  border: 2px solid transparent;
  text-decoration: none;
  width: 100%;
  margin-top: auto;
}

.service-card-premium .btn-whatsapp-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  color: var(--text-on-dark);
}


/* ============================================================
   11. ACHIEVEMENTS / CONQUISTAS
   ============================================================ */
.conquista-bg { background: var(--surface-section); }

.achievements-section {
  background: linear-gradient(135deg, var(--c-blue-700) 0%, var(--c-blue-900) 100%);
  padding: clamp(4rem, 6vw, 6rem) 0 clamp(5rem, 8vw, 8rem);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.bubble {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.bubble-1 {
  width: clamp(200px, 28vw, 440px);
  height: clamp(200px, 28vw, 440px);
  top: -100px; left: -80px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
}

.bubble-2 {
  width: clamp(150px, 20vw, 300px);
  height: clamp(150px, 20vw, 300px);
  bottom: 40px; right: -50px;
  background: radial-gradient(circle, rgba(249,115,22,0.22) 0%, transparent 70%);
}

.achievements-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-5) var(--sp-8);
  position: relative;
}

.achievement-item + .achievement-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.18);
}

.achievement-icon-box {
  width: 64px;
  height: 64px;
  background: var(--color-accent);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: var(--text-on-dark);
  flex-shrink: 0;
}

.achievement-content h4 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
}

.achievement-content p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.70);
  font-weight: 500;
  margin-top: 4px;
}


/* ============================================================
   12. BEFORE & AFTER
   ============================================================ */
.before-after-section { background: var(--surface-elevated); }

.before-after-header h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.03em;
}

.before-after-header p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-top: var(--sp-3);
}

.ba-card {
  background: var(--surface-elevated);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--t-slow), border-color var(--t);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.ba-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-blue-200);
}

.ba-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
}

.ba-image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-before { z-index: 1; }
.ba-after  { z-index: 2; clip-path: inset(0 0 0 50%); }

.ba-slider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--text-on-dark);
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.40);
}

.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--text-on-dark);
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  pointer-events: none;
  box-shadow: var(--shadow-lg);
}

.ba-handle i { font-size: 14px; }

.ba-label {
  position: absolute;
  top: 14px;
  padding: 5px 12px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--r-sm);
  z-index: 5;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.ba-label-before { left: 14px; background: rgba(0,0,0,0.55); color: #fff; }
.ba-label-after  { right: 14px; background: var(--color-primary); color: #fff; }

.ba-card-body {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.ba-card-body h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.ba-card-body p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.7; }

.footer-antes-depois { margin-top: auto; }

.btn-ba-whatsapp {
  background: var(--color-primary);
  color: var(--text-on-dark);
  padding: 13px var(--sp-6);
  border-radius: var(--r-md);
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  transition: all var(--t);
  text-decoration: none;
  width: 100%;
  border: 2px solid var(--color-primary);
}

.btn-ba-whatsapp:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
  color: var(--text-on-dark);
}


/* ============================================================
   13. ABOUT SECTION
   ============================================================ */
.about-section { background: var(--surface-base); }

.about-text {
  font-size: var(--text-md);
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: var(--sp-5);
}

.about-figure { position: relative; padding: var(--sp-5); }

.about-figure img {
  border-radius: var(--r-xl);
  width: 100%;
  height: auto;
  transition: transform 0.5s var(--ease-out);
  box-shadow: var(--shadow-xl);
}

.about-figure:hover img { transform: scale(1.02); }

/* Badge flutuante de experiência */
.experience-badge {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--color-accent);
  color: var(--text-on-dark);
  padding: var(--sp-5) var(--sp-6);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: float-badge 3.5s ease-in-out infinite;
  box-shadow: var(--shadow-orange);
  border: 3px solid var(--surface-elevated);
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-10px) rotate(1deg); }
}

.badge-number {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.badge-text {
  font-size: var(--text-xs);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 4px;
  opacity: 0.92;
  line-height: 1.4;
}

/* Checklist de diferenciais */
.about-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin: var(--sp-6) 0;
}

.about-check-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-base);
  color: var(--text-body);
  font-weight: 500;
}

.about-check-item .check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}


/* ============================================================
   14. TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--surface-section); }

.testimonial-card {
  background: var(--surface-elevated);
  padding: var(--sp-6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}

.testimonial-card:hover {
  border-color: var(--c-blue-200);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}

.author-avatar {
  width: 44px; height: 44px;
  background: var(--color-primary);
  color: var(--text-on-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-md);
  flex-shrink: 0;
}

.author-info h5 { font-size: var(--text-base); color: var(--text-heading); margin: 0; font-weight: 700; }

.author-info .review-meta {
  font-size: var(--text-xs);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: 2px;
}

.google-stars { color: #FBBF24; font-size: var(--text-xs); display: flex; gap: 1px; margin: var(--sp-2) 0; }
.stars        { color: #FBBF24; font-size: var(--text-xs); display: flex; gap: 2px; margin-bottom: 4px; }

.testimonial-text { color: var(--text-body); font-size: var(--text-sm); line-height: 1.7; margin-bottom: var(--sp-4); flex-grow: 1; }

.google-source {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-subtle);
}

.google-source i { color: #4285F4; }

/* Google badge */
.google-reviews-container { display: flex; justify-content: center; width: 100%; }

.google-reviews-badge {
  display: inline-flex;
  align-items: center;
  background: var(--surface-elevated);
  padding: var(--sp-5) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--r-full);
  border: 1px solid var(--border-default);
  gap: clamp(1rem, 2.5vw, 2rem);
  transition: all var(--t);
  max-width: 100%;
  box-shadow: var(--shadow-sm);
}

.google-reviews-badge:hover {
  border-color: var(--c-blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.google-icon { font-size: 2rem; color: var(--text-heading); display: flex; align-items: center; }
.reviews-content { text-align: left; }

.testimonial-count { font-size: var(--text-base); color: var(--text-heading); font-weight: 500; margin: 0; }
.testimonial-count span { color: var(--color-primary); font-weight: 800; font-size: var(--text-xl); }

.google-rating { border-left: 1px solid var(--border-default); padding-left: clamp(1rem, 2vw, 2rem); text-align: center; }
.google-rating strong { display: block; font-size: var(--text-2xl); color: var(--text-heading); line-height: 1; font-weight: 800; }
.google-rating span { font-size: var(--text-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }


/* ============================================================
   15. HIGHLIGHT / PORTFOLIO SWIPER
   ============================================================ */
.highlight-section-full { background: var(--surface-section); overflow: hidden; }
.highlight-container-full { width: 100%; padding-inline: clamp(1rem, 4vw, 2.5rem); }
.highlight-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.highlight-subtitle {
  display: inline-block;
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--sp-3);
  border-left: 3px solid var(--color-primary);
  padding-left: var(--sp-4);
}

.highlight-title { font-size: var(--text-4xl); font-weight: 900; color: var(--text-heading); line-height: 1.1; letter-spacing: -0.03em; }

.highlight-grid-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.75rem); }

.highlight-card-full {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  cursor: pointer;
}

.highlight-card-full:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }

.card-image-box {
  width: 100%;
  height: clamp(280px, 32vw, 520px);
  overflow: hidden;
  position: relative;
}

.card-image-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter 0.6s ease;
  filter: brightness(0.65) saturate(1.1);
}

.highlight-card-full:hover .card-image-box img { transform: scale(1.08); filter: brightness(1) saturate(1.2); }

.card-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  z-index: 2;
}

.card-category { color: rgba(255,255,255,0.72); font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: var(--sp-2); }
.card-overlay-title { font-size: var(--text-2xl); font-weight: 800; color: #fff; margin-bottom: var(--sp-3); line-height: 1.2; letter-spacing: -0.02em; }

.card-overlay-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  max-width: 300px;
  transform: translateY(16px);
  opacity: 0;
  transition: all 0.5s var(--ease-out);
}

.highlight-card-full:hover .card-overlay-text { transform: translateY(0); opacity: 1; }

/* Swiper */
.worksSwiper { padding-bottom: clamp(2.5rem, 5vw, 4rem) !important; padding-top: var(--sp-4); }

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-primary) !important;
  background: var(--surface-elevated);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-default);
  transition: all var(--t);
  box-shadow: var(--shadow-sm);
}

.swiper-button-next:after,
.swiper-button-prev:after { font-size: 1rem !important; font-weight: 900; }

.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--color-primary);
  color: #fff !important;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-blue);
}

.swiper-pagination-bullet        { background: var(--c-slate-400) !important; opacity: 0.5; }
.swiper-pagination-bullet-active  { background: var(--color-primary) !important; opacity: 1; }


/* ============================================================
   16. CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  min-height: clamp(480px, 60vh, 700px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,10,24,0.88) 0%, rgba(13,48,107,0.76) 50%, rgba(8,10,24,0.88) 100%);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  width: 100%;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-6);
  letter-spacing: -0.01em;
  line-height: 1.08;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.cta-title .highlight { color: var(--c-orange-400); }

.cta-footer { font-size: var(--text-xs); color: rgba(255,255,255,0.52); margin-top: var(--sp-6); letter-spacing: 0.05em; }

/* Selos no CTA */
.cta-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-top: var(--sp-8);
  flex-wrap: wrap;
}

.cta-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.68);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-badge i { color: var(--c-orange-400); font-size: var(--text-md); }


/* ============================================================
   17. LOCATION / CONTATO
   ============================================================ */
.location-section-slim {
  background: linear-gradient(160deg, var(--c-blue-700) 0%, var(--c-blue-900) 100%);
}

.location-minimal-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
  justify-content: center;
}

.location-card-slim {
  flex: 1;
  min-width: min(300px, 100%);
  max-width: 440px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--surface-elevated);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.05);
}

.location-header-slim { margin-bottom: var(--sp-6); }

.location-label-slim {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--sp-2);
  text-transform: uppercase;
}

.location-title-slim {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--text-heading);
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.location-info-grid { display: flex; flex-direction: column; gap: var(--sp-4); margin-bottom: var(--sp-6); }

.info-item-slim {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4);
  background: var(--surface-section);
  border-radius: var(--r-lg);
  transition: background var(--t);
}

.info-item-slim:hover { background: var(--color-primary-light); }

.info-item-slim i {
  font-size: var(--text-xl);
  color: var(--color-primary);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  margin-top: 2px;
}

.info-text-slim h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 3px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-text-slim p { font-size: var(--text-base); color: var(--text-heading); margin: 0; line-height: 1.5; font-weight: 500; }

.info-text-slim a { color: var(--color-primary); }
.info-text-slim a:hover { color: var(--color-primary-hover); }

.btn-minimal-gold {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all var(--t);
  padding: var(--sp-3) 0;
  border-bottom: 2px solid transparent;
}

.btn-minimal-gold:hover { gap: var(--sp-5); border-bottom-color: var(--color-primary); }

.map-container-slim {
  flex: 1.2;
  min-width: min(300px, 100%);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: 380px;
  border: 2px solid rgba(255,255,255,0.10);
}

.map-container-slim iframe { width: 100%; height: 100%; min-height: 380px; filter: saturate(1.1); }


/* ============================================================
   18. FOOTER
   ============================================================ */
.footer-section {
  background: var(--surface-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-on-dark-muted);
  padding: clamp(3.5rem, 6vw, 6rem) 0 clamp(2rem, 3vw, 3rem);
}

.footer-brand-desc {
  margin-top: var(--sp-5);
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--text-on-dark-muted);
  max-width: 300px;
}

.footer-section h5 {
  font-size: var(--text-base);
  color: var(--text-on-dark);
  margin-bottom: var(--sp-6);
  font-weight: 700;
  position: relative;
  padding-bottom: var(--sp-3);
}

.footer-section h5::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 2px;
  background: var(--color-primary);
  border-radius: var(--r-full);
}

.footer-links { padding: 0; margin: 0; }
.footer-links li { margin-bottom: var(--sp-3); }

.footer-links a {
  color: var(--text-on-dark-muted);
  font-size: var(--text-sm);
  transition: all var(--t);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.footer-links a i { font-size: 10px; color: var(--color-primary); opacity: 0.7; }
.footer-links a:hover { color: var(--text-on-dark); transform: translateX(5px); }

.footer-contact-info { padding: 0; margin: 0; }

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
  font-size: var(--text-sm);
  color: var(--text-on-dark-muted);
}

.footer-contact-info i { color: var(--color-primary); font-size: var(--text-md); margin-top: 2px; flex-shrink: 0; }
.footer-contact-info a { color: var(--text-on-dark-muted); }
.footer-contact-info a:hover { color: var(--c-blue-300); }

.social-links { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }

.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark-muted);
  font-size: var(--text-md);
  transition: all var(--t);
}

.social-links a:hover {
  background: var(--color-primary);
  color: var(--text-on-dark);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.footer-bottom {
  margin-top: clamp(2.5rem, 4vw, 4rem);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.36); margin: 0; }
.footer-bottom a { color: var(--c-blue-400); }
.footer-bottom a:hover { text-decoration: underline; color: var(--c-blue-300); }


/* ============================================================
   19. WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: clamp(18px, 3vw, 30px);
  right: clamp(18px, 3vw, 30px);
  width: clamp(50px, 6vw, 62px);
  height: clamp(50px, 6vw, 62px);
  background: #25D366;
  color: var(--text-on-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: var(--z-overlay);
  transition: all var(--t);
  animation: pulse-wa 2.5s ease-in-out infinite;
}

.whatsapp-float:hover { transform: scale(1.12); background: #20BA5A; box-shadow: 0 8px 32px rgba(37,211,102,0.65); color: #fff; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,0.70); }
}


/* ============================================================
   20. SCROLL TOP
   ============================================================ */
.btn-scroll-top {
  position: fixed;
  bottom: clamp(80px, 12vw, 105px);
  right: clamp(37px, 3vw, 34px);
  width: clamp(38px, 4vw, 48px);
  height: clamp(38px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--text-on-dark);
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--t);
  z-index: var(--z-raised);
}

.btn-scroll-top i { font-size: var(--text-md); }
.btn-scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.btn-scroll-top:hover { background: var(--color-primary-hover); box-shadow: var(--shadow-blue); transform: translateY(-3px); }


/* ============================================================
   21. PLAY BUTTON & MODAL
   ============================================================ */
.btn-play-video {
  width: clamp(58px, 7vw, 76px);
  height: clamp(58px, 7vw, 76px);
  border-radius: 50%;
  background: var(--color-accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}

.btn-play-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 150ms;
}

.btn-play-video:hover          { transform: scale(1.1); }
.btn-play-video:hover::before  { opacity: 1; }
.btn-play-video:active         { transform: scale(0.95); }

.btn-play-video i {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: var(--text-on-dark);
  position: relative;
  z-index: 1;
  margin-left: 3px;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-slow);
}

.video-modal.active { display: flex; opacity: 1; }

.video-modal-content {
  position: relative;
  width: min(90%, 900px);
  background: #000;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.9);
  animation: modal-up 420ms var(--ease) both;
}

@keyframes modal-up {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.video-modal-content video { width: 100%; height: auto; display: block; }

.video-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.14);
  border: none;
  border-radius: 50%;
  color: var(--text-on-dark);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  z-index: 10;
  backdrop-filter: blur(4px);
}

.video-modal-close:hover { background: rgba(255,255,255,0.28); transform: rotate(90deg); }


/* ============================================================
   22. MEDIA QUERIES CONSOLIDADAS
   ============================================================ */

/* ── ≤ 1199px — Tablet grande ────────────────────────────── */
@media (max-width: 1199px) {
  .highlight-grid-full { grid-template-columns: repeat(2, 1fr); }

  
@media (max-width: 820px ){
     .btn-scroll-top{
      right: 2.5rem;
    }
}

/* ── ≤ 1024px — Tablet / Notebook ───────────────────────── */
@media (max-width: 1024px) {

  /* Hero em coluna */
  .hero-split .split-container { grid-template-columns: 1fr; min-height: unset; }

  .hero-split .hero-content-column {
    padding-block: clamp(7rem, 10vw, 9rem) clamp(3rem, 5vw, 5rem);
    align-items: center;
    text-align: center;
  }

  .hero-inner-content { padding-inline: clamp(1.25rem, 4vw, 2.5rem); max-width: 720px; margin-inline: auto; }

  .hero-split .hero-image-column { min-height: clamp(300px, 100vw, 520px); }

  .hero-subtitle       { margin-inline: auto; }
  .hero-buttons        { justify-content: center; }
  .hero-social-proof   { justify-content: center; }

  /* About */
  .about-row         { flex-direction: column; align-items: center; text-align: center; }
  .about-image-col   { order: -1; width: 100%; margin-bottom: var(--sp-8); }
  .about-content-col { order: 1; width: 100%; }
  .about-btn-wrapper { display: flex; justify-content: center; }
  .about-checklist   { align-items: center; }

  /* Location */
  .location-minimal-wrapper { flex-direction: column; align-items: stretch; }
  .location-card-slim       { max-width: 100%; }
  .map-container-slim       { min-height: 300px; }
  .map-container-slim iframe { min-height: 300px; }
}
 

/* ── ≤ 768px — Tablet pequeno ────────────────────────────── */
@media (max-width: 768px) {
  section { padding-block: clamp(3rem, 7vw, 5rem); }

  .cta-background { background-attachment: scroll; }

  .highlight-grid-full   { grid-template-columns: 1fr; }
  .card-overlay-text     { opacity: 1; transform: none; }
  .card-image-box        { height: clamp(220px, 50vw, 360px); }

  .achievement-item + .achievement-item::before { display: none; }
  .achievement-item      { justify-content: center; }

  /* Google badge */
  .google-reviews-badge { flex-direction: column; gap: var(--sp-4); padding: var(--sp-6); border-radius: var(--r-xl); width: 100%; max-width: 400px; text-align: center; }

  .google-rating { border-left: none; border-top: 1px solid var(--border-subtle); padding-left: 0; padding-top: var(--sp-4); width: 100%; display: flex; justify-content: center; align-items: center; gap: var(--sp-3); }

  .reviews-content { text-align: center; display: flex; flex-direction: column; align-items: center; }

  .hero-buttons { flex-direction: column; align-items: center; width: 100%; }
  .hero-buttons .btn { width: 100%; max-width: 360px; }
}

/* ── ≤ 480px — Mobile ────────────────────────────────────── */
@media (max-width: 480px) {
  .ba-container  { aspect-ratio: 3 / 2; }
  .ba-handle     { width: 38px; height: 38px; }
  .ba-label      { padding: 4px 10px; font-size: 10px; top: 10px; }
  .ba-label-before { left: 10px; }
  .ba-label-after  { right: 10px; }

  .experience-badge  { padding: var(--sp-4); right: 6px; bottom: 6px; }
  .badge-number      { font-size: 1.75rem; }

  .achievements-section { clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%); padding-bottom: clamp(4.5rem, 8vw, 7rem); }

  .video-modal-content { width: 98%; border-radius: var(--r-lg); }
  .video-modal-close   { width: 32px; height: 32px; font-size: 1rem; }

  .nav-link {
  color: var(--text-heading) !important;
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 var(--sp-2);
  position: relative;
  transition: color var(--t);
}

.achievement-item {
  display: flex;
  justify-content: start;
  margin-left: 70px;

}

.btn-scroll-top{
  right: 1.7rem;
}

}

/* ── Preferência de movimento reduzido ───────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}}

