:root {
  /* Conecta brand */
  --conecta-blue: #004591;
  --conecta-blue-digital: #18478c;
  --conecta-blue-dark: #002d61;
  --conecta-blue-light: #0066cc;
  --conecta-red: #eb0028;
  --conecta-blue-50: #e8f0fa;
  --conecta-blue-100: #c5d9f2;
  --ink: #0b1f33;
  --ink-muted: #4a5f78;
  --surface: #ffffff;
  --surface-soft: #f4f7fc;
  --border: #c5d9f2;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 69, 145, 0.12);
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 6.5rem; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: var(--conecta-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Brand badge — área de proteção, sem distorção (manual de marca) */
.brand-icon {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.brand-icon--sm {
  width: 28px;
}

/* Notice */
.conecta-notice {
  background: var(--conecta-blue-50);
  border-bottom: 1px solid var(--conecta-blue-100);
  color: var(--conecta-blue-dark);
  font-size: 0.82rem;
}

.conecta-notice__inner p {
  margin: 0;
  padding: 0.55rem 0;
  line-height: 1.45;
}

.conecta-notice a {
  color: var(--conecta-blue);
  font-weight: 700;
  text-decoration: underline;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.site-brand__logo {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.site-brand__partner {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink-muted);
  max-width: 11rem;
}

.site-header__cobrand {
  display: none;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--conecta-blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  color: var(--ink-muted);
  text-decoration: none;
}

.site-nav a:hover { color: var(--conecta-blue); }

.site-nav a.btn-primary,
.site-nav a.btn-primary:hover,
.site-header__cta-mobile.btn-primary,
.site-header__cta-mobile.btn-primary:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--conecta-blue);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 69, 145, 0.28);
}

.btn-primary:hover {
  background: var(--conecta-blue-digital);
  box-shadow: 0 12px 28px rgba(0, 69, 145, 0.34);
}

.btn-outline {
  background: #fff;
  color: var(--conecta-blue);
  border: 2px solid var(--border);
}

.btn-outline--light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline--light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
}

.btn-block { width: 100%; }

@media (min-width: 900px) {
  .site-nav { display: flex; }
  .site-header__cta-mobile { display: none; }
  .site-header__cobrand { display: inline-flex; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--conecta-blue-dark) 0%, var(--conecta-blue) 48%, var(--conecta-blue-digital) 100%);
  color: #fff;
  padding: 4rem 0 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.12), transparent 42%),
    radial-gradient(circle at 10% 90%, rgba(235, 0, 40, 0.16), transparent 35%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--conecta-red);
  box-shadow: 0 0 0 4px rgba(235, 0, 40, 0.25);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  opacity: 0.92;
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  opacity: 0.88;
}

.hero__trust strong {
  display: block;
  font-size: 1.15rem;
  opacity: 1;
}

.lead-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.lead-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.lead-card p {
  margin: 0 0 1.25rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.lead-form .field {
  margin-bottom: 0.85rem;
}

.lead-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-muted);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fff;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(0, 69, 145, 0.25);
  border-color: var(--conecta-blue);
}

.lead-form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-msg {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
}

.form-msg.ok { color: #047857; display: block; }
.form-msg.err { color: #b91c1c; display: block; }

@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section--soft { background: var(--surface-soft); }

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--conecta-blue);
  margin-bottom: 0.5rem;
}

.section__head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}

.section__head p {
  margin: 0;
  color: var(--ink-muted);
}

.about-grid {
  display: grid;
  gap: 1.5rem;
}

.about-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.about-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.about-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* Conecta brand badge */
.brand-cobrand {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.brand-cobrand__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

.brand-cobrand__product {
  margin: 0.15rem 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--conecta-blue);
}

