/* ===== FONTS ===== */
@font-face {
  font-family: 'Iskra';
  src: url('../assets/fonts/Iskra-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Iskra';
  src: url('../assets/fonts/IskraW01-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===== PALETA ===== */
:root {
  --laranja:    #FE8802;
  --laranja-h:  #E67329;
  --navy:       #022D53;
  --teal:       #02B1BA;
  --creme:      #FFF5EA;
  --creme-body: #F7F3EC;
  --branco:     #FFFFFF;
  --texto:      #2E2E2E;
  --texto-sub:  #555555;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Iskra', sans-serif;
  font-size: 17.6px;
  line-height: 1.6;
  color: var(--texto);
  background: var(--creme-body);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
strong { font-weight: 700; color: var(--navy); }

/* ===== CONTAINERS ===== */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero__container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container       { padding: 0 20px; }
  .hero__container { padding: 0 20px; }
}

/* ===== SECTIONS ===== */
.secao          { padding: 88px 0; }
.secao--creme   { background: var(--creme); }
.secao--branco  { background: var(--branco); }
.secao--navy    { background: var(--navy); }
.secao--momentum { padding: 112px 0; }
@media (max-width: 768px) {
  .secao           { padding: 60px 0; }
  .secao--momentum { padding: 80px 0; }
}

/* ===== TIPOGRAFIA GLOBAL ===== */
.kicker {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
p {
  line-height: 1.75;
  color: var(--texto-sub);
  margin-bottom: 16px;
}
p:last-child { margin-bottom: 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-header h2 { margin-bottom: 0; }

/* ===== BOTOES ===== */
.btn-cta {
  display: inline-block;
  background: var(--laranja);
  color: var(--branco);
  border-radius: 32px;
  padding: 20px 48px;
  font-family: 'Iskra', sans-serif;
  font-size: 17px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  min-height: 48px;
  box-shadow: none;
  transition: background 0.2s ease-out, transform 0.15s ease-out;
  text-align: center;
  letter-spacing: 0.2px;
}
.btn-cta:hover { background: var(--laranja-h); transform: translateY(-2px); }
.btn-cta--large { font-size: 19px; padding: 24px 64px; }
@media (max-width: 540px) {
  .btn-cta, .btn-cta--large {
    width: 100%;
    display: block;
    padding: 20px 32px;
    font-size: 17px;
  }
}

/* ===== STICKY CTA MOBILE ===== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(2,45,83,0.3);
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}
.sticky-cta--visible { transform: translateY(0); }
.sticky-cta__text {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta__btn {
  background: var(--laranja);
  color: var(--branco);
  border-radius: 24px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.sticky-cta__btn:hover { background: var(--laranja-h); }
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
}

/* ===== HERO ===== */
.hero {
  background: var(--creme);
  padding: 88px 0 100px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: center;
}
.hero__text .kicker { margin-bottom: 24px; }

.hero__sub {
  font-size: 19px;
  color: var(--texto-sub);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero__provas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.prova-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--branco);
  border: 1px solid rgba(2,177,186,0.3);
  border-radius: 24px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.hero__img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(2,45,83,0.18);
  background: #E8D5BE;
}
.hero__img-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero__text .kicker { text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__provas { justify-content: center; }
  .hero__img-wrap img { height: 360px; }
}
@media (max-width: 540px) {
  .hero { padding: 60px 0 72px; }
  .hero__img-wrap img { height: 280px; border-radius: 16px; }
  .hero__img-wrap { border-radius: 16px; }
}

/* ===== S2: NARRATIVA ===== */
.narrativa {
  max-width: 620px;
  margin: 0 auto;
}
.narrativa p {
  font-size: 18px;
  color: var(--texto-sub);
  margin-bottom: 24px;
}
.narrativa__pausa {
  font-size: clamp(56px, 10vw, 88px);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1;
  margin: 48px 0 40px;
  letter-spacing: -2px;
}
.narrativa__quote {
  position: relative;
  font-size: 21px;
  font-style: italic;
  color: var(--texto-sub);
  padding: 28px 32px 28px 40px;
  border-left: 5px solid var(--laranja);
  background: var(--branco);
  border-radius: 0 20px 20px 0;
  margin: 0 0 32px;
  line-height: 1.5;
}
.quote-icon {
  position: absolute;
  top: 20px;
  left: 12px;
  opacity: 0.4;
}
.narrativa__insight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--branco);
  border-radius: 16px;
  border-left: 4px solid var(--laranja);
}
.narrativa__insight svg { flex-shrink: 0; margin-top: 2px; }

/* ===== S3: SOLUCAO ===== */
.secao--navy h2 { color: var(--branco); }
.secao--navy p  { color: rgba(255,255,255,0.75); }

.solucao {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.solucao h2 { font-size: clamp(28px, 5vw, 44px); }
.solucao > p {
  font-size: 18px;
  margin: 0 auto 44px;
  max-width: 480px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 48px;
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 19px;
  font-weight: 700;
  color: var(--branco);
}
.checklist__icon { flex-shrink: 0; }

/* ===== S4: CONTEUDO ===== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 560px) { .cards-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--branco);
  border-radius: 20px;
  padding: 32px 28px;
  border-top: 4px solid var(--teal);
}
.card__icon {
  width: 52px;
  height: 52px;
  background: rgba(2,177,186,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  text-transform: none;
  letter-spacing: 0;
}
.card__lista { display: flex; flex-direction: column; gap: 0; }
.card__lista li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(2,177,186,0.1);
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
}
.card__lista li:last-child { border-bottom: none; }
.card__badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.5px;
}

.info-card {
  background: var(--branco);
  border-radius: 20px;
  padding: 32px 28px;
  border-top: 4px solid var(--teal);
  text-align: center;
}
.info-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.tag {
  background: var(--creme);
  border: 1.5px solid rgba(2,177,186,0.4);
  color: var(--navy);
  border-radius: 32px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
}

/* ===== S5: GUIA VIVO ===== */
.guia-vivo {
  text-align: center;
}
.guia-vivo h2 { margin-bottom: 40px; }
.features-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature__icon {
  width: 56px;
  height: 56px;
  background: rgba(2,177,186,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.feature p { font-size: 15px; margin-bottom: 0; }
@media (max-width: 560px) {
  .features-row { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== S6: GARANTIA ===== */
.garantia {
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}
.garantia__selo {
  width: 96px;
  height: 96px;
  background: var(--branco);
  border: 3px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.garantia h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.garantia p { font-size: 17px; }

/* ===== S7: CTA FINAL ===== */
.cta-final { text-align: center; }
.cta-final h2 {
  color: var(--branco);
  font-size: clamp(24px, 4vw, 38px);
  max-width: 600px;
  margin: 0 auto 36px;
}
.beneficios {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.beneficio {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  font-weight: 600;
}
.garantia-micro {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  margin-top: 20px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--creme-body);
  padding: 36px 24px;
  text-align: center;
}
footer p {
  font-size: 13px;
  color: #AAAAAA;
  margin-bottom: 0;
}
