/* ============================================================
   NEWLIV CORRETORA — Bradesco Saúde Landing Page
   Paleta: Vermelho Bradesco #CC0000 | Branco #FFFFFF | Cinza
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #CC0000;
  --red-dark:  #A50000;
  --red-light: #FF1A1A;
  --red-bg:    #FFF5F5;
  --white:     #FFFFFF;
  --gray-50:   #F8F9FA;
  --gray-100:  #F1F3F5;
  --gray-200:  #E9ECEF;
  --gray-400:  #ADB5BD;
  --gray-600:  #6C757D;
  --gray-700:  #495057;
  --gray-800:  #343A40;
  --gray-900:  #212529;
  --green-wa:  #25D366;
  --green-wa-dark: #1DA851;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.14);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.18);
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: .25s cubic-bezier(.4,0,.2,1);
  --max-w:     1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--gray { background: var(--gray-50); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-bg);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.highlight { color: var(--red); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 14px rgba(204,0,0,.35);
}

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 6px 20px rgba(204,0,0,.45);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn--outline:hover {
  background: var(--red);
  color: var(--white);
}

.btn--whatsapp {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}

.btn--whatsapp:hover {
  background: var(--green-wa-dark);
  border-color: var(--green-wa-dark);
  transform: translateY(-1px);
}

.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--sm { padding: 8px 16px; font-size: .85rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--gray-900);
  color: var(--gray-400);
  font-size: .8rem;
  padding: 8px 0;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar i { color: var(--red); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: var(--shadow); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 70px;
}

.header__logo { text-decoration: none; }

.logo-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text { line-height: 1.2; }
.logo-text__main {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
}
.logo-text__sub {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: .04em;
}

.header__partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: .65rem;
  color: var(--gray-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.bradesco-badge { border-radius: var(--radius-sm); overflow: hidden; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: all var(--transition);
}

.nav__link:hover { color: var(--red); background: var(--red-bg); }

.nav__link--cta {
  background: var(--red);
  color: var(--white) !important;
  font-weight: 600;
}

.nav__link--cta:hover { background: var(--red-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, #1a0000 0%, #660000 40%, #CC0000 70%, #ff4444 100%);
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(255,255,255,.06) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.08));
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.hero__title .highlight { color: #FFD0D0; }

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hero__tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-size: .82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
}

.hero__tags i { color: #7FFF9E; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 70px;
}

.trust-item strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.trust-item span {
  font-size: .7rem;
  color: rgba(255,255,255,.7);
  margin-top: 2px;
  letter-spacing: .04em;
}

/* ===== HERO FORM CARD ===== */
.hero__form-card { position: relative; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.form-card__header {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 28px 32px 24px;
  text-align: center;
  color: var(--white);
}

.form-card__header i {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

.form-card__header h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.form-card__header p {
  font-size: .82rem;
  opacity: .85;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-card .lead-form { padding: 28px 32px 32px; }

/* ===== FORMS ===== */
.lead-form .form-group { margin-bottom: 16px; }

.lead-form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,0,0,.12);
}

.lead-form input.error,
.lead-form select.error,
.lead-form textarea.error {
  border-color: #E53935;
  box-shadow: 0 0 0 3px rgba(229,57,53,.1);
}

.lead-form textarea { resize: vertical; min-height: 90px; }

.lead-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236C757D' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group--check { margin-top: 4px; }

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem !important;
  font-weight: 400 !important;
  color: var(--gray-600) !important;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--red);
  cursor: pointer;
}

.form-disclaimer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--gray-500, #9CA3AF);
  margin-top: 12px;
  justify-content: center;
}

.form-disclaimer i { color: var(--gray-400); }

.link { color: var(--red); text-decoration: underline; }

/* ===== SCROLL DOWN ===== */
.scroll-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

/* ===== LOGOS STRIP ===== */
.logos-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 32px 0;
}

.logos-strip__label {
  text-align: center;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray-400);
  margin-bottom: 20px;
  font-weight: 600;
}

.logos-strip__items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logos-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-600);
  font-size: .8rem;
  font-weight: 500;
  line-height: 1.3;
}

.logos-strip__item i {
  font-size: 1.4rem;
  color: var(--red);
}

/* ===== PLANOS ===== */
.planos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.plano-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all var(--transition);
  overflow: hidden;
}

.plano-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gray-200);
  transition: background var(--transition);
}

.plano-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.plano-card:hover::before { background: var(--red); }

.plano-card--featured {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.plano-card--featured::before { background: var(--red); }

.plano-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: .7rem;
  font-weight: 700;
  background: var(--red-bg);
  color: var(--red);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(204,0,0,.2);
}

