/* ============================================================
   MAX PRIME – Landing Page
   style.css · Mobile-first · Dark Premium Theme
============================================================ */

/* ── Importação de fonte ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   1. VARIÁVEIS E RESET
============================================================ */
:root {
  /* Cores */
  --red:          #C8102E;
  --red-dark:     #A00E26;
  --red-light:    #E8193B;
  --black:        #0A0A0A;
  --black-mid:    #111111;
  --black-card:   #181818;
  --black-border: #242424;
  --white:        #FFFFFF;
  --white-90:     rgba(255,255,255,0.9);
  --white-60:     rgba(255,255,255,0.6);
  --white-30:     rgba(255,255,255,0.3);
  --white-10:     rgba(255,255,255,0.07);
  --green:        #22C55E;

  /* Tipografia */
  --font:         'Inter', system-ui, sans-serif;

  /* Espaçamentos */
  --radius:       12px;
  --radius-lg:    20px;

  /* Sombras */
  --shadow:       0 4px 24px rgba(0,0,0,0.4);
  --shadow-red:   0 8px 32px rgba(200,16,46,0.4);
  --shadow-lg:    0 16px 60px rgba(0,0,0,0.6);

  /* Transições */
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   2. UTILITÁRIOS
============================================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 5rem 1.25rem; }

/* Animação de entrada */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cabeçalho de seção */
.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(200,16,46,0.1);
  border: 1px solid rgba(200,16,46,0.25);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.section-tag--light {
  color: var(--white-90);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: normal;
  color: var(--red);
}
.section-title--white { color: var(--white); }

.section-desc {
  font-size: 1rem;
  color: var(--white-60);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-desc--light { color: rgba(255,255,255,0.75); }

/* ============================================================
   3. BOTÕES
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.2px;
  padding: 0.85rem 1.8rem;
}

.btn--red {
  background: var(--red);
  color: var(--white);
}
.btn--red:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.btn--red:active { transform: translateY(0); }

.btn--sm  { padding: 0.6rem 1.2rem; font-size: 0.88rem; }
.btn--lg  { padding: 1rem 2.2rem; font-size: 1rem; }
.btn--xl  { padding: 1.2rem 2.8rem; font-size: 1.1rem; }
.btn--full { width: 100%; }

/* ============================================================
   4. HEADER
============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--black-border);
  transition: box-shadow 0.3s;
}

/* Linha vermelha inferior */
.header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.6;
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1.5rem;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.logo__max {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 1px;
}
.logo__prime {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
}
.logo__sub {
  display: none;
  font-size: 0.6rem;
  color: var(--white-30);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo__img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.logo__img--footer {
  height: 34px;
}

/* Nav desktop */
.nav__list {
  display: flex;
  gap: 0.25rem;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white-60);
  padding: 0.45rem 0.8rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.8rem; right: 0.8rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
  border-radius: 2px;
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--black-mid);
  border-top: 1px solid var(--black-border);
  padding: 1rem 1.25rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu__link {
  display: block;
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white-60);
  border-bottom: 1px solid var(--black-border);
  transition: color 0.2s;
}
.mobile-menu__link:hover { color: var(--white); }
.mobile-menu__cta {
  margin-top: 1rem;
  text-align: center;
}

/* ============================================================
   5. HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  background: var(--black);
  overflow: hidden;
}

/* Elemento diagonal decorativo */
.hero__diagonal {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(200,16,46,0.06) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

/* Ruído sutil de fundo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(200,16,46,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(200,16,46,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white-60);
  background: var(--white-10);
  border: 1px solid var(--white-30);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: badgePulse 2s infinite;
  flex-shrink: 0;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* Título hero */
.hero__title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 1.3rem;
}
.hero__title em {
  font-style: normal;
  color: var(--red);
  display: block;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--white-60);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* CTA */
.hero__cta {
  font-size: 1.05rem;
  padding: 1.1rem 2.4rem;
  margin-bottom: 0.6rem;
  box-shadow: var(--shadow-red);
}
.hero__cta-micro {
  font-size: 0.78rem;
  color: var(--white-30);
  margin-bottom: 2.5rem;
}

/* Selos */
.hero__seals {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--black-border);
}
.seal {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.seal__icon { font-size: 1.1rem; }
.seal__text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white-60);
}

/* Foto consultor */
.hero__photo { display: flex; justify-content: center; }

.photo__frame {
  position: relative;
  display: inline-block;
}

.photo__placeholder {
  width: 380px;
  height: 460px;
  background: linear-gradient(135deg, var(--black-card), #1e1e1e);
  border-radius: var(--radius-lg);
  border: 2px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Efeito geométrico na foto */
.photo__placeholder::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(200,16,46,0.15), transparent);
}

