/* =========================================================
   Dental Uni — Representante Autorizado
   Paleta extraída do site oficial (planosdentaluni.com.br)
   ========================================================= */
:root {
  --primary: #af0f2a;
  --primary-dark: #740316;
  --primary-light: #bf3f55;
  --teal: #37b09e;
  --teal-dark: #2c8d7e;
  --teal-bg: #eff9f7;
  --primary-soft: #f8e2e6;
  --orange: #fea52d;
  --dark: #343a40;
  --gray: #495057;
  --gray-light: #868e96;
  --border: #ced4da;
  --bg-soft: #f8f9fa;
  --white: #fff;
  --whatsapp: #25d366;

  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --radius: 10px;
  --shadow: 0 4px 18px rgba(52, 58, 64, 0.08);
  --shadow-hover: 0 8px 26px rgba(175, 15, 42, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); }
.section-teal { background: var(--teal-bg); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-bg);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--gray-light);
  max-width: 640px;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--primary); color: var(--white); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-hover); }

.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }

.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: #1ea952; }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--dark);
  color: #d9dcdf;
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar .topbar-item { display: inline-flex; align-items: center; gap: 6px; margin-right: 18px; }
.topbar .topbar-item:last-child { margin-right: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img { height: 46px; }

.main-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.main-nav a:hover { color: var(--primary); border-color: var(--primary); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; }
.nav-dropdown-toggle i { font-size: 0.65rem; color: var(--gray-light); transition: transform 0.15s; }
.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i { transform: rotate(180deg); }

.main-nav .nav-dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-hover);
  padding: 8px;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 6px;
  border-bottom: none;
}
.nav-dropdown-menu a:hover { background: var(--bg-soft); color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gray);
  text-align: right;
}
.header-phone strong { color: var(--primary); font-size: 1rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--dark); border-radius: 3px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 64px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--orange); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 30px; max-width: 520px; }
.hero p a { color: var(--white); text-decoration: underline; font-weight: 700; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--orange);
}
.hero-stats div span { font-size: 0.82rem; color: rgba(255,255,255,0.85); }

/* Hero promo card - Plano Essencial */
.hero-promo {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  color: var(--white);
}
.hero-promo-eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.hero-promo-name { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.hero-promo-price-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 2px; }
.hero-promo-price { display: flex; align-items: baseline; gap: 6px; }
.hero-promo-price .currency { font-size: 1.2rem; font-weight: 600; }
.hero-promo-price .value { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; line-height: 1; }
.hero-promo-price .per { font-size: 1rem; color: rgba(255,255,255,0.75); }
.hero-promo-sub { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 26px; }
.hero-promo-features { margin-bottom: 28px; }
.hero-promo-features li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 0.95rem; }
.hero-promo-features li .check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.btn-dark { background: var(--white); color: var(--primary); }
.btn-dark:hover { background: var(--bg-soft); }

/* Formulários (reutilizado na seção de contato) */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.15s;
}
.form-control:focus { outline: none; border-color: var(--teal); }
textarea.form-control { resize: vertical; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 30px 0;
  text-align: center;
}
.trust-grid div strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
}
.trust-grid div span { font-size: 0.82rem; color: var(--gray-light); }

/* ---------- Plans ---------- */
.plan-nudge {
  position: relative;
  max-width: 460px;
  margin: 0 auto 6px;
  text-align: center;
}
.plan-nudge-text {
  color: var(--gray-light);
  font-size: 1rem;
}
.plan-nudge-text strong { color: var(--primary); }
.plan-nudge-arrow {
  width: 60px;
  height: 46px;
  color: var(--primary);
  display: block;
  margin: 4px auto -6px 62%;
}

.plan-toggle {
  display: flex;
  justify-content: center;
  gap: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 40px;
}
.plan-toggle .toggle-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray);
  background: transparent;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.plan-toggle .toggle-btn small { display: block; font-weight: 400; font-size: 0.72rem; opacity: 0.8; }
