* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Identidade oficial Agora Marcas */
  --purple-dark: #141438;     /* navy */
  --purple: #B982F9;          /* roxo da marca */
  --purple-deep: #8B4FE6;     /* roxo escuro p/ contraste/hover */
  --purple-light: #E9ABF8;    /* lilás */
  --cream: #F0DDC0;           /* creme (selo R) */
  --green: #10B981;
  --gold: #F0DDC0;            /* alias legado → creme */
  --bg: #FAF8FE;
  --text: #141438;
  --text-gray: #6B6B85;
  --border: #ECE8F5;
  --gradient: linear-gradient(140deg, #C99BFA 0%, #B982F9 42%, #141438 100%);
  --gradient-soft: linear-gradient(135deg, #F7F1FE 0%, #F1E7FD 100%);
}

html { scroll-behavior: smooth; }
/* overflow-x: clip corta o transbordo horizontal SEM transformar a raiz num
   container de scroll (o que `hidden` faz e quebra taps/scroll no iOS Safari). */
html, body { overflow-x: clip; max-width: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text); background: var(--bg);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }

/* HEADER */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1200px; margin: 0 auto;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 34px; width: auto; display: block; }
.nav { display: flex; gap: 26px; align-items: center; }
.nav a { color: var(--text); text-decoration: none; font-weight: 500; font-size: 15px; transition: color .2s; }
.nav a:hover { color: var(--purple-deep); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.phone { font-weight: 700; color: var(--text); text-decoration: none; font-size: 14px; white-space: nowrap; }
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 12px;
  font-weight: 700; text-decoration: none; font-size: 15px;
  transition: all .2s; border: none; cursor: pointer; font-family: inherit;
}
.btn-primary { background: var(--purple); color: var(--purple-dark); box-shadow: 0 4px 16px rgba(185,130,249,.4); }
.btn-primary:hover { background: var(--purple-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(185,130,249,.5); }
.btn-navy { background: var(--purple-dark); color: #fff; }
.btn-navy:hover { background: #23235a; transform: translateY(-2px); }
.btn-cream { background: var(--cream); color: var(--purple-dark); }
.btn-cream:hover { background: #f6e9d2; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--purple-dark); border: 2px solid var(--purple); }
.btn-outline:hover { background: var(--purple); color: var(--purple-dark); }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-sm { padding: 10px 16px; font-size: 14px; border-radius: 10px; white-space: nowrap; }
.header-buy .lbl-short, .header-consult .lbl-short { display: none; }
.header-buy { border: 1.5px solid var(--cream); }
.header-portal { color: var(--purple-dark); border-color: var(--border); font-weight: 600; }
.header-portal:hover { background: var(--purple-dark); color: #fff; border-color: var(--purple-dark); }
@media (max-width: 980px) { .nav { gap: 20px; } .header-cta { gap: 10px; } }
@media (max-width: 860px) { .header-portal { display: none; } }
@media (max-width: 768px) {
  .nav { display: none; }
  .header-cta .phone { display: none; }
  .header-inner { padding: 12px 16px; }
  .header-buy, .header-consult { padding: 9px 14px; font-size: 13px; }
  .logo img { height: 30px; }
  .header-buy .lbl-full, .header-consult .lbl-full { display: none; }
  .header-buy .lbl-short, .header-consult .lbl-short { display: inline; }
}

/* HERO */
.hero { background: var(--gradient); color: white; padding: 80px 0 100px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(175,64,255,.3) 0%, transparent 70%); border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero .hero-grid, .page-hero .hero-grid { grid-template-areas: "head form" "rest form"; column-gap: 64px; row-gap: 0; align-items: center; }
.hero-head { grid-area: head; }
.hero-rest { grid-area: rest; }
.hero .hero-grid > form.lead-form, .page-hero .hero-grid > form.lead-form { grid-area: form; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(10px);
  padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 600;
  margin-bottom: 24px; border: 1px solid rgba(255,255,255,.2);
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,.7); }
  70% { box-shadow: 0 0 0 12px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.hero h1 { font-size: 54px; font-weight: 900; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 24px; }
.hero h1 .highlight { color: var(--cream); }
.hero-sub { font-size: 19px; opacity: .9; margin-bottom: 36px; font-weight: 400; max-width: 560px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 32px; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; opacity: .95; }

/* FORM */
.lead-form { background: white; border-radius: 24px; padding: 36px; box-shadow: 0 25px 60px rgba(12,12,54,.4); color: var(--text); }
.lead-form-title { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.lead-form-sub { font-size: 14px; color: var(--text-gray); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group select {
  width: 100%; padding: 14px 16px; border: 2px solid var(--border);
  border-radius: 12px; font-size: 15px; font-family: inherit; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--purple); }
.form-btn {
  width: 100%; background: var(--purple-dark); color: #fff; padding: 16px;
  border: none; border-radius: 12px; font-weight: 800; font-size: 16px;
  cursor: pointer; transition: all .2s; font-family: inherit; margin-top: 8px;
}
.form-btn:hover { background: #23235a; transform: translateY(-1px); }
.form-footer { text-align: center; font-size: 12px; color: var(--text-gray); margin-top: 16px; }
@media (max-width: 900px) {
  .hero { padding: 44px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero .hero-grid, .page-hero .hero-grid { grid-template-areas: "head" "form" "rest"; column-gap: 0; row-gap: 24px; }
  .hero h1 { font-size: 31px; }
  .hero-sub { font-size: 16px; }
}
@media (max-width: 600px) {
  .hero .hero-badge, .page-hero .hero-badge { display: none; }
  .hero h1 { font-size: 28px; margin-bottom: 4px; }
  .page-hero h1 { font-size: 26px; margin-bottom: 4px; }
  .hero .hero-grid, .page-hero .hero-grid { row-gap: 18px; }
}

/* PAIN BAR */
.pain-bar { background: var(--purple-dark); color: white; padding: 60px 0; }
.pain-title { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.pain-subtitle { text-align: center; font-size: 17px; opacity: .7; margin-bottom: 48px; max-width: 640px; margin-left: auto; margin-right: auto; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pain-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 32px 28px; transition: all .3s; }
.pain-card:hover { background: rgba(175,64,255,.1); border-color: rgba(175,64,255,.3); transform: translateY(-4px); }
.pain-icon { width: 56px; height: 56px; background: linear-gradient(135deg, #B982F9 0%, #8B4FE6 100%); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 28px; }
.pain-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.pain-card p { font-size: 14px; opacity: .75; }
@media (max-width: 768px) { .pain-grid { grid-template-columns: 1fr; } .pain-title { font-size: 26px; } }

/* STATS */
.stats { background: white; padding: 60px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-number { font-size: 48px; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--text-gray); font-weight: 500; }
.stats-grid.cols-3 { grid-template-columns: repeat(3, 1fr); max-width: 880px; margin: 0 auto; }
@media (max-width: 600px) { .stats-grid.cols-3 { gap: 10px; } .stats-grid.cols-3 .stat-number { font-size: 24px; } .stats-grid.cols-3 .stat-label { font-size: 11px; } }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat-number { font-size: 36px; } }

/* SECTION */
.section { padding: 100px 0; }
.section-label { display: inline-block; background: var(--gradient-soft); color: var(--purple); padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; }
.section-title { font-size: 44px; font-weight: 900; letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-size: 19px; color: var(--text-gray); max-width: 680px; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head .section-sub { margin: 0 auto; }
@media (max-width: 768px) { .section { padding: 70px 0; } .section-title { font-size: 30px; } .section-sub { font-size: 16px; } }

/* CREDIBILITY STRIP */
.cred { background: white; padding: 40px 0; border-bottom: 1px solid var(--border); }
.cred-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.cred-item { display: flex; align-items: center; gap: 12px; }
.cred-item .badge { width: 48px; height: 48px; border-radius: 12px; background: var(--gradient-soft); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.cred-item strong { display: block; font-size: 15px; }
.cred-item span { font-size: 13px; color: var(--text-gray); }
@media (max-width: 768px) {
  .cred { padding: 28px 0; }
  .cred-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .cred-item { flex-direction: column; align-items: center; text-align: center; gap: 10px; background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 20px 12px; }
  .cred-item .badge { margin: 0; }
  .cred-item strong { font-size: 14px; }
  .cred-item span { font-size: 12px; }
}

/* COMPARE */
.compare { background: var(--gradient-soft); }
.compare-table { background: white; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(91,66,243,.12); max-width: 900px; margin: 0 auto; }
.compare-row { display: grid; grid-template-columns: 2fr 1.2fr 1.2fr; align-items: center; padding: 20px 32px; border-bottom: 1px solid var(--border); }
.compare-row:last-child { border-bottom: none; }
.compare-header { background: var(--purple-dark); color: white; font-weight: 700; }
.compare-header .col-agora { background: var(--purple-deep); color: #fff; margin: -20px -32px -20px 0; padding: 14px 24px; text-align: center; font-weight: 800; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.compare-header .col-agora .rec { background: var(--cream); color: var(--purple-dark); font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 100px; letter-spacing: .5px; line-height: 1.4; }
.compare-feature { font-weight: 600; font-size: 15px; }
.compare-value { text-align: center; font-size: 15px; color: var(--text-gray); }
.compare-value.win { color: var(--purple); font-weight: 700; }
.compare-footer { padding: 32px; text-align: center; background: var(--gradient-soft); }
.compare-footer p { font-size: 14px; color: var(--text-gray); margin-bottom: 16px; }
@media (max-width: 768px) { .compare-row { grid-template-columns: 1fr 1fr 1fr; padding: 16px; } .compare-feature, .compare-value { font-size: 13px; } .compare-header .col-agora { margin: -16px -16px -16px 0; padding: 16px; } }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card { background: white; padding: 40px 32px; border-radius: 20px; border: 1px solid var(--border); transition: all .3s; }
.step-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(91,66,243,.12); border-color: var(--purple-light); }
.step-number { width: 56px; height: 56px; background: var(--gradient); color: white; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 900; margin-bottom: 20px; }
.step-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.step-card p { font-size: 15px; color: var(--text-gray); }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: white; border-radius: 20px; padding: 36px; border: 1px solid var(--border); transition: all .3s; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(185,130,249,.16); }
.service-main { background: var(--gradient); color: white; border: none; }
.service-icon { width: 64px; height: 64px; background: var(--gradient-soft); color: var(--purple); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 32px; }
.service-main .service-icon { background: rgba(255,255,255,.15); color: white; }
.service-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.service-main h3 { font-size: 28px; }
.service-card p { font-size: 15px; color: var(--text-gray); margin-bottom: 24px; flex: 1; }
.service-main p { color: rgba(255,255,255,.9); }
.service-link { color: var(--purple); font-weight: 700; text-decoration: none; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.service-link:hover { gap: 10px; }
.service-main .service-link { color: var(--gold); }
.service-tag { display: inline-block; background: var(--gold); color: var(--purple-dark); font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 100px; letter-spacing: .5px; margin-bottom: 16px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } .service-main { grid-row: auto; } }

/* GUARANTEE */
.guarantee { background: linear-gradient(135deg, #0C0C36 0%, #1a1a5e 100%); color: white; position: relative; overflow: hidden; }
.guarantee::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,215,0,.15) 0%, transparent 70%); border-radius: 50%; }
.guarantee-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 48px; align-items: center; position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; }
.guarantee-shield { width: 140px; height: 140px; background: linear-gradient(135deg, #E9ABF8 0%, #F0DDC0 100%); border-radius: 32px; display: flex; align-items: center; justify-content: center; font-size: 64px; box-shadow: 0 20px 60px rgba(185,130,249,.35); }
.guarantee h2 { font-size: 38px; font-weight: 900; line-height: 1.15; margin-bottom: 16px; letter-spacing: -1px; }
.guarantee p { font-size: 17px; opacity: .85; max-width: 500px; }
.badge-contract { display: inline-flex; align-items: center; gap: 6px; background: rgba(16,185,129,.2); color: var(--green); padding: 6px 12px; border-radius: 100px; font-size: 12px; font-weight: 700; margin-bottom: 16px; border: 1px solid rgba(16,185,129,.3); }
@media (max-width: 900px) { .guarantee-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; } .guarantee-shield { margin: 0 auto; } .guarantee h2 { font-size: 28px; } .guarantee p { margin: 0 auto; } }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial { background: var(--bg); border-radius: 20px; padding: 32px; border: 1px solid var(--border); transition: all .3s; }
.testimonial:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(91,66,243,.1); }
.testimonial-stars { color: #E6A93D; font-size: 16px; margin-bottom: 12px; }
.testimonial-text { font-size: 15px; color: var(--text); margin-bottom: 20px; font-weight: 500; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.author-avatar { width: 48px; height: 48px; background: var(--gradient); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; }
.author-photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-tag { display: inline-block; background: var(--gradient-soft); color: var(--purple-deep); font-size: 11px; font-weight: 800; padding: 5px 12px; border-radius: 100px; letter-spacing: .4px; margin-bottom: 16px; }
.testimonial-case { display: flex; flex-direction: column; }
.testimonial-brand { display: flex; align-items: center; height: 48px; margin-bottom: 18px; }
.testimonial-brand img { max-height: 38px; max-width: 160px; width: auto; }
.testimonial-case .testimonial-text { flex: 1; }
.author-info strong { display: block; font-size: 14px; }
.author-info span { font-size: 12px; color: var(--text-gray); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: 16px; margin-bottom: 12px; overflow: hidden; transition: all .3s; }
.faq-item.open { border-color: var(--purple); box-shadow: 0 10px 30px rgba(91,66,243,.1); }
.faq-q { padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 700; font-size: 16px; gap: 16px; }
.faq-q .icon { width: 28px; height: 28px; background: var(--gradient-soft); color: var(--purple); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; font-weight: 800; transition: transform .3s; }
.faq-item.open .faq-q .icon { background: var(--purple); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; padding: 0 28px; color: var(--text-gray); font-size: 15px; }
.faq-item.open .faq-a { max-height: 600px; padding: 0 28px 24px; }

/* FINAL CTA */
.final-cta { background: var(--gradient); color: white; padding: 100px 0; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -50%; left: -10%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(255,107,53,.15) 0%, transparent 70%); border-radius: 50%; }
.final-cta-inner { text-align: center; position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.final-cta h2 { font-size: 50px; font-weight: 900; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 24px; }
.final-cta p { font-size: 19px; opacity: .9; margin-bottom: 40px; }
.final-cta .btn { background: white; color: var(--purple); font-size: 18px; padding: 20px 48px; }
.final-cta .btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.3); }
.final-meta { margin-top: 24px; font-size: 14px; opacity: .8; }
@media (max-width: 768px) { .final-cta h2 { font-size: 34px; } .final-cta p { font-size: 16px; } }

/* FOOTER */
.footer { background: var(--purple-dark); color: rgba(255,255,255,.7); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer h4 { color: white; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer p, .footer li { font-size: 14px; line-height: 1.8; list-style: none; }
.footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer a:hover { color: var(--purple-light); }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 40px; width: auto; display: block; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-icon { width: 40px; height: 40px; background: rgba(255,255,255,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: all .2s; text-decoration: none; }
.social-icon:hover { background: var(--purple); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 32px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* WHATSAPP WIDGET (atendente) */
.wa-widget { position: fixed; bottom: 24px; right: 24px; z-index: 99; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.wa-float { width: 64px; height: 64px; border-radius: 50%; border: 3px solid #fff; padding: 0; cursor: pointer; position: relative; background: #25D366; box-shadow: 0 8px 24px rgba(0,0,0,.22); transition: transform .2s; animation: waPulse 2.4s infinite; }
.wa-float:hover { transform: scale(1.07); }
.wa-float-photo { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
.wa-float-badge { position: absolute; top: -4px; right: -4px; min-width: 22px; height: 22px; background: #FF3B30; color: #fff; font-size: 12px; font-weight: 800; border-radius: 11px; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; padding: 0 5px; }
.wa-launcher { display: flex; align-items: center; gap: 12px; }
.wa-teaser { background: #fff; border: none; border-radius: 14px; padding: 10px 16px; box-shadow: 0 8px 24px rgba(12,12,54,.18); cursor: pointer; text-align: right; position: relative; max-width: 230px; font-family: inherit; animation: teaserIn .45s ease both; }
.wa-teaser:hover { box-shadow: 0 10px 28px rgba(12,12,54,.26); }
.wa-teaser::after { content: ''; position: absolute; right: -7px; top: 50%; transform: translateY(-50%); border-left: 8px solid #fff; border-top: 7px solid transparent; border-bottom: 7px solid transparent; }
.wa-teaser-title { display: block; font-size: 14px; font-weight: 800; color: var(--text); white-space: nowrap; }
.wa-teaser-sub { display: flex; align-items: center; justify-content: flex-end; gap: 5px; font-size: 12px; color: var(--text-gray); margin-top: 2px; }
.wa-teaser-sub i { width: 7px; height: 7px; background: #25D366; border-radius: 50%; display: inline-block; }
.wa-teaser.hidden { display: none; }
@keyframes teaserIn { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }
@media (max-width: 420px) { .wa-teaser { max-width: 180px; padding: 9px 12px; } .wa-teaser-title { font-size: 13px; } }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

.wa-card { width: 300px; max-width: calc(100vw - 48px); background: #fff; border-radius: 18px; box-shadow: 0 16px 50px rgba(12,12,54,.28); overflow: hidden; transform: translateY(16px) scale(.96); opacity: 0; pointer-events: none; transition: all .25s ease; }
.wa-card.open { transform: none; opacity: 1; pointer-events: auto; }
.wa-card-head { background: var(--gradient); padding: 16px; display: flex; align-items: center; gap: 12px; color: #fff; position: relative; }
.wa-card-avatar { position: relative; flex-shrink: 0; }
.wa-card-avatar img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.6); display: block; }
.wa-card-dot { position: absolute; bottom: 0; right: 0; width: 12px; height: 12px; background: #25D366; border: 2px solid #fff; border-radius: 50%; }
.wa-card-id strong { display: block; font-size: 14px; font-weight: 700; }
.wa-card-online { font-size: 12px; opacity: .92; display: inline-flex; align-items: center; gap: 5px; }
.wa-card-online::before { content: ''; width: 7px; height: 7px; background: #25D366; border-radius: 50%; }
.wa-card-close { position: absolute; top: 8px; right: 12px; background: transparent; border: none; color: #fff; font-size: 22px; line-height: 1; cursor: pointer; opacity: .85; }
.wa-card-close:hover { opacity: 1; }
.wa-card-bubble { margin: 16px; background: var(--bg); border: 1px solid var(--border); border-radius: 14px; border-top-left-radius: 4px; padding: 14px 16px; font-size: 14px; color: var(--text); line-height: 1.55; }
.wa-card-btn { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 16px 16px; background: #25D366; color: #fff; padding: 13px; border-radius: 12px; font-weight: 700; font-size: 15px; text-decoration: none; transition: background .2s; }
.wa-card-btn:hover { background: #1da851; }
@media (max-width: 768px) { .wa-widget { bottom: 18px; right: 18px; } }

/* MARKETPLACE — comprar marca */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit-card { background: white; border: 1px solid var(--border); border-radius: 18px; padding: 28px; transition: all .3s; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(185,130,249,.14); border-color: var(--purple-light); }
.benefit-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--gradient-soft); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; }
.benefit-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--text-gray); }
@media (max-width: 900px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .benefit-grid { grid-template-columns: 1fr; } }

.authority { background: var(--gradient-soft); border-radius: 28px; padding: 56px; display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; }
.authority-num { font-size: 84px; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.authority h2 { font-size: 32px; font-weight: 900; letter-spacing: -.5px; margin-bottom: 14px; }
.authority p { font-size: 17px; color: #3a3a55; margin-bottom: 12px; }
@media (max-width: 768px) { .authority { padding: 36px 24px; grid-template-columns: 1fr; gap: 20px; text-align: center; } .authority-num { font-size: 60px; } }

.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.path-card { border-radius: 22px; padding: 40px; border: 1px solid var(--border); }
.path-buy { background: var(--gradient); color: white; border: none; }
.path-sell { background: white; }
.path-card h3 { font-size: 26px; font-weight: 900; margin-bottom: 10px; letter-spacing: -.5px; }
.path-card p { font-size: 16px; margin-bottom: 24px; }
.path-buy p { color: rgba(255,255,255,.9); }
.path-sell p { color: var(--text-gray); }
.path-form .form-group label { color: inherit; }
.path-buy .form-group label { color: rgba(255,255,255,.95); }
.path-buy .form-group input, .path-buy .form-group select { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.12); color: white; }
.path-buy .form-group input::placeholder { color: rgba(255,255,255,.6); }
.path-buy .form-btn { background: var(--cream); color: var(--purple-dark); }
.path-buy .form-btn:hover { background: #f6e9d2; }
@media (max-width: 768px) { .paths-grid { grid-template-columns: 1fr; } .path-card { padding: 28px; } }

/* OBRIGADO (thank-you) */
.success-hero { background: var(--gradient); color: #fff; padding: 76px 0 64px; text-align: center; position: relative; overflow: hidden; }
.success-hero::before { content: ''; position: absolute; top: -40%; right: -15%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(240,221,192,.22) 0%, transparent 70%); border-radius: 50%; }
.success-hero .container { position: relative; z-index: 1; }
.success-check { width: 88px; height: 88px; border-radius: 50%; background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.45); display: flex; align-items: center; justify-content: center; font-size: 46px; font-weight: 700; margin: 0 auto 24px; animation: popcheck .5s ease; }
@keyframes popcheck { 0% { transform: scale(.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.success-hero h1 { font-size: 46px; font-weight: 900; letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 16px; }
.success-hero p { font-size: 19px; opacity: .92; max-width: 640px; margin: 0 auto 10px; }
.success-urgency { display: inline-block; margin-top: 20px; background: rgba(240,221,192,.18); border: 1px solid rgba(240,221,192,.45); color: var(--cream); padding: 11px 20px; border-radius: 100px; font-weight: 600; font-size: 15px; }
.ty-wa { margin-top: 30px; }
@media (max-width: 768px) { .success-hero h1 { font-size: 32px; } .success-hero p { font-size: 16px; } .success-check { width: 72px; height: 72px; font-size: 38px; } }

/* MID-CTA (botão no meio do artigo) */
.mid-cta { background: var(--gradient-soft); border: 1px solid var(--purple-light); border-left: 5px solid var(--purple); border-radius: 16px; padding: 28px 30px; margin: 40px 0; text-align: center; }
.mid-cta p { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 18px; }
.mid-cta .btn { font-size: 16px; }

/* CONSULTA BOX (captação no blog/artigos) */
.consulta-box { background: var(--gradient-soft); border: 1px solid var(--purple-light); border-radius: 20px; padding: 30px 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin: 48px 0; }
.consulta-box .section-label { margin-bottom: 12px; }
.consulta-box h3 { font-size: 23px; font-weight: 800; margin-bottom: 8px; letter-spacing: -.3px; line-height: 1.25; }
.consulta-box p { font-size: 15px; color: var(--text-gray); }
.consulta-form.lead-form { background: transparent; box-shadow: none; padding: 0; border-radius: 0; }
.consulta-form input { width: 100%; padding: 13px 15px; border: 2px solid var(--border); border-radius: 10px; font-size: 15px; font-family: inherit; margin-bottom: 10px; background: #fff; transition: border-color .2s; }
.consulta-form input:focus { outline: none; border-color: var(--purple); }
.consulta-form .form-btn { margin-top: 4px; }
@media (max-width: 768px) { .consulta-box { grid-template-columns: 1fr; gap: 18px; padding: 24px; } }

/* PAGE HEADER (cidade / artigo / blog) */
.page-hero { background: var(--gradient); color: white; padding: 64px 0 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -40%; right: -15%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(175,64,255,.3) 0%, transparent 70%); border-radius: 50%; }
.page-hero .hero-grid { grid-template-columns: 1.2fr 1fr; }
.breadcrumb { font-size: 13px; opacity: .8; margin-bottom: 16px; }
.breadcrumb a { color: white; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { font-size: 40px; font-weight: 900; line-height: 1.15; letter-spacing: -1px; margin-bottom: 16px; }
@media (max-width: 900px) { .page-hero .hero-grid { grid-template-columns: 1fr; } .page-hero h1 { font-size: 30px; } }

/* LOCAL CONTENT */
.local-content { padding: 80px 0; }
.local-content .container { max-width: 820px; }
.local-content h2 { font-size: 28px; font-weight: 800; margin: 40px 0 16px; letter-spacing: -.5px; }
.local-content p { font-size: 17px; color: #334155; margin-bottom: 18px; }
.local-content ul { margin: 0 0 18px 24px; color: #334155; font-size: 17px; }
.local-content li { margin-bottom: 8px; }

/* CITY GRID (index) */
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.city-grid a { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 16px; text-decoration: none; font-weight: 600; font-size: 14px; transition: all .2s; display: flex; justify-content: space-between; align-items: center; }
.city-grid a:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }
.city-grid a span { font-size: 12px; color: var(--text-gray); font-weight: 700; }
.region-label { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--purple); margin: 36px 0 16px; }
@media (max-width: 768px) { .city-grid { grid-template-columns: repeat(2, 1fr); } }

/* ARTICLE */
.article-body { max-width: 760px; margin: 0 auto; padding: 56px 24px 0; }
.article-body p { font-size: 18px; color: #334155; margin-bottom: 22px; line-height: 1.75; }
.article-body h2 { font-size: 28px; font-weight: 800; margin: 40px 0 16px; letter-spacing: -.5px; }
.article-body ul { margin: 0 0 22px 24px; color: #334155; font-size: 18px; }
.article-body li { margin-bottom: 10px; }
.article-meta { font-size: 14px; color: var(--text-gray); margin-bottom: 8px; }
.article-cta { background: var(--gradient-soft); border: 1px solid var(--purple-light); border-radius: 20px; padding: 32px; margin: 48px 0; text-align: center; }
.article-cta h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.article-cta p { font-size: 15px; color: var(--text-gray); margin-bottom: 20px; }

/* BLOG / RELATED CARDS */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 28px; text-decoration: none; color: inherit; transition: all .3s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(91,66,243,.1); border-color: var(--purple-light); }
.post-tag { display: inline-block; background: var(--gradient-soft); color: var(--purple); font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 100px; letter-spacing: .5px; margin-bottom: 14px; align-self: flex-start; }
.post-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; line-height: 1.3; }
.post-card p { font-size: 14px; color: var(--text-gray); flex: 1; }
.post-card .read { color: var(--purple); font-weight: 700; font-size: 14px; margin-top: 16px; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr; } }