.plano-card__badge--gold {
  background: #FFF8E1;
  color: #F57F17;
  border-color: rgba(245,127,23,.2);
}

.plano-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--red-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.plano-card__icon i { font-size: 1.3rem; color: var(--red); }

.plano-card--featured .plano-card__icon { background: var(--red); }
.plano-card--featured .plano-card__icon i { color: var(--white); }

.plano-card__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.plano-card__desc {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.plano-card__features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plano-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--gray-700);
}

.plano-card__features i { color: var(--red); font-size: .7rem; flex-shrink: 0; }

.planos__cta {
  text-align: center;
  padding: 32px;
  background: var(--red-bg);
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(204,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.planos__cta p {
  color: var(--gray-700);
  font-size: 1.05rem;
  font-weight: 500;
}

/* ===== BENEFÍCIOS ===== */
.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.beneficio-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
}

.beneficio-item:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.beneficio-item__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.beneficio-item__icon i { font-size: 1.2rem; color: var(--white); }

.beneficio-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.beneficio-item p {
  font-size: .84rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ===== REDE ===== */
.rede__inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}

.rede__content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.rede__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.rede__stat {
  background: var(--red-bg);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(204,0,0,.15);
}

.rede__stat-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.rede__stat-label {
  font-size: .72rem;
  color: var(--gray-600);
  font-weight: 500;
}

.rede__hospitals {
  margin-bottom: 28px;
}

.rede__hospitals h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hospital-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hospital-tags span {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: .78rem;
  color: var(--gray-700);
  font-weight: 500;
}

/* ===== REDE MAP ===== */
.rede__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rede__map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-placeholder {
  background: linear-gradient(135deg, #1a0000 0%, var(--red-dark) 40%, var(--red) 100%);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder > i { font-size: 4rem; color: rgba(255,255,255,.15); margin-bottom: 12px; }
.map-placeholder > p { color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 500; }

.map-pins { position: absolute; inset: 0; }

.pin {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,255,255,.3);
  animation: pulse-pin 2s infinite;
}

.pin--sp { top: 68%; left: 35%; animation-delay: .0s; }
.pin--rj { top: 62%; left: 42%; animation-delay: .3s; }
.pin--mg { top: 55%; left: 38%; animation-delay: .6s; }
.pin--rs { top: 82%; left: 32%; animation-delay: .9s; }
.pin--ba { top: 42%; left: 44%; animation-delay: 1.2s; }
.pin--pr { top: 74%; left: 33%; animation-delay: 1.5s; }
.pin--go { top: 50%; left: 34%; animation-delay: .4s; }
.pin--ce { top: 30%; left: 48%; animation-delay: .7s; }

@keyframes pulse-pin {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,255,255,.3); }
  50%       { box-shadow: 0 0 0 8px rgba(255,255,255,.08); }
}

.rede__info-cards { display: flex; flex-direction: column; gap: 12px; }

.info-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition);
}

.info-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }

.info-card > i { font-size: 1.3rem; color: var(--red); flex-shrink: 0; }

.info-card div { display: flex; flex-direction: column; }
.info-card strong { font-size: .88rem; color: var(--gray-800); font-weight: 700; }
.info-card span { font-size: .78rem; color: var(--gray-600); }

/* ===== COMO FUNCIONA ===== */
.steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  transition: all var(--transition);
  position: relative;
}

.step:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateY(-4px); }