.brand-cobrand__legal {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.partner-disclosure {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
}

.partner-disclosure h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.partner-disclosure__list {
  margin: 0 0 0.85rem;
  padding-left: 1.1rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.partner-disclosure__list li { margin-bottom: 0.35rem; }

.partner-disclosure__note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.plans {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.plans-loading {
  grid-column: 1 / -1;
  margin: 0;
}

.plan-card__price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--conecta-blue);
  margin: 0 0 0.75rem;
}

.plan-card__price small {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-left: 0.25rem;
}

.plan-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.plan-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.plan-card--featured {
  border-color: var(--conecta-blue);
  box-shadow: 0 0 0 1px var(--conecta-blue), var(--shadow);
}

.plan-card__tag {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--conecta-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  color: var(--ink-muted);
  font-weight: 700;
}

.plan-card__speed {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--conecta-blue);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.plan-card__speed small {
  font-size: 1rem;
  font-weight: 700;
}

.plan-card ul {
  margin: 1rem 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.plan-card li { margin-bottom: 0.35rem; }

.services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.service-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--conecta-blue-50);
  color: var(--conecta-blue);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.service-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--conecta-blue);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.step h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.step p { margin: 0; color: var(--ink-muted); font-size: 0.92rem; }

.cta-band {
  background: linear-gradient(135deg, var(--conecta-blue-dark), var(--conecta-blue));
  color: #fff;
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-band p { margin: 0; opacity: 0.9; }

.cta-band__wa { margin-top: 1rem; }

.lead-card--inverted {
  box-shadow: none;
  background: #fff;
  color: var(--ink);
}

.lead-card__compact-title {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.conecta-note {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: var(--conecta-blue-50);
  border: 1px solid var(--conecta-blue-100);
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.conecta-note strong {
  color: var(--conecta-blue-dark);
}

.footer-logo {
  display: block;
  margin: 0 0 1rem;
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-lead {
  margin: 0;
  max-width: 28rem;
  line-height: 1.55;
  color: #94a3b8;
}

.footer-cobrand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: #94a3b8;
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .plans { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1400px) {
  .plans { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
  .cta-band { grid-template-columns: 1fr 1fr; }
}

/* Footer */
.site-footer {
  background: var(--conecta-blue-dark);
  color: #cbd5e1;
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li { margin-bottom: 0.4rem; }

.footer-grid a { color: #94a3b8; text-decoration: none; }
.footer-grid a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #64748b;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* Hero offer + city context */
.hero__offer {
  margin: 1rem 0 0;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.hero__city-note {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  opacity: 0.92;
  max-width: 36rem;
}

/* FAQ */
.faq-list { display: grid; gap: 0.65rem; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}

.faq-item p { margin: 0.65rem 0 0; color: var(--ink-muted); }

.faq-more { margin-top: 1rem; font-size: 0.92rem; }

/* City footer links */
.city-links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.city-links__title {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.city-links__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.city-links__col h4 {
  margin: 0 0 0.5rem;
  color: #cbd5e1;
  font-size: 0.8rem;
}

.city-links__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.city-links__col li { margin-bottom: 0.35rem; }

.city-links__col a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
}

.city-links__col a:hover { color: #fff; }

/* Static SEO plans fallback */
.plans-static-seo {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

#plans-static-fallback { display: contents; }

/* Content pages */
.content-page {
  padding: 2.5rem 0 3rem;
  background: var(--surface-soft);
}

.content-page__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .content-page__grid { grid-template-columns: 1fr 320px; }
}

.content-article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.content-article h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--conecta-blue-dark);
}

.content-article h2 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.15rem;
  color: var(--conecta-blue);
}

.content-lead { font-size: 1.08rem; }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

.content-steps { padding-left: 1.2rem; line-height: 1.7; }

.content-checklist {
  padding-left: 1.2rem;
  line-height: 1.7;
}

.content-table-wrap { overflow-x: auto; }

.content-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.content-table th,
.content-table td {
  border: 1px solid var(--border);
  padding: 0.6rem 0.75rem;
  text-align: left;
}

.content-table th { background: var(--conecta-blue-50); }

.content-aside { position: sticky; top: 5.5rem; }

.content-aside .btn-block { margin-top: 0.65rem; }

body.modal-open { overflow: hidden; }

.address-modal[hidden] { display: none; }

.address-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.address-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 51, 0.62);
}

.address-modal__panel {
  position: relative;
  width: min(100%, 640px);
  max-height: min(92vh, 760px);
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 45, 97, 0.28);
  padding: clamp(1.2rem, 3vw, 1.75rem);
}

.address-modal__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--conecta-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.address-modal h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.2;
}

.address-modal__lead {
  margin: 0.55rem 0 1rem;
  color: var(--ink-muted);
}

.address-grid {
  display: grid;
  gap: 0.85rem;
}

.address-grid input[readonly] {
  background: var(--surface-soft);
  color: var(--ink-muted);
}

.address-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1rem;
}

.address-modal.is-loading .address-modal__eyebrow,
.address-modal.is-loading h2,
.address-modal.is-loading .address-modal__lead,
.address-modal.is-loading .address-grid,
.address-modal.is-loading .form-msg,
.address-modal.is-loading .address-modal__actions {
  display: none;
}

.address-modal__loading[hidden] { display: none; }

.address-modal__loading {
  min-height: 21rem;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.95rem;
  text-align: center;
}

.address-modal__loading-logo {
  width: 132px;
  height: auto;
  animation: conecta-loading-pulse 2.4s ease-in-out infinite;
}

.address-modal__loading strong {
  color: var(--ink);
  font-size: 1.35rem;
}

.address-modal__loading span {
  max-width: 25rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

@keyframes conecta-loading-pulse {
  0%, 100% {
    filter: hue-rotate(0deg) saturate(1);
    opacity: 0.78;
    transform: scale(0.98);
  }
  50% {
    filter: hue-rotate(38deg) saturate(1.35);
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (min-width: 640px) {
  .address-grid { grid-template-columns: repeat(2, 1fr); }
  .address-grid__wide { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .site-brand__partner { display: none; }
  .conecta-notice { font-size: 0.76rem; }
  .content-aside { position: static; }
}

@media (max-width: 959px) {
  .hero__grid > div:first-child {
    display: none;
  }

  .hero {
    padding-top: 1.5rem;
  }
}


.mobile-proof-strip,
.mobile-conversion-bar {
  display: none;
}

@media (max-width: 959px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .site-header__inner {
    padding: 0.55rem 0;
  }

  .site-header__cta-mobile {
    padding: 0.62rem 0.9rem;
    font-size: 0.86rem;
  }

  .hero {
    padding: 1rem 0 1.35rem;
  }

  .hero__grid {
    gap: 1rem;
  }

  .lead-card {
    border-radius: 12px;
    padding: 1.1rem;
    box-shadow: 0 12px 34px rgba(0, 69, 145, 0.18);
  }

  .lead-card h2 {
    font-size: 1.15rem;
    line-height: 1.2;
  }

  .lead-card p {
    margin-bottom: 0.85rem;
    font-size: 0.88rem;
  }

  .mobile-proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0 0 0.85rem;
  }

  .mobile-proof-strip span {
    flex: 1 1 auto;
    min-width: max-content;
    text-align: center;
    padding: 0.38rem 0.5rem;
    border-radius: 999px;
    background: var(--conecta-blue-50);
    color: var(--conecta-blue-dark);
    border: 1px solid var(--conecta-blue-100);
    font-size: 0.72rem;
    font-weight: 800;
  }

  .lead-form .field {
    margin-bottom: 0.65rem;
  }

  .lead-form input,
  .lead-form select {
    min-height: 46px;
    font-size: 16px;
  }

  .lead-form button[type="submit"] {
    min-height: 50px;
    font-size: 1rem;
    box-shadow: 0 10px 24px rgba(0, 69, 145, 0.32);
  }

  .mobile-conversion-bar {
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.55rem;
    padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--border);
    box-shadow: 0 -10px 28px rgba(11, 31, 51, 0.16);
    backdrop-filter: blur(12px);
  }

  .mobile-conversion-bar a {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .mobile-conversion-bar__wa {
    background: #18b957;
    color: #fff;
    box-shadow: 0 10px 24px rgba(24, 185, 87, 0.34);
    font-size: 1rem;
  }

  .mobile-conversion-bar__wa::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-right: 0.48rem;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(255,255,255,0.2);
  }

  .mobile-conversion-bar__form {
    background: var(--conecta-blue-50);
    color: var(--conecta-blue-dark);
    padding: 0 0.95rem;
    font-size: 0.88rem;
    border: 1px solid var(--conecta-blue-100);
  }

  .mobile-conversion-bar a:hover {
    transform: none;
  }
}


.desktop-conversion-panel {
  display: none;
}

.lead-card__conversion-note {
  margin: 0.75rem 0 0;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

@media (min-width: 768px) and (max-width: 959px) {
  .hero__grid > div:first-child {
    display: block;
  }

  .hero {
    padding: 2.4rem 0 2.8rem;
  }

  .hero__grid {
    gap: 1.5rem;
  }

  .hero h1 {
    max-width: 46rem;
    font-size: 2.35rem;
  }

  .hero__actions .btn-wa {
    min-width: 220px;
    background: #18b957;
  }

  .lead-card {
    max-width: 680px;
    margin-inline: auto;
  }
}

@media (min-width: 960px) {
  .hero {
    padding-bottom: 4.2rem;
  }

  .hero__actions .btn-wa {
    min-width: 190px;
    background: #18b957;
    box-shadow: 0 12px 30px rgba(24, 185, 87, 0.34);
  }

  .hero__actions .btn-wa::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(255,255,255,0.18);
  }

  .lead-card {
    border: 1px solid rgba(255,255,255,0.35);
  }

  .lead-card .btn-primary {
    min-height: 50px;
    font-size: 0.98rem;
  }

  .desktop-conversion-panel {
    position: fixed;
    z-index: 999;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 218px;
    display: grid;
    gap: 0.65rem;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.97);
    border: 1px solid var(--border);
    box-shadow: 0 16px 44px rgba(11, 31, 51, 0.18);
    color: var(--ink);
    backdrop-filter: blur(10px);
  }

  .desktop-conversion-panel strong {
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .desktop-conversion-panel span {
    color: var(--ink-muted);
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .desktop-conversion-panel a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 850;
    font-size: 0.86rem;
  }

  .desktop-conversion-panel__wa {
    background: #18b957;
    color: #fff;
    box-shadow: 0 9px 22px rgba(24, 185, 87, 0.3);
  }

  .desktop-conversion-panel__form {
    background: var(--conecta-blue-50);
    color: var(--conecta-blue-dark);
    border: 1px solid var(--conecta-blue-100);
  }
}

@media (min-width: 960px) and (max-width: 1260px) {
  .desktop-conversion-panel {
    top: auto;
    bottom: 1rem;
    transform: none;
  }
}

@media (min-width: 1261px) {
  .desktop-conversion-panel {
    right: max(1rem, calc((100vw - var(--max)) / 2 - 248px));
  }
}

@media (max-width: 767px) {
  .hero-wa-mobile-after-form {
    display: none !important;
  }
}

.mobile-conversion-bar__wa,
.desktop-conversion-panel__wa,
.hero__actions .btn-wa {
  gap: 0.5rem;
}

.mobile-conversion-bar__wa::before,
.desktop-conversion-panel__wa::before,
.hero__actions .btn-wa::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 0;
  border-radius: 0;
  background-color: currentColor;
  box-shadow: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=http://www.w3.org/2000/svg viewBox=0 0 24 24%3E%3Cpath d=M20.52 3.48A11.86 11.86 0 0 0 12.08 0C5.5 0 .14 5.35.14 11.93c0 2.1.55 4.16 1.6 5.97L0 24l6.25-1.64a11.94 11.94 0 0 0 5.83 1.49h.01c6.58 0 11.93-5.35 11.93-11.93 0-3.19-1.24-6.18-3.5-8.44ZM12.09 21.84h-.01a9.9 9.9 0 0 1-5.05-1.38l-.36-.21-3.71.97.99-3.62-.23-.37a9.86 9.86 0 0 1-1.51-5.3c0-5.47 4.45-9.92 9.93-9.92 2.65 0 5.14 1.03 7.01 2.9a9.86 9.86 0 0 1 2.91 7.01c0 5.47-4.45 9.92-9.97 9.92Zm5.45-7.43c-.3-.15-1.77-.87-2.04-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.22-.65.08-.3-.15-1.26-.46-2.4-1.48-.89-.79-1.49-1.77-1.66-2.07-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.61-.92-2.2-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48s1.07 2.88 1.22 3.08c.15.2 2.1 3.21 5.08 4.5.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.09 1.77-.72 2.02-1.42.25-.7.25-1.3.17-1.42-.07-.13-.27-.2-.57-.35Z/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns=http://www.w3.org/2000/svg viewBox=0 0 24 24%3E%3Cpath d=M20.52 3.48A11.86 11.86 0 0 0 12.08 0C5.5 0 .14 5.35.14 11.93c0 2.1.55 4.16 1.6 5.97L0 24l6.25-1.64a11.94 11.94 0 0 0 5.83 1.49h.01c6.58 0 11.93-5.35 11.93-11.93 0-3.19-1.24-6.18-3.5-8.44ZM12.09 21.84h-.01a9.9 9.9 0 0 1-5.05-1.38l-.36-.21-3.71.97.99-3.62-.23-.37a9.86 9.86 0 0 1-1.51-5.3c0-5.47 4.45-9.92 9.93-9.92 2.65 0 5.14 1.03 7.01 2.9a9.86 9.86 0 0 1 2.91 7.01c0 5.47-4.45 9.92-9.97 9.92Zm5.45-7.43c-.3-.15-1.77-.87-2.04-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.22-.65.08-.3-.15-1.26-.46-2.4-1.48-.89-.79-1.49-1.77-1.66-2.07-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.61-.92-2.2-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48s1.07 2.88 1.22 3.08c.15.2 2.1 3.21 5.08 4.5.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.09 1.77-.72 2.02-1.42.25-.7.25-1.3.17-1.42-.07-.13-.27-.2-.57-.35Z/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 767px) {
  .mobile-conversion-bar {
    grid-template-columns: auto 1fr;
  }
}

.mobile-conversion-bar__wa::before,
.desktop-conversion-panel__wa::before,
.hero__actions .btn-wa::before {
  content: "" !important;
  width: 19px !important;
  height: 19px !important;
  flex: 0 0 19px !important;
  display: inline-block !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=http://www.w3.org/2000/svg viewBox=0 0 32 32%3E%3Cpath fill=%23fff d=M16.04 2.67c-7.33 0-13.29 5.96-13.29 13.29 0 2.34.61 4.63 1.78 6.65L2.67 29.33l6.87-1.8a13.23 13.23 0 0 0 6.49 1.65h.01c7.33 0 13.29-5.96 13.29-13.29 0-3.55-1.38-6.89-3.9-9.4a13.18 13.18 0 0 0-9.39-3.82Zm0 24.25h-.01a11.04 11.04 0 0 1-5.62-1.54l-.4-.24-4.08 1.07 1.09-3.98-.26-.41a11.02 11.02 0 0 1-1.69-5.86c0-6.05 4.92-10.98 10.98-10.98 2.93 0 5.69 1.14 7.76 3.22a10.9 10.9 0 0 1 3.22 7.7c0 6.06-4.93 11.02-10.99 11.02Zm6.02-8.24c-.33-.17-1.95-.96-2.25-1.07-.3-.11-.52-.17-.74.17-.22.33-.85 1.07-1.04 1.29-.19.22-.39.25-.72.08-.33-.17-1.39-.51-2.65-1.63-.98-.87-1.64-1.95-1.83-2.28-.19-.33-.02-.51.14-.67.15-.15.33-.39.5-.58.17-.19.22-.33.33-.55.11-.22.06-.41-.03-.58-.08-.17-.74-1.78-1.01-2.44-.27-.64-.54-.55-.74-.56h-.63c-.22 0-.58.08-.88.41-.3.33-1.15 1.13-1.15 2.75s1.18 3.18 1.35 3.4c.17.22 2.32 3.54 5.62 4.96.79.34 1.4.54 1.88.69.79.25 1.51.22 2.08.13.63-.09 1.95-.8 2.22-1.57.27-.77.27-1.43.19-1.57-.08-.14-.3-.22-.63-.39Z/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  box-shadow: none !important;
  -webkit-mask: none !important;
  mask: none !important;
}

.mobile-conversion-bar__wa::before,
.desktop-conversion-panel__wa::before,
.hero__actions .btn-wa::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%2032%2032%22%3E%3Cpath%20fill=%22%23fff%22%20d=%22M16.04%202.67c-7.33%200-13.29%205.96-13.29%2013.29%200%202.34.61%204.63%201.78%206.65L2.67%2029.33l6.87-1.8a13.23%2013.23%200%200%200%206.49%201.65h.01c7.33%200%2013.29-5.96%2013.29-13.29%200-3.55-1.38-6.89-3.9-9.4a13.18%2013.18%200%200%200-9.39-3.82Zm0%2024.25h-.01a11.04%2011.04%200%200%201-5.62-1.54l-.4-.24-4.08%201.07%201.09-3.98-.26-.41a11.02%2011.02%200%200%201-1.69-5.86c0-6.05%204.92-10.98%2010.98-10.98%202.93%200%205.69%201.14%207.76%203.22a10.9%2010.9%200%200%201%203.22%207.7c0%206.06-4.93%2011.02-10.99%2011.02Zm6.02-8.24c-.33-.17-1.95-.96-2.25-1.07-.3-.11-.52-.17-.74.17-.22.33-.85%201.07-1.04%201.29-.19.22-.39.25-.72.08-.33-.17-1.39-.51-2.65-1.63-.98-.87-1.64-1.95-1.83-2.28-.19-.33-.02-.51.14-.67.15-.15.33-.39.5-.58.17-.19.22-.33.33-.55.11-.22.06-.41-.03-.58-.08-.17-.74-1.78-1.01-2.44-.27-.64-.54-.55-.74-.56h-.63c-.22%200-.58.08-.88.41-.3.33-1.15%201.13-1.15%202.75s1.18%203.18%201.35%203.4c.17.22%202.32%203.54%205.62%204.96.79.34%201.4.54%201.88.69.79.25%201.51.22%202.08.13.63-.09%201.95-.8%202.22-1.57.27-.77.27-1.43.19-1.57-.08-.14-.3-.22-.63-.39Z%22/%3E%3C/svg%3E") !important;
}

.lead-card__campaign-offer {
  display: grid;
  gap: 0.25rem;
  margin: 0 0 1rem;
  padding: 0.85rem 0.9rem;
  border-radius: 10px;
  background: #f0fff6;
  border: 1px solid rgba(24, 185, 87, 0.26);
  color: var(--ink);
}

.lead-card__campaign-offer span {
  color: #0b7a3a;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lead-card__campaign-offer strong {
  color: #063f20;
  font-size: 1rem;
  line-height: 1.25;
}

.lead-card__campaign-offer small,
.field-hint,
.lead-card__trust-note {
  color: var(--ink-muted);
  line-height: 1.35;
}

.field-hint {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.75rem;
}

.lead-card__trust-note {
  margin: 0.7rem 0 0.8rem;
  font-size: 0.78rem;
}

@media (max-width: 767px) {
  .mobile-conversion-bar__form {
    min-width: 116px;
  }
}

@media (max-width: 767px) {
  .lead-card {
    padding: 1rem;
  }

  .lead-card__campaign-offer {
    margin-bottom: 0.75rem;
    padding: 0.7rem 0.75rem;
    gap: 0.15rem;
  }

  .lead-card__campaign-offer span {
    font-size: 0.66rem;
  }

  .lead-card__campaign-offer strong {
    font-size: 0.92rem;
  }

  .lead-card > h2,
  .lead-card > p[data-site-text="lead_subtitle"],
  .lead-card .mobile-proof-strip,
  .lead-card__trust-note,
  .lead-card__conversion-note,
  .field-plano {
    display: none !important;
  }

  .lead-form .field {
    margin-bottom: 0.48rem;
  }

  .lead-form label {
    margin-bottom: 0.22rem;
    font-size: 0.78rem;
  }

  .lead-form input,
  .lead-form select {
    min-height: 42px;
    padding: 0.58rem 0.72rem;
  }

  .field-hint {
    display: none;
  }

  .lead-form button[type="submit"] {
    min-height: 46px;
    margin-top: 0.25rem;
  }
}

.lead-card > h2,
.lead-card > p[data-site-text="lead_subtitle"],
.lead-card__trust-note {
  display: none !important;
}

.section--compact.privacy-note {
  padding: 1.25rem 0;
  background: #f8fafc;
}

.privacy-note p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 767px) {
  #sobre {
    display: none !important;
  }
}

