/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #0d1b3e;
  background: #ffffff;
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== TOKENS ===== */
:root {
  --navy:    #1a1464;
  --navy-m:  #130f50;
  --blue:    #1a1464;
  --blue-l:  #eceaf8;
  --pink:    #e8a0b0;
  --pink-l:  #fde8ef;
  --white:   #ffffff;
  --offwhite:#f5f6f9;
  --muted:   #5a6a85;
  --border:  #dde4f0;
  --green:   #25d366;
  --radius:  14px;
  --shadow:  0 6px 32px rgba(26,20,100,.10);
  --shadow-s:0 2px 12px rgba(26,20,100,.08);
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ===== TAGS & TITLES ===== */
.tag {
  display: inline-block;
  background: var(--pink-l);
  color: #b5607a;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: 14px;
}
.section-header h2 em { font-style: italic; color: var(--blue); }
.section-header p { color: var(--muted); max-width: 540px; margin: 0 auto; font-size: .97rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: var(--radius);
  font-size: .92rem; font-weight: 600; cursor: pointer;
  transition: all .22s; border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--blue); color: var(--white);
}
.btn-primary:hover { background: var(--navy-m); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,77,183,.3); }

.btn-nav-cta {
  background: #e9edf2; color: var(--navy);
  padding: 10px 20px; font-size: .85rem; border-radius: 10px; font-weight: 700;
}
.btn-nav-cta:hover { background: #d7dde6; transform: translateY(-1px); }

.btn-hero-wpp {
  background: var(--green); color: var(--white);
  font-size: 1rem; padding: 15px 30px; border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
}
.btn-hero-wpp:hover { background: #1aab52; transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,.4); }

.btn-hero-ghost {
  background: transparent; color: var(--navy);
  border-color: var(--navy); font-size: 1rem; padding: 15px 30px;
}
.btn-hero-ghost:hover { background: var(--navy); color: #ffffff; }

.btn-wpp-cta { background: var(--green); color: var(--white); font-size: 1rem; padding: 15px 30px; }
.btn-wpp-cta:hover { background: #1aab52; transform: translateY(-2px); }
.btn-email-cta { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); font-size: 1rem; padding: 15px 30px; }
.btn-email-cta:hover { background: rgba(255,255,255,.12); }

.btn-form-submit { background: var(--navy); color: var(--white); width: 100%; justify-content: center; padding: 15px; font-size: .97rem; }
.btn-form-submit:hover { background: var(--blue); transform: translateY(-2px); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 999;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,.15);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(13,27,62,.12); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 90px; gap: 24px;
}
.logo-link { display: flex; align-items: center; }
.logo-img { height: 200px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 30px; margin-right: auto; margin-left: 40px; }
.nav-links a {
  font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.8);
  transition: color .2s; position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--pink); border-radius: 2px;
  transition: width .25s;
}
.nav-links a:hover { color: #ffffff; }
.nav-links a:hover::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #ffffff; border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--navy); border-top: 1px solid rgba(255,255,255,.12);
  padding: 8px 28px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 0; font-weight: 500; color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.1); font-size: .95rem; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-wpp { color: var(--green) !important; font-weight: 600 !important; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, var(--offwhite) 55%, #eef1f8 100%);
  min-height: 100vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 40%, rgba(30,77,183,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(232,160,176,.10) 0%, transparent 60%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230d1b3e' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 40px 28px 80px;
  max-width: 1160px; margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 8px;
  color: #b5607a; font-size: .82rem;
  font-weight: 600; letter-spacing: .06em; text-transform: none;
  margin-bottom: 20px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink); display: block;
  box-shadow: 0 0 0 3px rgba(232,160,176,.35);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(232,160,176,.35); }
  50% { box-shadow: 0 0 0 7px rgba(232,160,176,.15); }
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--navy); line-height: 1.15;
  font-weight: 700; margin-bottom: 20px;
}
.hero-content h1 em { font-style: italic; color: var(--blue); }
.hero-content p { color: var(--muted); font-size: 1.05rem; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--navy); font-size: .83rem; font-weight: 500; }
.trust-item i { color: var(--green); font-size: .9rem; }
.trust-sep { width: 1px; height: 18px; background: var(--border); }

