/* ==========================================================================
   KIT ALWAYS FIT — LP03
   Stylesheet organizado por seções. Para editar cores, fontes e espaçamentos,
   altere apenas as variáveis abaixo em :root.
   ========================================================================== */

/* ==========================================================================
   1. VARIÁVEIS GLOBAIS (EDITE AQUI CORES E FONTES)
   ========================================================================== */
:root {
  /* Cores principais */
  --color-primary:        #0f2c5c;   /* Azul marinho da marca */
  --color-primary-dark:   #0a1f42;
  --color-accent:         #f0b429;   /* Amarelo/Dourado — botões e destaques */
  --color-accent-dark:    #d19a16;
  --color-success:        #2ecc71;   /* Verde — positivo */
  --color-danger:         #e74c3c;   /* Vermelho — negativo / urgência */

  /* Texto */
  --color-text:           #1b1e28;
  --color-text-muted:     #6b7280;
  --color-text-light:     #ffffff;

  /* Fundos */
  --color-bg:             #ffffff;
  --color-bg-light:       #f6f7fb;
  --color-bg-dark:        #0f2c5c;

  /* Bordas */
  --color-border:         #e5e7eb;

  /* Tipografia */
  --font-family:          'Inter', Arial, sans-serif;

  /* Espaçamento */
  --radius-sm:            8px;
  --radius-md:            14px;
  --radius-lg:            22px;
  --shadow-sm:            0 2px 8px rgba(15, 44, 92, 0.08);
  --shadow-md:            0 10px 30px rgba(15, 44, 92, 0.12);
  --shadow-lg:            0 20px 60px rgba(15, 44, 92, 0.18);

  /* Container */
  --container-max:        1160px;
  --container-narrow:     820px;
}

/* ==========================================================================
   2. RESET E BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px; /* espaço para sticky CTA mobile */
}

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

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

h1, h2, h3, h4 { margin: 0 0 16px; line-height: 1.25; color: var(--color-primary); }
h1 { font-size: clamp(28px, 4.5vw, 44px); font-weight: 800; }
h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; }
h3 { font-size: clamp(18px, 2.2vw, 22px); font-weight: 700; }
h4 { font-size: 17px; font-weight: 700; }

p { margin: 0 0 14px; }

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

/* ==========================================================================
   3. CONTAINER
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: var(--container-narrow); }

/* ==========================================================================
   4. URGENCY BAR (TOPO FIXO)
   ========================================================================== */
.urgency-bar {
  background: var(--color-danger);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.urgency-bar strong { color: var(--color-accent); }
.urgency-bar .countdown-timer {
  display: inline-block;
  background: rgba(0,0,0,0.25);
  padding: 2px 8px;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
  margin-left: 4px;
}

/* ==========================================================================
   5. HEADER
   ========================================================================== */
.header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
}
.header--sticky {
  position: sticky;
  top: 0;
  z-index: 950;
  box-shadow: var(--shadow-sm);
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo { height: 40px; width: auto; }
.header__cta {
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s;
  box-shadow: var(--shadow-sm);
}
.header__cta:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
}

/* ==========================================================================
   6. HERO
   ========================================================================== */
.hero {
  padding: 48px 0 60px;
  background: linear-gradient(180deg, #f6f7fb 0%, #fff 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero__credibility {
  display: inline-block;
  background: #fff7e1;
  color: #8a6100;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero__sub {
  font-size: 17px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.hero__bullets li {
  padding: 8px 0;
  font-size: 16px;
  font-weight: 500;
}
.hero__image-wrap { position: relative; text-align: center; }
.hero__image {
  max-width: 100%;
  border-radius: var(--radius-lg);
}
.hero__float-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: var(--shadow-md);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary);
}

/* ==========================================================================
   7. TRUST BAR
   ========================================================================== */
.trust-bar {
  background: var(--color-primary);
  color: #fff;
  padding: 18px 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}
