:root {
  --purple: #5B2A9E;
  --purple-2: #7B4BC0;
  --purple-soft: #F1EBFA;
  --cyan: #22C7E0;
  --green: #1FB89A;
  --green-2: #17a087;
  --green-soft: #E6F7F2;
  --ink: #1A1236;
  --muted: #6B6280;
  --line: rgba(91,42,158,.10);
  --bg: #FFFFFF;
  --surface: #F7F5FB;
  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(26,18,54,.06);
  --shadow: 0 8px 30px rgba(26,18,54,.08);
  --shadow-lg: 0 20px 60px rgba(91,42,158,.14);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; margin: 0; line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  transition: box-shadow .3s, background .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: #fff; border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 24px; padding: 14px 24px; }
.brand img { height: 120px; width: auto; max-width: 400px; }
.nav { display: flex; gap: 22px; margin-left: auto; margin-right: auto; }
.nav a { font-size: 14px; font-weight: 500; color: var(--ink); position: relative; padding: 6px 0; transition: color .2s; }
.nav a::after { content:""; position:absolute; left:0; right:0; bottom:0; height:2px; background:var(--purple); transform: scaleX(0); transition: transform .25s; transform-origin: right; }
.nav a:hover { color: var(--purple); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 10px; font-weight: 700; font-size: 14px;
  transition: transform .2s, box-shadow .25s, background .2s;
  cursor: pointer; border: 0;
}
.btn-cta { background: var(--green); color: #fff; letter-spacing: .03em; box-shadow: 0 8px 22px rgba(31,184,154,.35); }
.btn-cta:hover { background: var(--green-2); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(31,184,154,.45); }
.btn-lg { padding: 16px 26px; font-size: 15px; }

/* ============ HERO ============ */
.hero { padding: 40px 0 24px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .18em; color: var(--muted); text-transform: uppercase; margin-bottom: 14px; }
.eyebrow.purple { color: var(--purple); }
.eyebrow.green { color: var(--green); }
.eyebrow.center { text-align: center; }
.highlight { color: var(--green); }
.btn-primary { background: var(--purple); color: #fff; box-shadow: 0 8px 22px rgba(91,42,158,.28); }
.btn-primary:hover { background: var(--purple-2); transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--purple); border: 2px solid var(--purple); }
.btn-outline:hover { background: var(--purple); color: #fff; }

.hero h1 { font-size: clamp(34px, 4.4vw, 56px); font-weight: 800; }
.text-purple { color: var(--purple); }
.lead { color: var(--muted); font-size: 15.5px; margin: 20px 0 22px; max-width: 480px; }

.hero-checks { display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 26px; }
.hero-checks li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink); font-weight: 500; }
.check-dot { width: 18px; height: 18px; border-radius: 999px; border: 1.5px solid var(--purple); position: relative; flex-shrink: 0; }
.check-dot::after { content:""; position:absolute; inset:3px; border-radius:999px; background: var(--purple); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; }
.hero-badges li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.check-mini { width: 18px; height: 18px; border-radius: 999px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; font-size: 12px; font-weight: 700; }

.hero-media { position: relative; }
.hero-photo { width: 100%; height: auto; aspect-ratio: 1 / 1; max-height: 560px; object-fit: cover; object-position: center; border-radius: 22px; background: #f5f2fb; box-shadow: var(--shadow-lg); }

/* Hero reveal - slide + fade, staggered */
.hero.reveal { opacity: 1; transform: none; }
.hero.reveal .hero-copy { opacity: 0; transform: translateX(-32px); transition: opacity .9s ease .05s, transform .9s ease .05s; }
.hero.reveal .hero-media { opacity: 0; transform: translateX(32px) scale(.98); transition: opacity 1s ease .2s, transform 1s ease .2s; }
.hero.in-view .hero-copy,
.hero.in-view .hero-media { opacity: 1; transform: none; }
.hero-floater {
  position: absolute; right: -14px; bottom: 30px;
  background: #fff; padding: 16px 20px; border-radius: 999px;
  display: flex; align-items: center; gap: 12px;
  color: var(--purple); font-weight: 700; font-size: 12px; line-height: 1.3;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.hero-floater svg { color: var(--purple); flex-shrink: 0; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float { animation: float 6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 8px 22px rgba(31,184,154,.35); } 50% { box-shadow: 0 8px 22px rgba(31,184,154,.35), 0 0 0 10px rgba(31,184,154,.08); } }
.pulse { animation: pulse 2.4s ease-in-out infinite; }

/* ============ SECTIONS ============ */
.section { padding: 80px 0; }
.section.soft { background: var(--surface); }
.section-title { font-size: clamp(28px, 3vw, 40px); font-weight: 800; text-align: left; margin-bottom: 12px; }
.section-title.center { text-align: center; margin-bottom: 48px; }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px; margin-top: 40px; }
.benefit { text-align: center; }
.benefit-ico {
  width: 74px; height: 74px; border-radius: 999px;
  background: var(--purple-soft); color: var(--purple);
  display: grid; place-items: center; margin: 0 auto 14px;
  transition: transform .3s;
}
.benefit:hover .benefit-ico { transform: translateY(-4px) scale(1.05); }
.benefit p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* Tech */
.tech-grid { display: grid; grid-template-columns: 1fr 1.1fr auto; gap: 40px; align-items: center; }
.tech-photo { background: #f5f2fb; border-radius: 18px; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; padding: 24px; }
.tech-photo img { width: 100%; height: 440px; object-fit: contain; border-radius: 12px; }
.tech-copy p { color: var(--muted); font-size: 14.5px; margin-top: 14px; }
.tech-checks { display: flex; flex-direction: column; gap: 20px; min-width: 220px; }
.tech-checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; }
.check-round { width: 26px; height: 26px; border-radius: 999px; background: transparent; border: 2px solid var(--green); color: var(--green); display: grid; place-items: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.check-round.sm { width: 22px; height: 22px; font-size: 12px; }

/* Diferenciais */
.diff-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; margin-top: 40px; background: #fff; padding: 24px; border-radius: 16px; box-shadow: var(--shadow-sm); }
.diff-card { padding: 12px; border-radius: 12px; transition: transform .25s, background .25s; }
.diff-card:hover { transform: translateY(-4px); background: var(--purple-soft); }
.diff-ico { width: 40px; height: 40px; border-radius: 999px; background: var(--purple-soft); color: var(--purple); display: grid; place-items: center; margin-bottom: 12px; }
.diff-card p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* Provas */
.proofs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.proof-card { display: flex; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.proof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.proof-card svg { color: var(--purple); flex-shrink: 0; }
.proof-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 44px; font-weight: 800; color: var(--ink); line-height: 1; }
.proof-num .star { color: #F5B300; margin-left: 4px; }
.proof-suffix { font-size: 28px; }
.proof-label { color: var(--muted); font-size: 14px; margin-top: 6px; }

/* Depoimentos */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px; box-shadow: var(--shadow-sm); transition: transform .3s; }
.testi-card:hover { transform: translateY(-4px); }
.testi-card img { width: 70px; height: 70px; border-radius: 999px; object-fit: cover; margin-bottom: 14px; }
.testi-quote { color: var(--ink); font-size: 14.5px; margin-bottom: 14px; }
.testi-name { font-weight: 700; font-size: 14px; }
.testi-city { color: var(--muted); font-size: 12.5px; margin-bottom: 8px; }
.stars { color: var(--purple); letter-spacing: 2px; font-size: 14px; }

/* Oferta */
.offer { display: grid; grid-template-columns: 1.05fr 1fr .9fr; background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.offer-info { padding: 40px; }
.offer-info h3 { font-size: 22px; font-weight: 800; color: var(--purple); margin: 12px 0 20px; line-height: 1.25; }
.offer-bullets li { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.offer-price { padding: 40px; border-left: 1px solid var(--line); border-right: 1px solid var(--line); text-align: center; display: flex; flex-direction: column; justify-content: center; }
.from { color: var(--muted); font-size: 14px; }
.from s { color: var(--muted); }
.by { color: var(--muted); font-size: 13px; margin-top: 4px; }
.price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 68px; font-weight: 800; color: var(--purple); line-height: 1; margin: 8px 0 20px; }
.price span { font-size: 32px; vertical-align: super; }
.price sup { font-size: 24px; }
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; border-top: 1px dashed var(--line); padding-top: 16px; }
.pay-label { font-size: 10.5px; letter-spacing: .12em; color: var(--green); font-weight: 700; }
.pay-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--ink); margin-top: 4px; }
.pay-value span { font-size: 11px; color: var(--muted); font-weight: 400; display: block; margin-top: 2px; }
.offer-photo { background: #f5f2fb; padding: 28px; display: flex; align-items: center; justify-content: center; overflow: hidden; min-height: 480px; }
.offer-photo img { width: 100%; height: auto; aspect-ratio: 1 / 1; max-height: 460px; object-fit: cover; object-position: center 20%; border-radius: 14px; }

/* Offer section reveal - slide + fade */
#oferta.reveal { transform: translateY(48px); }
#oferta.reveal .offer { opacity: 0; transform: translateY(24px) scale(0.98); transition: opacity .9s ease .1s, transform .9s ease .1s; }
#oferta.in-view .offer { opacity: 1; transform: none; }


/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; margin-top: 40px; background: #fff; padding: 20px; border-radius: 16px; box-shadow: var(--shadow-sm); }
.faq-card { padding: 14px; border-radius: 12px; transition: background .25s, transform .25s; }
.faq-card:hover { background: var(--purple-soft); transform: translateY(-3px); }
.faq-ico { color: var(--purple); margin-bottom: 10px; }
.faq-q { font-weight: 700; font-size: 13px; margin-bottom: 6px; }
.faq-a { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* Banners */
.banners { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.banner { display: flex; gap: 16px; padding: 24px 28px; border-radius: 14px; align-items: flex-start; }
.banner-green { background: var(--green-soft); }
.banner-purple { background: var(--purple-soft); }
.banner-green .banner-ico { color: var(--green); }
.banner-purple .banner-ico { color: var(--purple); }
.banner-ico { width: 46px; height: 46px; border-radius: 999px; background: #fff; display: grid; place-items: center; flex-shrink: 0; }
.banner-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 14px; letter-spacing: .05em; margin-bottom: 6px; }
.banner-green .banner-title { color: var(--green-2); }
.banner-purple .banner-title { color: var(--purple); }
.banner p:not(.banner-title) { color: var(--muted); font-size: 13px; }

/* Footer */
.footer-cta { padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.footer-cta h3 { font-size: clamp(22px, 2.6vw, 32px); font-weight: 800; margin-bottom: 12px; }
.footer-cta > .container > div > p { color: var(--muted); margin-bottom: 24px; }
.footer-badges { margin-top: 22px; }
.footer-brand { text-align: center; }
.footer-brand img { margin: 0 auto 12px; height: auto; width: 400px; max-width: 100%; }
.footer-contact { font-style: normal; display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.footer-contact p, .footer-contact a { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--purple); font-weight: 600; font-size: 14px; line-height: 1.45; }
.footer-contact a:hover { color: var(--green-2); }
.footer-instagram { margin-top: 4px; }
.footer-loc { display: inline-flex; align-items: center; gap: 6px; color: var(--purple); font-weight: 600; font-size: 14px; }
.copyright { text-align: center; color: var(--muted); font-size: 12px; padding-top: 30px; margin-top: 30px; border-top: 1px solid var(--line); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .diff-grid, .faq-grid { grid-template-columns: repeat(3, 1fr); }
  .tech-grid { grid-template-columns: 1fr; }
  .tech-checks { flex-direction: row; flex-wrap: wrap; }
  .tech-checks li { flex: 1 1 45%; }
  .offer { grid-template-columns: 1fr; }
  .offer-price { border-left: 0; border-right: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
}
@media (max-width: 820px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px 24px; gap: 14px; box-shadow: var(--shadow); border-top: 1px solid var(--line); }
  .nav.open { display: flex; }
  .nav-toggle { display: block; margin-left: auto; }
  .header-inner .btn-cta { display: none; }
  .header-inner { justify-content: space-between; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { max-height: 460px; }
  .proofs-grid, .testi-grid, .banners, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
@media (max-width: 560px) {
  .benefits-grid, .diff-grid, .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 32px; }
  .price { font-size: 52px; }
  .offer-info, .offer-price { padding: 26px; }
  .hero-floater { right: 10px; bottom: 12px; padding: 12px 14px; font-size: 11px; }
  .offer-photo { padding: 20px; min-height: 340px; }
  .offer-photo img { max-height: 360px; border-radius: 12px; }
  .hero-photo { max-height: 380px; border-radius: 18px; }
}

/* ============ GOOGLE REVIEWS ============ */
.google-summary {
  margin: 28px auto 36px;
  max-width: 780px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: space-between;
}
.google-badge { display: flex; align-items: center; gap: 14px; }
.google-badge .g-title { font-weight: 700; color: var(--ink); font-size: 15px; }
.google-badge .g-stars { font-size: 18px; font-weight: 700; color: #f5a623; display: flex; align-items: center; gap: 6px; }
.google-badge .g-stars .stars { color: #f5a623; letter-spacing: 1px; }
.google-badge .g-sub { font-size: 12px; color: var(--muted); }

.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-head .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif;
}
.review-head .g-mark { margin-left: auto; }
.review-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.review-meta { font-size: 12px; color: var(--muted); }
.review-card .stars { color: #f5a623; letter-spacing: 2px; margin: 4px 0 8px; }
.review-text { font-size: 14.5px; color: #2c2450; line-height: 1.6; }
.reviews-cta { text-align: center; margin-top: 32px; }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .google-summary { flex-direction: column; text-align: center; }
}


/* ============ BOTOX HIGHLIGHT ============ */
.botox-highlight {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, var(--purple) 0%, #7a3fc7 100%);
  color: #fff;
  padding: 26px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.botox-highlight::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(31,184,154,.25), transparent 55%);
  pointer-events: none;
}
.botox-badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  padding: 12px 18px;
  border-radius: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .08em;
  backdrop-filter: blur(4px);
  display: inline-flex; align-items: center; gap: 10px;
}
.botox-copy { position: relative; z-index: 1; }
.botox-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 6px;
}
.botox-prices { display: flex; flex-wrap: wrap; align-items: baseline; gap: 18px; font-size: 18px; }
.botox-old { opacity: .75; text-decoration: line-through; text-decoration-color: rgba(255,255,255,.6); }
.botox-old .botox-x { text-decoration: none; display: inline-block; margin-left: 4px; }
.botox-new { font-size: 20px; font-weight: 600; }
.botox-new strong { font-size: 28px; font-weight: 800; color: #fff; margin: 0 4px; }
.botox-cta {
  background: var(--green);
  color: #fff;
  position: relative; z-index: 1;
  padding: 18px 28px;
  font-size: 15px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(31,184,154,.45);
  white-space: nowrap;
}
.botox-cta:hover { background: var(--green-2); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(31,184,154,.55); }

@media (max-width: 820px) {
  .botox-highlight { grid-template-columns: 1fr; text-align: center; padding: 24px; gap: 18px; }
  .botox-badge { justify-self: center; }
  .botox-prices { justify-content: center; }
  .botox-cta { justify-self: center; }
}
@media (max-width: 560px) {
  .botox-highlight { padding: 22px 18px; gap: 16px; border-radius: 16px; }
  .botox-badge { font-size: 15px; padding: 10px 14px; }
  .botox-eyebrow { font-size: 11px; margin-bottom: 8px; }
  .botox-prices { flex-direction: column; align-items: center; gap: 8px; font-size: 15px; }
  .botox-new { font-size: 16px; }
  .botox-new strong { font-size: 22px; }
  .botox-old .botox-x,
  .botox-new .botox-check { display: inline-block; transform: scale(1.1); margin-left: 4px; }
  .botox-cta { white-space: normal; text-align: center; padding: 16px 24px; font-size: 14px; width: 100%; justify-content: center; }
}

/* Avatar colors (moved from inline styles for strict CSP) */
.avatar-purple { background: #7B4BC0; }
.avatar-green  { background: #1FB89A; }
.avatar-cyan   { background: #22C7E0; }
.avatar-deep   { background: #5B2A9E; }
.avatar-teal   { background: #17a087; }
.mt-28 { margin-top: 28px; }