.photo__initials {
  font-size: 4rem;
  font-weight: 900;
  color: var(--white-30);
}
.photo__initials--lg { font-size: 5rem; }

/* Card flutuante sobre a foto */
.photo__card {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 0.85rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 200px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.photo__card strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.photo__card span { font-size: 0.78rem; color: var(--white-60); }
.card__location { color: var(--red) !important; font-weight: 500; }

/* ============================================================
   6. SEÇÃO DOR x SOLUÇÃO
============================================================ */
.pain {
  background: var(--black-mid);
  position: relative;
  overflow: hidden;
}

.pain__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.pain__col {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--black-border);
}
.pain__col--bad  { border-top: 3px solid rgba(255,80,80,0.5); }
.pain__col--good { border-top: 3px solid var(--green); }

.pain__col-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.pain__col-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.col-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
}
.col-icon--red   { background: rgba(255,80,80,0.15); color: #FF5050; }
.col-icon--green { background: rgba(34,197,94,0.15); color: var(--green); }

.pain__list { display: flex; flex-direction: column; gap: 0.75rem; }

.pain__item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.pain__item::before {
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}
.pain__item--bad {
  color: var(--white-60);
}
.pain__item--bad::before { content: '✗'; color: #FF5050; }
.pain__item--good { color: var(--white-90); }
.pain__item--good::before { content: '✓'; color: var(--green); }

/* VS separador */
.pain__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pain__vs span {
  width: 52px; height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-red);
}

/* ============================================================
   7. BENEFÍCIOS E COBERTURAS
============================================================ */
.benefits {
  background: var(--black);
  position: relative;
}

/* Linha decorativa vermelha */
.benefits::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--red));
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--black-border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

/* Linha vermelha top no hover */
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,16,46,0.3);
}

.benefit-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: rgba(200,16,46,0.1);
  border-radius: 12px;
}

.benefit-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.benefit-card__desc {
  font-size: 0.85rem;
  color: var(--white-60);
  line-height: 1.65;
}

/* ============================================================
   8. SOBRE A MAX PRIME
============================================================ */
.about-brand {
  background: var(--black-mid);
  position: relative;
  overflow: hidden;
}

/* Elemento diagonal decorativo */
.about-brand::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 50%, rgba(200,16,46,0.04) 100%);
  pointer-events: none;
}

.about-brand__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-brand__desc {
  font-size: 0.97rem;
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Stats */
.brand-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--black-border);
}
.brand-stat {}
.stat__number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat__label {
  font-size: 0.78rem;
  color: var(--white-30);
  font-weight: 500;
}

/* Box de features */
.brand-visual__box {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--black-border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brand-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.brand-feature__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(200,16,46,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.brand-feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.brand-feature p {
  font-size: 0.85rem;
  color: var(--white-60);
  line-height: 1.55;
}

/* ============================================================
   9. CONSULTOR
============================================================ */
.consultant {
  background: var(--black);
  position: relative;
}

.consultant__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: center;
}

/* Foto */
.consultant__photo { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.consultant__photo-frame {
  position: relative;
  display: inline-block;
}
.consultant__photo-placeholder {
  width: 280px;
  height: 340px;
  background: linear-gradient(135deg, var(--black-card), #1a1a1a);
  border-radius: var(--radius-lg);
  border: 2px solid var(--black-border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.consultant__photo-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(200,16,46,0.12), transparent);
}

.consultant__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white-60);
  background: var(--white-10);
  border: 1px solid var(--black-border);
  padding: 0.4rem 1rem;
  border-radius: 20px;
}

/* Bio */
.consultant__role {
  font-size: 0.88rem;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 1.5rem;
  margin-top: -0.5rem;
}

.consultant__desc {
  font-size: 0.97rem;
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.consultant__info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  font-size: 0.85rem;
  color: var(--white-60);
}

/* ============================================================
   10. FORMULÁRIO DE COTAÇÃO
============================================================ */
.form-section {
  background: var(--black-mid);
  position: relative;
  overflow: hidden;
}

.form-section__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(200,16,46,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 50%, rgba(200,16,46,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.form-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.form-perks {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.form-perks li {
  font-size: 0.9rem;
  color: var(--white-60);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Formulário */
.quote-form {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--black-border);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-60);
}

.form-input {
  background: var(--black-mid);
  border: 1.5px solid var(--black-border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: var(--white-30); }
.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.15);
}
.form-input.erro { border-color: #FF5050; }
.form-input.ok   { border-color: var(--green); }

.form-error {
  font-size: 0.78rem;
  color: #FF5050;
  min-height: 1rem;
}

.form-submit { margin-top: 0.5rem; }

.form-micro {
  text-align: center;
  font-size: 0.75rem;
  color: var(--white-30);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ============================================================
   11. DEPOIMENTOS
============================================================ */
.testimonials {
  background: var(--black);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--black-border);
  transition: transform 0.3s var(--ease), border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,16,46,0.3);
}

.testimonial-card__stars {
  color: var(--red);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.92rem;
  color: var(--white-60);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--black-border);
}
.author__avatar {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}
.testimonial-card__author span {
  font-size: 0.75rem;
  color: var(--white-30);
}

/* ============================================================
   12. FAQ
============================================================ */
.faq {
  background: var(--black-mid);
}

.faq__list {
  max-width: 780px;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--black-card);
  border-radius: var(--radius);
  border: 1px solid var(--black-border);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq__item.open {
  border-color: rgba(200,16,46,0.4);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
}
.faq__question:hover { color: var(--red); }

.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq__item.open .faq__answer { max-height: 300px; }

.faq__answer p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.75;
}