.plan-toggle .toggle-btn.active { background: var(--primary); color: var(--white); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.plan-card.featured { border: 2px solid var(--teal); }
.plan-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.plan-name { font-size: 1.3rem; font-weight: 700; text-align: center; margin-bottom: 18px; }

.plan-price-group { text-align: center; display: none; }
.plan-price-group[data-group="individual"] { display: block; }
.plans-grid.mode-familiar .plan-price-group[data-group="individual"] { display: none; }
.plans-grid.mode-familiar .plan-price-group[data-group="familiar"] { display: block; }

.plan-price-label { font-size: 0.85rem; color: var(--gray-light); }
.plan-price { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: var(--teal-dark); line-height: 1.1; }
.plan-price .currency { font-size: 1.1rem; font-weight: 600; }
.plan-price .per { font-size: 0.95rem; font-weight: 600; color: var(--gray-light); }
.plan-price-sub { font-size: 0.8rem; color: var(--gray-light); margin-bottom: 8px; }
.plan-price-or { font-size: 0.8rem; color: var(--gray-light); margin-bottom: 4px; }
.plan-price-pix { font-weight: 700; color: var(--dark); font-size: 0.95rem; }
.plan-fee-note { text-align: center; font-size: 0.72rem; color: var(--gray-light); margin-bottom: 20px; }

.plan-card .btn { margin-bottom: 22px; }

.plan-features { margin-bottom: 12px; flex-grow: 1; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  margin-bottom: 12px;
  color: var(--gray);
}
.plan-features li i { color: var(--teal); margin-top: 3px; }
.plan-more-link {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  text-decoration: underline;
}

/* ---------- Compare coverage table ---------- */
.compare-subtitle { text-align: center; color: var(--primary); font-weight: 700; margin-bottom: 34px; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 640px; }
.compare-table th, .compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.compare-table th { text-align: center; }
.compare-table th:first-child { text-align: left; }
.compare-table thead th {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.compare-table td.proc-name { font-weight: 600; color: var(--dark); }
.compare-table td.yes, .compare-table td.no { text-align: center; }
.compare-table td.yes i { color: var(--teal); font-size: 1.1rem; }
.compare-table td.no i { color: var(--primary); font-size: 1.1rem; }
.compare-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-cta { margin-top: 24px; color: var(--gray); }
.compare-cta a { color: var(--primary); font-weight: 700; text-decoration: underline; }

/* ---------- Benefits ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: left;
}
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.benefit-card p { font-size: 0.9rem; color: var(--gray-light); }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.blog-card-meta { font-size: 0.8rem; color: var(--gray-light); margin-bottom: 10px; }
.blog-card h2 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card p { font-size: 0.9rem; color: var(--gray-light); margin-bottom: 16px; }
.blog-card-link { font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; color: var(--primary); }

.blog-breadcrumb { font-size: 0.85rem; color: var(--gray-light); margin-bottom: 16px; }
.blog-breadcrumb a { color: var(--primary); font-weight: 600; }
.blog-breadcrumb i { font-size: 0.7rem; margin: 0 6px; }

.blog-post-meta { color: var(--gray-light); font-size: 0.9rem; margin-bottom: 30px; }

.blog-cta-box {
  background: var(--teal-bg);
  border-radius: var(--radius);
  padding: 26px;
  margin: 34px 0;
  text-align: center;
}
.blog-cta-box p { color: var(--dark); }
.blog-cta-box p:first-child { font-size: 1.05rem; margin-bottom: 6px; }
.blog-cta-box .btn { margin: 16px 8px 0; }
.blog-cta-box .blog-cta-link { display: block; margin-top: 12px; color: var(--primary); font-weight: 700; }
.blog-cta-box .blog-cta-link:hover { text-decoration: underline; }

.blog-related { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border); }
.blog-related h3 { font-size: 1.05rem; margin-bottom: 14px; }
.blog-related li { margin-bottom: 10px; }
.blog-related a { color: var(--primary); font-weight: 600; }
.blog-related a:hover { text-decoration: underline; }

/* ---------- Steps flow (Como contratar - 4 passos) ---------- */
.steps-flow-subtitle { color: var(--primary); font-weight: 600; margin-bottom: 50px; }
.steps-flow-subtitle strong { color: var(--dark); }

.steps-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.steps-flow-item { flex: 1; min-width: 0; }
.steps-flow-connector {
  flex: 0 0 auto;
  width: 30px;
  padding-top: 44px;
  display: flex;
  justify-content: center;
  color: var(--border);
  font-size: 1.1rem;
}
.steps-flow-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 26px 22px 22px;
}
.steps-flow-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.steps-flow-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--primary);
  line-height: 1;
}
.steps-flow-icon { color: var(--border); font-size: 1.3rem; margin-top: 6px; }
.steps-flow-text { font-size: 0.88rem; color: var(--gray); min-height: 42px; }
.steps-flow-tag {
  position: relative;
  margin: 18px 14px 0;
  margin-bottom: -14px;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  padding: 13px 16px;
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%, 10% 50%);
  box-shadow: 0 6px 14px rgba(175, 15, 42, 0.3);
}