.lead-card--attention {
  animation: leadCardAttention 1.45s ease;
}

.btn--attention {
  animation: leadButtonAttention 1.45s ease;
}

@keyframes leadCardAttention {
  0% { box-shadow: 0 0 0 0 rgba(24, 185, 87, 0); transform: translateY(0); }
  18% { box-shadow: 0 0 0 5px rgba(24, 185, 87, 0.24), 0 18px 44px rgba(11, 31, 51, 0.2); transform: translateY(-2px); }
  100% { box-shadow: inherit; transform: translateY(0); }
}

@keyframes leadButtonAttention {
  0%, 100% { transform: scale(1); }
  35% { transform: scale(1.035); }
  65% { transform: scale(1.015); }
}

@media (prefers-reduced-motion: reduce) {
  .lead-card--attention,
  .btn--attention {
    animation: none;
  }

  .lead-card--attention {
    outline: 3px solid rgba(24, 185, 87, 0.42);
    outline-offset: 3px;
  }
}

.lead-submit-cue {
  display: none;
  margin: 0.55rem 0 0.45rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  background: #fff7d6;
  border: 1px solid #f0c94a;
  color: #5f4500;
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}

.lead-submit-cue--show {
  display: block;
  animation: submitCueAttention 2.45s ease both;
}