.trust-bar__item {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.trust-bar__item strong {
  color: var(--color-accent);
  font-weight: 800;
  font-size: 16px;
}

/* ==========================================================================
   8. SEÇÕES GERAIS
   ========================================================================== */
.section { padding: 64px 0; }
.section--light { background: var(--color-bg-light); }
.section--dark {
  background: var(--color-primary);
  color: #fff;
}
.section__title {
  text-align: center;
  margin-bottom: 14px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.section__title--light { color: #fff; }
.section__subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 17px;
  max-width: 720px;
  margin: 0 auto 40px;
}
.section__subtitle--light { color: rgba(255,255,255,0.85); }
.section__text {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ==========================================================================
   9. BOTÕES
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.3px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  margin-top: 10px;
}
.btn--accent {
  background: var(--color-accent);
  color: var(--color-primary);
  margin-top: 16px;
}
.btn--accent:hover { background: var(--color-accent-dark); }
.btn--cta {
  background: var(--color-accent);
  color: var(--color-primary);
  display: block;
  width: 100%;
  margin-top: 14px;
}
.btn--large { padding: 20px 42px; font-size: 18px; }
.btn--center { display: block; margin: 24px auto 8px; max-width: 420px; }

.cta-microcopy {
  text-align: left;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 10px;
}
.cta-microcopy--center { text-align: center; }
.cta-microcopy--light { color: rgba(255,255,255,0.85); }

/* ==========================================================================
   10. PERSONA GRID (Para quem é)
   ========================================================================== */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.persona-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.persona-card__icon {
  font-size: 26px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-bg-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.persona-card p { margin: 0; font-size: 15px; line-height: 1.5; }

/* ==========================================================================
   11. PRODUCTS GRID (O tripé)
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.product-card {
  background: #fff;
  color: var(--color-text);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card--featured {
  transform: translateY(-10px);
  border: 2px solid var(--color-accent);
}
.product-card__image-wrap {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #f6f7fb 0%, #eef0f7 100%);
  border-radius: var(--radius-md);
  padding: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.product-card__image-wrap img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.product-card__tag {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
  align-self: flex-start;
}
.product-card h3 { margin-bottom: 6px; }
.product-card__role {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 16px;
  font-style: italic;
}
.product-card__benefits li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
}
.product-card__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--color-success);
  font-weight: 700;
}

/* ==========================================================================
   12. VALUE STACK
   ========================================================================== */
.value-stack {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 28px;
  margin: 32px 0;
}
.value-stack__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 16px;
}
.value-stack__row:last-of-type { border-bottom: none; }
.value-stack__price { font-weight: 700; }
.value-stack__price--strike { text-decoration: line-through; color: var(--color-text-muted); }
.value-stack__price--highlight {
  color: var(--color-success);
  font-size: 22px;
}
.value-stack__row--total { font-weight: 600; }
.value-stack__row--offer {
  background: #e7f9ef;
  margin: 10px -28px -14px;
  padding: 18px 28px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.value-stack__save {
  text-align: center;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: 15px;
}

/* ==========================================================================
   13. COMPARE (Antes vs Depois)
   ========================================================================== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.compare-card {
  padding: 28px;
  border-radius: var(--radius-md);
}
.compare-card--before {
  background: #fdecea;
  border: 1px solid #f5c6c0;
}
.compare-card--before h3 { color: var(--color-danger); }
.compare-card--after {
  background: #e7f9ef;
  border: 1px solid #b9e8ce;
}
.compare-card--after h3 { color: #1d8348; }
.compare-card ul li {
  padding: 8px 0;
  font-size: 15px;
  line-height: 1.5;
}

/* ==========================================================================
   14. TIMELINE
   ========================================================================== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.timeline__item {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.timeline__badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.timeline__item h4 { color: var(--color-primary); margin-bottom: 8px; }
.timeline__item p { font-size: 14px; color: var(--color-text-muted); margin: 0; }

/* ==========================================================================
   15. TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.testimonial {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}
.testimonial__stars {
  color: var(--color-accent);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.testimonial blockquote {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  flex-grow: 1;
}
.testimonial__person { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}
.testimonial__person strong { display: block; color: var(--color-primary); font-size: 14px; }
.testimonial__person small { color: var(--color-text-muted); font-size: 12px; }

.testimonial-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.testimonial-images img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   16. PRICING (Oferta)
   ========================================================================== */
.section--pricing {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
/* Ordem de exibição dos cards: 3 KITS → 2 KITS → 1 KIT
   (para alterar, ajuste os valores de "order" abaixo) */
.pricing-card--best { order: 1; }        /* 3 KITS (primeiro) */
.pricing-card--featured { order: 2; }    /* 2 KITS (meio) */
.pricing-card:not(.pricing-card--featured):not(.pricing-card--best) { order: 3; } /* 1 KIT (último) */
.pricing-card {
  background: #fff;
  color: var(--color-text);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  transform: translateY(-10px);
  border: 3px solid var(--color-accent);
  box-shadow: var(--shadow-lg);
}
.pricing-card--best {
  border: 3px solid var(--color-success);
}
.pricing-card__badge {
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}
.pricing-card__badge--best { background: var(--color-success); color: #fff; }
.pricing-card__image {
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 0;
  background: transparent;
}
.pricing-card__image img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.pricing-card__header {
  padding: 18px 20px 0;
  text-align: center;
}
.pricing-card__header h3 { color: var(--color-primary); margin-bottom: 4px; }
.pricing-card__duration { color: var(--color-text-muted); font-size: 14px; margin: 0; }
.pricing-card__body {
  padding: 16px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.pricing-card__from { color: var(--color-text-muted); font-size: 14px; margin-bottom: 4px; }
.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.pricing-card__installment-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}
.pricing-card__currency { font-size: 22px; font-weight: 700; color: var(--color-primary); }
.pricing-card__value {
  font-size: 48px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}
.pricing-card__installment-hint {
  font-size: 14px;
  color: var(--color-text-muted);
  align-self: flex-start;
}
.pricing-card__cash {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 6px;
}
.pricing-card__cash strong {
  color: var(--color-text);
  font-weight: 700;
}
.pricing-card__guarantee {
  margin-top: 10px;
  font-size: 12px;
  color: var(--color-text-muted);
}
.pricing-disclaimer {
  text-align: center;
  font-size: 12px;
  opacity: 0.8;
  margin-top: 20px;
}

/* ==========================================================================
   17. GARANTIA INLINE
   ========================================================================== */
.guarantee-inline {
  background: #fff;
  color: var(--color-text);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 32px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.guarantee-inline__seal {
  font-size: 48px;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: #e7f9ef;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.guarantee-inline__title {
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 6px;
  font-size: 18px;
}
.guarantee-inline__text { margin: 0; font-size: 14px; color: var(--color-text-muted); }

/* ==========================================================================
   18. FAQ
   ========================================================================== */
.faq { margin-top: 32px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq__question {
  width: 100%;
  background: #fff;
  color: var(--color-primary);
  padding: 18px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}
.faq__question:hover { background: var(--color-bg-light); }
.faq__icon {
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.3s;
  color: var(--color-accent);
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}
.faq__answer p {
  padding: 0 0 18px;
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.65;
}
.faq__item.is-open .faq__answer { max-height: 500px; }

/* ==========================================================================
   19. FINAL CTA
   ========================================================================== */
.final-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.final-cta h2 { color: #fff; }
.final-cta p { font-size: 17px; opacity: 0.9; }
.final-cta__timer {
  margin: 24px 0;
  font-size: 48px;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: 2px;
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   20. FOOTER
   ========================================================================== */
.footer {
  background: #0a1f42;
  color: rgba(255,255,255,0.8);
  padding: 40px 0 20px;
}
.footer__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}
.footer__logo { height: 40px; filter: brightness(0) invert(1); }
.footer__col a { display: block; margin-bottom: 6px; font-size: 14px; }
.footer__col a:hover { color: var(--color-accent); }
.footer__col p { margin: 0 0 4px; font-size: 14px; }
.footer__secure { max-width: 160px; }
.footer__bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 12px;
  opacity: 0.7;
}

/* ==========================================================================
   21. STICKY CTA MOBILE
   ========================================================================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 900;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.2);
}
.sticky-cta__info { display: flex; flex-direction: column; }
.sticky-cta__label { font-size: 11px; opacity: 0.85; }
.sticky-cta__timer { font-size: 18px; font-weight: 800; color: var(--color-accent); font-variant-numeric: tabular-nums; }
.sticky-cta__btn {
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
}

/* ==========================================================================
   23. RESPONSIVO (MOBILE)
   ========================================================================== */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__bullets { text-align: left; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .persona-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card--featured { transform: none; }
  .compare-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-images { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .footer__container { grid-template-columns: 1fr; text-align: center; }
  .guarantee-inline { flex-direction: column; text-align: center; }
  .sticky-cta { display: flex; }
  .header__cta { padding: 8px 14px; font-size: 12px; }
  .header__logo { height: 32px; }
  .section { padding: 48px 0; }
  .btn--center { max-width: 100%; }
}

@media (max-width: 480px) {
  .urgency-bar { font-size: 12px; padding: 8px; }
  .trust-bar__grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .value-stack { padding: 20px; }
  .value-stack__row--offer { margin: 10px -20px -14px; padding: 18px 20px; }
  .final-cta__timer { font-size: 36px; }
}