/* ---------- FAQ ---------- */
.faq-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}
.faq-filter {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.faq-filter.active, .faq-filter:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 22px 20px; color: var(--gray); font-size: 0.92rem; }

/* ---------- Contato / dúvidas ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 44px;
}
.contact-visual { text-align: center; }
.chat-bubbles {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 2.6rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px;
}
.contact-social { display: flex; gap: 14px; justify-content: center; margin-top: 22px; }
.contact-social a {
  width: 40px; height: 40px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: background 0.15s, color 0.15s;
}
.contact-social a:hover { background: var(--primary); color: var(--white); }

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Privacy policy page ---------- */
.policy-content h3 { font-size: 1.1rem; margin: 30px 0 10px; }
.policy-content h3:first-child { margin-top: 0; }
.policy-content p { margin-bottom: 14px; color: var(--gray); }
.policy-list { margin: 0 0 14px 22px; list-style: disc; color: var(--gray); }
.policy-list li { margin-bottom: 8px; }
.policy-content a { color: var(--primary); font-weight: 600; text-decoration: underline; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}
.final-cta h2 { color: var(--white); margin-bottom: 12px; }
.final-cta p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 26px; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #c7ccd1; font-size: 0.88rem; }
.footer-top { padding: 56px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a:hover { color: var(--orange); }
.footer-logo img { height: 40px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.footer-social a:hover { background: var(--primary); }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 26px 0;
  font-size: 0.78rem;
  color: #9aa1a8;
  line-height: 1.7;
}
.footer-legal p { margin-bottom: 12px; }
.footer-legal strong { color: #c7ccd1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: #8b929a;
}

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  background: var(--whatsapp);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  animation: pulse-wa 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.06); }
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Alerts ---------- */
.alert { padding: 14px 18px; border-radius: 8px; font-size: 0.9rem; margin-bottom: 20px; }
.alert-success { background: var(--teal-bg); color: var(--teal-dark); border: 1px solid var(--teal); }
.alert-error { background: #ffdede; color: var(--primary-dark); border: 1px solid var(--primary); }

/* ---------- Thank you page ---------- */
.thanks-box {
  max-width: 560px;
  margin: 90px auto;
  text-align: center;
  padding: 0 20px;
}
.thanks-icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--teal-bg);
  color: var(--teal-dark);
  font-size: 2.4rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-visual { order: 2; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav { position: fixed; top: 0; right: -280px; width: 260px; height: 100vh; overflow-y: auto; background: var(--white); box-shadow: -4px 0 20px rgba(0,0,0,0.1); padding: 90px 24px 24px; transition: right 0.25s ease; }
  .main-nav .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin: 6px 0 0;
    padding: 0 0 0 14px;
    border-left: 2px solid var(--border);
  }
  .nav-dropdown-toggle i { display: none; }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 20px; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .topbar { display: none; }
  .header-actions .btn-whatsapp { display: none; }
  .logo img { height: 36px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero { padding: 32px 0 40px; }
  .hero .container { gap: 28px; }
  .hero-badge { margin-bottom: 14px; }
  .hero h1 { font-size: 1.7rem; margin-bottom: 14px; }
  .hero p { font-size: 0.95rem; margin-bottom: 22px; }
  .hero-cta .btn { padding: 12px 22px; font-size: 0.9rem; }
  .hero-promo { padding: 24px 20px; }
  .hero-promo-name { margin-bottom: 14px; }
  .hero-promo-price .value { font-size: 2.5rem; }
  .hero-promo-features { margin-bottom: 20px; }
  .hero-promo-features li { margin-bottom: 10px; font-size: 0.88rem; }

  .plan-nudge-arrow { display: none; }
  .plan-nudge-text { font-size: 0.92rem; }

  .plan-toggle { width: 100%; }
  .plan-toggle .toggle-btn { flex: 1; padding: 10px 8px; font-size: 0.8rem; }
  .plan-toggle .toggle-btn small { font-size: 0.66rem; }

  .steps-flow { flex-direction: column; align-items: stretch; gap: 30px; }
  .steps-flow-connector { display: none; }

  .table-wrap { overflow-x: visible; box-shadow: none; }
  .compare-table { min-width: 0; }
  .compare-table th, .compare-table td { padding: 8px 4px; font-size: 0.72rem; }
  .compare-table th:not(:first-child), .compare-table td.yes, .compare-table td.no { width: 22%; }
  .compare-table td.proc-name { font-size: 0.76rem; }
  .compare-table td.yes i, .compare-table td.no i { font-size: 0.95rem; }

  .contact-form { padding: 24px; }
}