/* Esteira de serviços */
.hero-esteira {
  margin-top: 44px;
  max-width: 680px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.he-track {
  display: flex; width: max-content;
  animation: esteira 26s linear infinite;
}
.hero-esteira:hover .he-track { animation-play-state: paused; }
.he-item {
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap; padding: 8px 18px; margin-right: 12px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; font-size: .82rem; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow-s);
}
.he-item i { color: var(--pink); font-size: .82rem; }
@keyframes esteira {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Hero Visual */
.hero-visual {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  height: 460px;
}

/* Card principal premium */
.hero-premium-card {
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 24px;
  padding: 20px 22px;
  width: 280px; max-width: 100%;
  box-shadow: 0 24px 60px rgba(13,27,62,.28);
  animation: float 5s ease-in-out infinite;
  position: relative; z-index: 2;
}
.hpc-logo { margin-bottom: 20px; }
.hpc-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); opacity: .95; }
.hpc-divider {
  height: 1px; background: rgba(255,255,255,.12);
  margin-bottom: 16px;
}
.hpc-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  margin-bottom: 14px;
}
.hpc-titulo {
  font-family: 'Playfair Display', serif;
  font-size: .8rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 18px;
}
.hpc-fatos { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.hpc-fatos li { display: flex; align-items: center; gap: 14px; }
.hpc-fatos li > strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 700; color: #ffffff;
  line-height: 1; flex-shrink: 0; min-width: 78px;
}
.hpc-fatos li span {
  font-family: 'Playfair Display', serif;
  font-size: .84rem; color: #ffffff; line-height: 1.4; font-weight: 400;
}
.hpc-frase {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-style: italic; font-weight: 500;
  line-height: 1.4; color: #ffffff; text-align: center;
  padding: 14px 6px;
}
.hpc-lista { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 22px; }
.hpc-lista li {
  display: flex; align-items: center; gap: 10px;
  font-size: .84rem; color: rgba(255,255,255,.9); font-weight: 500;
}
.hpc-lista li i { color: #34d399; font-size: .8rem; flex-shrink: 0; }
.hpc-crc {
  display: flex; align-items: center; gap: 8px;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .75rem; color: rgba(255,255,255,.5);
}
.hpc-crc i { color: rgba(255,255,255,.4); font-size: .85rem; }

/* Flutuantes */
.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  display: flex; align-items: center; gap: 12px;
  min-width: 220px; max-width: 100%;
  border: 1px solid rgba(255,255,255,.9);
  animation: float 4s ease-in-out infinite;
}
.card-top { top: 10px; left: -20px; animation-delay: 0s; z-index: 1; }
.card-bottom { bottom: 10px; right: -20px; animation-delay: -2.5s; z-index: 3; }

.hcf-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.hcf-gold {
  background: #ecfdf5;
  color: #059669;
}
.hcf-green {
  background: #ecfdf5;
  color: #059669;
  box-shadow: 0 6px 16px rgba(5,150,105,.35), inset 0 1px 1px rgba(255,255,255,.4);
}

.hcf-body { display: flex; flex-direction: column; gap: 2px; }
.hcf-body strong {
  font-size: .9rem; font-weight: 700; color: var(--navy); letter-spacing: -.01em;
}
.hcf-body span {
  font-size: .76rem; font-weight: 500; color: var(--muted);
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; }
.hero-wave svg { display: block; width: 100%; }