.step__number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--red);
  color: var(--white);
  font-size: .8rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__icon {
  width: 60px;
  height: 60px;
  background: var(--red-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step__icon i { font-size: 1.4rem; color: var(--red); }

.step h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.step p { font-size: .84rem; color: var(--gray-600); line-height: 1.6; }

.step__arrow {
  color: var(--gray-300);
  font-size: 1.2rem;
  padding: 0 8px;
  flex-shrink: 0;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.depoimento-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
}

.depoimento-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  color: var(--red);
  opacity: .15;
  font-family: Georgia, serif;
  line-height: 1;
}

.depoimento-card:hover { border-color: var(--red); box-shadow: var(--shadow); }

.depoimento-card--featured {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  background: linear-gradient(135deg, #FFF5F5 0%, var(--white) 100%);
}

.depoimento-card__stars { margin-bottom: 14px; }
.depoimento-card__stars i { color: #F59E0B; font-size: .9rem; }

.depoimento-card > p {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.depoimento-card__author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar i { color: var(--white); font-size: 1.1rem; }

.depoimento-card__author strong { display: block; font-size: .9rem; color: var(--gray-900); }
.depoimento-card__author span  { font-size: .78rem; color: var(--gray-600); }

/* ===== FAQ ===== */
.faq__list {
  max-width: 800px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active { border-color: var(--red); }

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  transition: color var(--transition);
}

.faq-item.active .faq-item__question { color: var(--red); }

.faq-item__question i {
  flex-shrink: 0;
  color: var(--red);
  transition: transform var(--transition);
}

.faq-item.active .faq-item__question i { transform: rotate(180deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}

.faq-item.active .faq-item__answer { max-height: 400px; }

.faq-item__answer p {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.faq__cta p { color: var(--gray-600); font-size: 1rem; }

/* ===== CONTATO ===== */
.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contato__info p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contato__channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
}

.channel:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }

.channel--whatsapp { border-color: rgba(37,211,102,.3); background: #F0FFF4; }
.channel--whatsapp:hover { border-color: var(--green-wa); background: #E6FFF0; }
.channel--whatsapp > i { color: var(--green-wa); font-size: 1.4rem; }

.channel--phone { border-color: rgba(204,0,0,.2); background: var(--red-bg); }
.channel--phone:hover { border-color: var(--red); }
.channel--phone > i { color: var(--red); font-size: 1.1rem; }

.channel--email { border-color: var(--gray-200); }
.channel--email > i { color: var(--gray-600); font-size: 1.1rem; }

.channel div { display: flex; flex-direction: column; }
.channel strong { font-size: .88rem; color: var(--gray-900); font-weight: 700; }
.channel span { font-size: .82rem; color: var(--gray-600); }

.contato__horario {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
}

.contato__horario > i { color: var(--red); font-size: 1.1rem; margin-top: 2px; }

.contato__horario div { display: flex; flex-direction: column; gap: 2px; }
.contato__horario strong { font-size: .88rem; color: var(--gray-800); }
.contato__horario span  { font-size: .82rem; color: var(--gray-600); }

/* ===== LARGE FORM ===== */
.lead-form--large {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  box-shadow: var(--shadow-lg);
}

.lead-form--large h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: .85rem;
  color: var(--gray-600);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-subtitle::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 64px 0 32px;
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand p {
  margin: 16px 0 20px;
  font-size: .85rem;
  line-height: 1.7;
  color: var(--gray-400);
}

.footer__brand .logo-text__main { color: var(--white); }
.footer__brand .logo-text__sub { color: var(--gray-600, #9CA3AF); }

.footer__social { display: flex; gap: 10px; }

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
}

.footer__social a:hover { background: var(--red); color: var(--white); }

.footer__links h4,
.footer__contact h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer__links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: .85rem;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--red); }

.footer__contact ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: var(--gray-400);
}

.footer__contact i { color: var(--red); width: 14px; }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  font-size: .76rem;
  color: var(--gray-600, #9CA3AF);
  line-height: 1.6;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: var(--white);
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  font-size: .9rem;
  font-weight: 600;
  transition: all var(--transition);
  animation: float-in .6s ease .5s both;
}

.whatsapp-float:hover {
  background: var(--green-wa-dark);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}

.whatsapp-float i { font-size: 1.4rem; }

@keyframes float-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(.9);
  transition: transform var(--transition);
}

.modal-overlay.active .modal { transform: scale(1); }

.modal__icon {
  width: 72px;
  height: 72px;
  background: #E8FFF0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal__icon i { font-size: 2.2rem; color: var(--green-wa); }

.modal h3 { font-size: 1.5rem; font-weight: 800; color: var(--gray-900); margin-bottom: 12px; }
.modal p  { font-size: .95rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 28px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .planos__grid { grid-template-columns: repeat(2, 1fr); }
  .beneficios__grid { grid-template-columns: repeat(2, 1fr); }
  .rede__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__form-card { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .topbar { display: none; }

  .header__partner { display: none; }

  .nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
  }

  .nav.open { display: flex; }
  .nav__link { text-align: center; padding: 12px; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding: 48px 0 60px; }
  .hero__title { font-size: 2rem; }
  .hero__ctas { flex-direction: column; }
  .hero__trust { justify-content: center; }

  .planos__grid { grid-template-columns: 1fr; }
  .plano-card--featured { transform: none; }

  .beneficios__grid { grid-template-columns: 1fr; }

  .rede__stats { grid-template-columns: repeat(2, 1fr); }

  .steps {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .step { max-width: 100%; }
  .step__arrow { transform: rotate(90deg); text-align: center; }

  .depoimentos__grid { grid-template-columns: 1fr; }
  .depoimento-card--featured { transform: none; }

  .contato__inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .footer__main { grid-template-columns: 1fr; gap: 28px; }

  .lead-form--large { padding: 28px 20px; }

  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 16px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .logos-strip__items { gap: 20px; }
  .planos__cta { flex-direction: column; text-align: center; }
  .hero__tags { justify-content: center; }
}