/* ============================================================
   13. CTA FINAL
============================================================ */
.final-cta {
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 6rem 1.25rem;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(200,16,46,0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Linha vermelha diagonal decorativa */
.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.final-cta::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.final-cta__inner { position: relative; z-index: 1; }

.final-cta__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.final-cta__title em {
  font-style: normal;
  color: var(--red);
}

.final-cta__desc {
  font-size: 1.05rem;
  color: var(--white-60);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.final-cta__micro {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--white-30);
}

/* ============================================================
   14. FOOTER
============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid var(--black-border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding: 4rem 1.25rem 3rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__desc {
  font-size: 0.85rem;
  color: var(--white-30);
  line-height: 1.7;
  max-width: 300px;
}

.footer__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white-30);
  margin-bottom: 1.25rem;
}

.footer__links ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a,
.footer__contact li {
  font-size: 0.87rem;
  color: var(--white-30);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__contact a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid var(--black-border);
  padding: 1.5rem 1.25rem;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.18);
}

/* ============================================================
   15. BOTÃO FLUTUANTE WHATSAPP
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  padding: 0.85rem 1.3rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  animation: waPop 0.5s var(--ease) 1s both;
}
@keyframes waPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}

/* ============================================================
   16. RESPONSIVO – TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero__subtitle { margin: 0 auto 2rem; }
  .hero__seals    { justify-content: center; }
  .hero__cta-micro { text-align: center; }
  .hero__photo    { order: -1; }
  .photo__placeholder { width: 300px; height: 360px; }

  .about-brand__inner { grid-template-columns: 1fr; gap: 3rem; }

  .consultant__inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .consultant__info  { justify-content: center; }
  .consultant__photo { align-items: center; }

  .form-section__inner { grid-template-columns: 1fr; gap: 3rem; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ============================================================
   17. RESPONSIVO – MOBILE (≤ 768px)
============================================================ */
@media (max-width: 768px) {
  section { padding: 4rem 1.25rem; }

  /* Header */
  .header__nav  { display: none; }
  .header__cta  { display: none; }
  .hamburger    { display: flex; }

  /* Pain section */
  .pain__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pain__vs { order: -1; margin: 0 auto; }

  /* Benefits */
  .benefits__grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Form row */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.25rem 2rem;
  }
  .footer__bottom .container {
    flex-direction: column;
    text-align: center;
  }

  /* Brand stats */
  .brand-stats { gap: 1.5rem; flex-wrap: wrap; }

  /* Whatsapp float – só ícone no mobile */
  .whatsapp-float__label { display: none; }
  .whatsapp-float {
    width: 58px; height: 58px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }

  /* Hero seals */
  .hero__seals { gap: 1rem; }

  /* Hero foto */
  .photo__placeholder { width: 260px; height: 300px; }
}

@media (max-width: 480px) {
  .hero__title  { font-size: 2rem; }
  .section-title { font-size: 1.7rem; }
}

/* ============================================================
   18. BOTÃO OUTLINE (CTA SECUNDÁRIO)
============================================================ */
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white-30);
}
.btn--outline:hover {
  border-color: var(--white-60);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

/* ============================================================
   19. HERO – CTAs duplos
============================================================ */
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.6rem;
}

/* ============================================================
   20. COMO FUNCIONA (TRUST)
============================================================ */
.trust {
  background: var(--black-mid);
  position: relative;
  overflow: hidden;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.trust-step {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--black-border);
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.trust-step:hover {
  border-color: rgba(200,16,46,0.3);
  transform: translateY(-4px);
}

.trust-step__num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(200,16,46,0.2);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -2px;
}