.btn--send-attention {
  position: relative;
  z-index: 1;
  animation: sendButtonAttention 1.15s ease-in-out 2 !important;
  box-shadow: 0 0 0 5px rgba(24, 185, 87, 0.28), 0 14px 34px rgba(24, 185, 87, 0.42) !important;
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: 2px;
}

@keyframes sendButtonAttention {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  18% { transform: scale(1.055); filter: brightness(1.08); }
  36% { transform: scale(0.985); }
  54% { transform: scale(1.045); filter: brightness(1.1); }
  72% { transform: scale(1.01); }
}

@keyframes submitCueAttention {
  0% { opacity: 0; transform: translateY(6px); }
  12%, 82% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-3px); }
}

@media (max-width: 767px) {
  .lead-submit-cue {
    margin-top: 0.35rem;
    font-size: 0.78rem;
    padding: 0.48rem 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn--send-attention,
  .lead-submit-cue--show {
    animation: none !important;
  }

  .btn--send-attention {
    outline: 4px solid rgba(24, 185, 87, 0.65);
  }
}

.btn--send-attention {
  background: #18b957 !important;
  color: #ffffff !important;
  border: 3px solid #ffe45c !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.btn--send-attention::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 3px solid rgba(255, 228, 92, 0.95);
  border-radius: inherit;
  animation: sendButtonRing 1s ease-out 3;
  pointer-events: none;
}

@keyframes sendButtonRing {
  0% { opacity: 0.95; transform: scale(0.98); }
  100% { opacity: 0; transform: scale(1.12); }
}

@media (max-width: 767px) {
  .lead-card .field-plano {
    display: block !important;
  }
}