/* ===== ESTEIRA (serviços rolando direita→esquerda no hero) ===== */
.hero-esteira {
  flex: 1; min-width: 0; overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.he-track {
  display: inline-flex; align-items: center; white-space: nowrap;
  animation: he-scroll 30s linear infinite;
}
.hero-esteira:hover .he-track { animation-play-state: paused; }
.he-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 600; color: var(--navy);
  padding: 0 20px; flex-shrink: 0;
}
.he-item i { color: var(--pink); font-size: .85rem; }
@keyframes he-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== SERVIÇOS ===== */
.servicos { padding: 96px 0; background: var(--offwhite); }
.serv-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.serv-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 20px; position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  background: var(--white);
}
.serv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blue); }
.serv-card--destaque { border-color: var(--pink); background: linear-gradient(135deg, #fff8fa, #fff); }
.serv-card--destaque .serv-icon { background: #fde8ef; }
.serv-card--destaque .serv-icon i { color: #b5607a; }
.serv-card--destaque:hover { border-color: #b5607a; }
.serv-card--destaque:hover .serv-icon { background: var(--pink); }
.serv-card--destaque:hover .serv-icon i { color: var(--white); }
.serv-card--destaque .serv-link { color: #b5607a; }
.serv-card--destaque .serv-num { color: #fde8ef; }
.serv-num {
  position: absolute; top: 12px; right: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--border); line-height: 1;
  transition: color .25s;
}
.serv-card:hover .serv-num { color: var(--blue-l); }
.serv-icon {
  width: 44px; height: 44px; background: var(--blue-l);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; transition: background .25s; flex-shrink: 0;
}
.serv-card:hover .serv-icon { background: var(--blue); }
.serv-icon i { font-size: 1.1rem; color: var(--blue); transition: color .25s; }
.serv-card:hover .serv-icon i { color: var(--white); }
.serv-card h3 { font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.serv-card p { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.serv-link {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 600; color: var(--blue);
  transition: color .2s;
}
.serv-link:hover { color: var(--navy); }
.serv-toggle { background: none; border: none; cursor: pointer; font-family: 'Inter', sans-serif; padding: 0; }
.serv-opcoes { display: none; flex-direction: column; gap: 8px; margin-top: 12px; }
.serv-opcoes.open { display: flex; }
.serv-opcao {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--white);
  font-size: .8rem; font-weight: 600; color: var(--navy); transition: all .2s;
}
.serv-opcao i { color: var(--blue); }
.serv-opcao:hover { border-color: var(--blue); background: var(--blue-l); }

/* ===== MAPA ABERTURA ===== */
.mapa { padding: 96px 0; background: #e9edf6; }

.mapa-wrap { max-width: 960px; margin: 0 auto; }

.mapa-trilha {
  display: flex; justify-content: space-between;
  position: relative; margin-bottom: 36px; gap: 8px;
}
.mapa-trilha::before {
  content: ''; position: absolute; top: 34px; left: 5%; right: 5%;
  height: 3px; background: var(--border); z-index: 0;
}
.mapa-passo {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: none; border: none; cursor: pointer;
  flex: 1; font-family: 'Inter', sans-serif;
  transition: transform .2s;
}
.mapa-passo:hover { transform: translateY(-3px); }
.mp-num {
  position: absolute; top: -8px; right: calc(50% - 34px);
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--pink); color: #fff;
  font-size: .72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #e9edf6;
}
.mapa-passo i {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--white); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: var(--shadow-s);
  transition: all .25s; border: 2px solid transparent;
}
.mp-titulo { font-size: .82rem; font-weight: 600; color: var(--muted); transition: color .2s; text-align: center; }
.mapa-passo.active i { background: var(--navy); color: #fff; border-color: var(--navy); transform: scale(1.08); }
.mapa-passo.active .mp-titulo { color: var(--navy); }
.mapa-passo.active .mp-num { background: var(--navy); }

.mapa-detalhe {
  background: var(--white); border-radius: 18px;
  padding: 32px 36px; box-shadow: var(--shadow-s);
  border: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 22px;
  min-height: 130px;
}
.md-icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: var(--blue-l); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.md-texto h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; font-weight: 700; }
.md-texto p { font-size: .92rem; color: var(--muted); line-height: 1.65; }
.md-tempo {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 2px 0 12px; font-size: .8rem; font-weight: 600;
  color: #b5607a; background: var(--pink-l);
  padding: 4px 12px; border-radius: 100px;
}
.md-botao {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; padding: 11px 22px; border-radius: 10px;
  background: var(--navy); color: #fff;
  font-size: .88rem; font-weight: 600; transition: all .2s;
}
.md-botao i { color: var(--pink); }
.md-botao:hover { background: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-s); }

.mapa-cta { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 40px; }
.btn-mapa-reuniao {
  background: var(--white); color: var(--navy);
  border: 2px solid var(--navy);
  padding: 13px 26px; border-radius: var(--radius);
  font-size: .92rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 9px; transition: all .2s;
}
.btn-mapa-reuniao i { color: var(--pink); }
.btn-mapa-reuniao:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-mapa-reuniao:hover i { color: var(--pink); }

@media (max-width: 720px) {
  .mapa-trilha { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .mapa-trilha::before { display: none; }
  .mapa-passo { flex: 0 0 28%; }
  .mapa-detalhe { flex-direction: column; gap: 14px; }
}


/* Callout Instagram */
.insta-callout {
  display: flex; align-items: center; gap: 16px;
  margin-top: 20px; padding: 16px 20px; border-radius: 16px;
  background: linear-gradient(120deg, #fdf2f8 0%, #fef6f2 100%);
  border: 1px solid #f5d0e0;
  transition: transform .25s, box-shadow .25s;
}
.insta-callout:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(220,39,67,.15); }
.ic-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
}
.ic-texto strong { display: block; font-size: 1rem; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.ic-texto p { font-size: .82rem; color: var(--muted); line-height: 1.5; margin-bottom: 8px; }
.ic-link { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 700; color: #bc1888; }
.ic-seguir {
  display: inline-flex; align-items: center; gap: 7px;
  background: none;
  color: var(--navy); font-size: .82rem; font-weight: 700;
  transition: transform .2s;
}
.insta-callout:hover .ic-seguir { transform: translateY(-1px); opacity: .92; }
.insta-callout:hover .ic-link i { transform: translateX(4px); transition: transform .2s; }

@media (max-width: 620px) {
  .insta-callout { flex-direction: column; text-align: center; }
}

/* ===== SOBRE ===== */
.sobre { padding: 96px 0; background: var(--offwhite); }
.sobre-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 72px; align-items: center;
}
.sobre-visual { position: relative; align-self: start; margin-top: -30px; }
.sobre-logo-wrap {
  position: relative;
  background: var(--navy);
  border-radius: 24px; height: 420px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.sobre-logo { width: 150px; height: 150px; object-fit: contain; filter: brightness(0) invert(1); }
.sobre-foto {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center 22%;
  border-radius: 24px;
  filter: brightness(1.05) contrast(1.06) saturate(1.08);
}
.sobre-review {
  margin-top: 40px; background: var(--white);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 22px 24px; box-shadow: var(--shadow-s);
  transition: opacity .4s;
}
.sr-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.sr-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: #fff; font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sr-info { flex: 1; }
.sr-info strong { display: block; font-size: .9rem; color: var(--navy); }
.sr-stars { color: #fbbc04; font-size: .82rem; letter-spacing: 1px; }
.sr-google { height: 18px; width: auto; opacity: .8; }
.sr-texto { font-size: .9rem; color: var(--muted); line-height: 1.65; font-style: italic; }
.sobre-review.fade { opacity: 0; }
.sobre-card-1, .sobre-card-2 {
  position: absolute; background: var(--white);
  border-radius: 12px; padding: 10px 14px;
  box-shadow: var(--shadow); display: flex;
  align-items: center; gap: 9px; border: 1px solid var(--border);
}
.sobre-card-1 { top: -16px; left: -18px; }
.sobre-card-2 { bottom: -16px; right: -18px; }
.sobre-card-1 i, .sobre-card-2 i { font-size: 1.3rem; color: var(--blue); }
.sobre-card-1 strong, .sobre-card-2 strong { display: block; font-size: .78rem; font-weight: 600; color: var(--navy); }
.sobre-card-1 span, .sobre-card-2 span { font-size: .7rem; color: var(--muted); }
.sobre-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 18px;
}
.sobre-content p { color: var(--muted); margin-bottom: 14px; font-size: .95rem; }
.sobre-pilares { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 32px; }
.pilar { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--navy); }
.pilar i { color: var(--blue); font-size: 1rem; flex-shrink: 0; }

/* ===== CONTATO ===== */
.contato { padding: 96px 0; background: var(--offwhite); }
.contato-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.contato-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem); font-weight: 700;
  color: var(--navy); margin-bottom: 14px;
}
.contato-info > p { color: var(--muted); margin-bottom: 32px; font-size: .95rem; }
.contato-canais { display: flex; flex-direction: column; gap: 12px; }
.canal-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px 18px; border: 1px solid var(--border);
  transition: border-color .2s, box-shadow .2s;
}
a.canal-item:hover { border-color: var(--blue); box-shadow: var(--shadow-s); }
.canal-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.canal-wpp .canal-icon { background: #e8fdf1; color: var(--green); }
.canal-email .canal-icon { background: var(--blue-l); color: var(--blue); }
.canal-agenda .canal-icon { background: #eef1ff; color: #3b5bdb; }
.canal-hora .canal-icon { background: #fff8ec; color: var(--gold); }
.canal-item > div strong { display: block; font-size: .88rem; font-weight: 600; color: var(--navy); }
.canal-item > div span { font-size: .82rem; color: var(--muted); }
.canal-arrow { margin-left: auto; color: var(--muted); font-size: .8rem; }

.contato-form {
  background: var(--white); border-radius: 20px;
  padding: 40px 36px; border: 1px solid var(--border);
  box-shadow: var(--shadow-s);
}
.contato-form h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contato-form h3 span { color: var(--blue); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: .05em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid var(--border); background: var(--offwhite);
  font-size: .9rem; font-family: 'Inter', sans-serif; color: var(--navy);
  transition: border-color .2s, background .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); background: var(--white); }
.form-group textarea { resize: vertical; }
.form-success {
  display: none; margin-top: 14px; padding: 12px 16px;
  background: #ecfdf5; border: 1px solid #6ee7b7;
  border-radius: 10px; color: #065f46; font-size: .88rem;
  align-items: center; gap: 8px;
}
.form-success.show { display: flex; }
.form-privacidade { margin-top: 12px; font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 6px; justify-content: center; }
.form-privacidade i { color: var(--blue); }

/* Link Google no footer */
.google-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; color: rgba(255,255,255,.6);
  font-size: .82rem; font-weight: 500;
  transition: color .2s;
}
.google-link:hover { color: var(--white); }
.google-link i:first-child { color: #4285f4; font-size: 1rem; }
.google-link-arrow { font-size: .7rem; opacity: .6; }

/* ===== FOOTER ===== */
.footer { background: #080f22; color: rgba(255,255,255,.65); padding: 72px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px; padding-bottom: 52px;
}
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; opacity: .9; }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); display: flex;
  align-items: center; justify-content: center;
  font-size: .9rem; transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { color: var(--white); font-size: .88rem; margin-bottom: 4px; letter-spacing: .04em; text-transform: uppercase; }
.footer-col a { font-size: .85rem; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-col a:hover { color: var(--white); }
.footer-col a i { width: 14px; opacity: .6; }
.footer-horario { font-size: .85rem; display: flex; align-items: center; gap: 6px; }
.footer-horario i { width: 14px; opacity: .6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 28px; text-align: center; font-size: .8rem; color: rgba(255,255,255,.4);
}

/* ===== FLOATING ELEMENTS ===== */
.wpp-float {
  position: fixed; bottom: 88px; right: 24px; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .22s;
}
.wpp-float:hover { transform: scale(1.1); }
.wpp-pulse {
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  background: var(--green); opacity: .4;
  animation: wpp-pulse 2.5s ease-out infinite;
}
@keyframes wpp-pulse {
  0% { transform: scale(1); opacity: .4; }
  100% { transform: scale(1.8); opacity: 0; }
}
.back-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy); color: var(--white); border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; cursor: pointer; box-shadow: var(--shadow-s);
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .2s;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); background: var(--blue); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-inner { padding: 80px 28px 100px; }
  .sobre-inner { grid-template-columns: 1fr; }
  .sobre-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .serv-grid { grid-template-columns: repeat(2,1fr); }
  .contato-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .contato-form { padding: 24px 20px; }
}