.trust-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.trust-step__desc {
  font-size: 0.88rem;
  color: var(--white-60);
  line-height: 1.7;
}

/* ============================================================
   21. COBERTURAS – GRID 5 COLUNAS
============================================================ */
.coberturas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

/* ============================================================
   22. ASSISTÊNCIA 24H
============================================================ */
.assistance {
  background: var(--black-mid);
  position: relative;
}

.assistance__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.assistance-card {
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--black-border);
  border-top: 2px solid rgba(200,16,46,0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.assistance-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.assistance-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: rgba(200,16,46,0.1);
  border-radius: 12px;
}

.assistance-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.assistance-card__desc {
  font-size: 0.85rem;
  color: var(--white-60);
  line-height: 1.65;
}

/* ============================================================
   23. CLUBE DE BENEFÍCIOS EXTRAS
============================================================ */
.extras {
  background: var(--black);
  position: relative;
}

.extras__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.extra-card {
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--black-border);
  transition: transform 0.3s var(--ease), border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.extra-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.extra-card:hover::before { transform: scaleX(1); }
.extra-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,16,46,0.25);
}

.extra-card__icon {
  font-size: 1.8rem;
  margin-bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: rgba(200,16,46,0.08);
  border-radius: 10px;
}

.extra-card__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.extra-card__desc {
  font-size: 0.82rem;
  color: var(--white-60);
  line-height: 1.6;
}

/* ============================================================
   24. POR QUE ESCOLHER
============================================================ */
.why-choose {
  background: var(--black-mid);
  position: relative;
  overflow: hidden;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--black-border);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.why-item:hover {
  border-color: rgba(200,16,46,0.3);
  transform: translateY(-4px);
}

.why-item__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(200,16,46,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

.why-item__title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.why-item__desc {
  font-size: 0.85rem;
  color: var(--white-60);
  line-height: 1.65;
}

/* ============================================================
   25. SIMULAÇÃO / COTAÇÃO CTA
============================================================ */
.quote-cta {
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 6rem 1.25rem;
}

.quote-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(200,16,46,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 50%, rgba(200,16,46,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.quote-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.quote-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.quote-cta__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin: 1.5rem auto 2rem;
  max-width: 560px;
}

.quote-cta__perks {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  margin-bottom: 2.5rem;
}
.quote-cta__perks li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
}

.quote-cta__micro {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--white-30);
}

/* ============================================================
   26. FOOTER – DISCLAIMER
============================================================ */
.footer__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__contact-indent {
  padding-left: 1.4rem;
  color: var(--white-30);
  font-size: 0.87rem;
}

.footer__disclaimer {
  padding: 1rem 1.25rem 0;
  text-align: center;
}
.footer__disclaimer p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
  line-height: 1.6;
}

.footer__complaints {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-top: 1px solid var(--black-border);
}
.complaints__inner {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.complaints__title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white-30);
  margin-bottom: 0.5rem;
}
.complaints__text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.complaints__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.complaints__channels a {
  color: rgba(255,255,255,0.35);
  text-decoration: underline;
  transition: color 0.2s;
}
.complaints__channels a:hover { color: var(--white-60); }

@media (max-width: 768px) {
  .complaints__channels { flex-direction: column; gap: 0.4rem; }
}

/* ============================================================
   27. RESPONSIVO – NOVAS SEÇÕES (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .coberturas-grid     { grid-template-columns: repeat(3, 1fr); }
  .assistance__grid    { grid-template-columns: repeat(3, 1fr); }
  .extras__grid        { grid-template-columns: repeat(2, 1fr); }
  .why__grid           { grid-template-columns: repeat(2, 1fr); }
  .trust__grid         { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

/* ============================================================
   28. RESPONSIVO – NOVAS SEÇÕES (≤ 768px)
============================================================ */
@media (max-width: 768px) {
  .hero__ctas          { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn     { text-align: center; justify-content: center; }

  .coberturas-grid     { grid-template-columns: repeat(2, 1fr); }
  .assistance__grid    { grid-template-columns: repeat(2, 1fr); }
  .extras__grid        { grid-template-columns: repeat(2, 1fr); }
  .why__grid           { grid-template-columns: 1fr; }
  .trust__grid         { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .coberturas-grid  { grid-template-columns: 1fr; }
  .assistance__grid { grid-template-columns: 1fr; }
  .extras__grid     { grid-template-columns: 1fr; }
}
