@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #07164e;
  --navy-2: #0b2673;
  --blue: #12399f;
  --orange: #f58212;
  --orange-2: #ff9d25;
  --cream: #fff6e8;
  --ink: #081437;
  --muted: #59627a;
  --white: #fff;
  --line: rgba(7, 22, 78, .12);
  --shadow: 0 24px 70px rgba(7, 22, 78, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: 'Manrope', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.topbar {
  background: var(--orange);
  color: #07164e;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  padding: 9px 20px;
}

.header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 205px; height: 62px; object-fit: contain; }
.menu { display: flex; align-items: center; gap: 28px; }
.menu a { text-decoration: none; font-weight: 700; font-size: .92rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 25px;
  border: 0;
  border-radius: 12px;
  color: white;
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(245, 130, 18, .28);
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 17px 32px rgba(245, 130, 18, .35); background: var(--orange-2); }
.button:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.button--small { min-height: 46px; padding-inline: 20px; }
.button--light { color: var(--navy); background: white; box-shadow: none; }
.button--wide { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 86% 15%, rgba(245,130,18,.2), transparent 30%),
    linear-gradient(135deg, #05113f 0%, #0a2168 58%, #12399f 100%);
  padding: 74px 0 88px;
}
.hero::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: -240px;
  border: 80px solid rgba(255,255,255,.04);
  border-radius: 50%;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 11px; color: #ffc36c; font-size: .82rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 32px; height: 3px; background: var(--orange); border-radius: 3px; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 20px 0 22px; max-width: 720px; font-size: clamp(2.75rem, 5.1vw, 5.4rem); line-height: .98; letter-spacing: -.055em; }
h1 span { color: var(--orange-2); }
.hero-copy > p { max-width: 640px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.55vw, 1.24rem); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 34px; }
.hero-note { font-size: .85rem; color: rgba(255,255,255,.66); }
.hero-note strong { display: block; color: white; font-size: .96rem; }

.hero-visual { position: relative; min-height: 550px; display: grid; place-items: center; }
.store-photo { position: absolute; inset: 42px 0 0 56px; width: calc(100% - 56px); height: 458px; object-fit: cover; border-radius: 28px; box-shadow: 0 36px 90px rgba(0,0,0,.34); }
.campaign-seal { position: absolute; width: min(360px, 68%); right: 8px; top: -42px; filter: drop-shadow(0 22px 30px rgba(0,0,0,.28)); animation: float 5s ease-in-out infinite; }
.price-card { position: absolute; left: 4px; bottom: 18px; width: 255px; padding: 20px; color: var(--ink); background: rgba(255,255,255,.96); border-radius: 17px; box-shadow: var(--shadow); }
.price-card small { color: var(--orange); font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.price-card b { display: block; margin: 8px 0 4px; font-size: 1.2rem; }
.price-card span { color: var(--muted); font-size: .86rem; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(1deg); } 50% { transform: translateY(-13px) rotate(-1deg); } }

.trust { border-bottom: 1px solid var(--line); background: #fff; }
.trust-list { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; gap: 13px; align-items: center; padding: 26px 22px; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-icon { display: grid; flex: 0 0 38px; height: 38px; place-items: center; border-radius: 50%; color: var(--orange); background: var(--cream); font-size: 1.1rem; font-weight: 800; }
.trust-item b { display: block; font-size: .92rem; }
.trust-item span:last-child { color: var(--muted); font-size: .77rem; }

.section { padding: 100px 0; }
.section--soft { background: #f5f7fb; }
.section-heading { max-width: 790px; margin-bottom: 44px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-tag { color: var(--orange); font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h2 { margin: 14px 0 18px; font-size: clamp(2.1rem, 4vw, 4rem); line-height: 1.06; letter-spacing: -.045em; }
.section-heading p { color: var(--muted); font-size: 1.08rem; line-height: 1.7; }

.category-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.category-card { min-height: 390px; position: relative; overflow: hidden; border-radius: 24px; color: white; isolation: isolate; box-shadow: 0 20px 50px rgba(7,22,78,.14); }
.category-card img { width: 100%; height: 100%; position: absolute; object-fit: cover; transition: transform .6s ease; z-index: -2; }
.category-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 20%, rgba(5,17,63,.93) 100%); }
.category-card:hover img { transform: scale(1.045); }
.category-content { position: absolute; left: 30px; right: 30px; bottom: 28px; }
.category-content small { color: #ffc36c; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.category-content h3 { font-size: 1.8rem; margin: 8px 0; }
.category-content p { color: rgba(255,255,255,.78); margin: 0; }

.reasons { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.reason-photo { position: relative; }
.reason-photo img { width: 100%; border-radius: 28px; box-shadow: var(--shadow); }
.reason-badge { position: absolute; right: -18px; bottom: 26px; max-width: 220px; padding: 20px; border-radius: 16px; color: white; background: var(--orange); font-weight: 800; box-shadow: 0 17px 35px rgba(245,130,18,.32); }
.reason-list { display: grid; gap: 16px; }
.reason { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; transition: border-color .2s, transform .2s; }
.reason:hover { transform: translateX(5px); border-color: rgba(245,130,18,.7); }
.reason > span { display: grid; width: 44px; height: 44px; place-items: center; color: white; background: var(--navy); border-radius: 12px; font-weight: 800; }
.reason h3 { margin: 1px 0 4px; font-size: 1.05rem; }
.reason p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }

.cta { padding: 24px 0 100px; background: #f5f7fb; }
.cta-box { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: center; padding: 64px; border-radius: 28px; color: white; background: linear-gradient(120deg, var(--navy), var(--blue)); }
.cta-box::after { content: ''; position: absolute; right: -100px; top: -130px; width: 360px; height: 360px; border: 55px solid rgba(245,130,18,.18); border-radius: 50%; }
.cta-box h2 { max-width: 700px; margin-top: 0; font-size: clamp(2rem, 3.5vw, 3.6rem); }
.cta-box p { max-width: 650px; color: rgba(255,255,255,.76); line-height: 1.65; }
.cta-action { position: relative; z-index: 1; text-align: center; }
.cta-action small { display: block; margin-top: 12px; color: rgba(255,255,255,.65); }

.footer { padding: 58px 0 26px; color: white; background: #03091f; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 50px; }
.footer img { width: 160px; filter: brightness(0) invert(1); }
.footer p, .footer a { color: rgba(255,255,255,.66); font-size: .9rem; line-height: 1.7; }
.footer a { text-decoration: none; }
.footer h3 { font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom { margin-top: 38px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.48); font-size: .78rem; }
.whatsapp-float { position: fixed; z-index: 60; right: 20px; bottom: 20px; display: grid; width: 62px; height: 62px; place-items: center; border-radius: 50%; color: #fff; background: #25d366; box-shadow: 0 15px 35px rgba(0,0,0,.2); text-decoration: none; font-size: 1.75rem; transition: transform .2s; }
.whatsapp-float:hover { transform: scale(1.08); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

.thanks { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: radial-gradient(circle at 80% 15%, rgba(245,130,18,.2), transparent 30%), linear-gradient(135deg, #05113f, #12399f); }
.thanks-card { width: min(650px, 100%); padding: 55px; border-radius: 28px; background: white; box-shadow: 0 32px 90px rgba(0,0,0,.3); text-align: center; }
.thanks-logo { width: 245px; margin: 0 auto 26px; }
.thanks-icon { display: grid; width: 72px; height: 72px; margin: 0 auto 22px; place-items: center; border-radius: 50%; color: white; background: #25d366; font-size: 2rem; }
.thanks-card h1 { margin: 0 auto 16px; color: var(--navy); font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.05; }
.thanks-card p { color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.countdown { margin: 19px 0 25px; color: var(--navy); font-weight: 700; }

@media (max-width: 900px) {
  .menu a:not(.button) { display: none; }
  .hero { padding-top: 52px; }
  .hero-grid, .reasons, .cta-box { grid-template-columns: 1fr; }
  .hero-grid { gap: 28px; }
  .hero-visual { min-height: 480px; }
  .store-photo { inset: 40px 0 0; width: 100%; }
  .campaign-seal { right: 4px; width: min(310px, 64%); }
  .trust-list { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .category-grid { grid-template-columns: 1fr; }
  .reason-badge { right: 12px; }
  .cta-box { padding: 46px 35px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar { font-size: .67rem; }
  .nav { height: 70px; }
  .brand img { width: 155px; height: 48px; }
  .button--small { min-height: 42px; padding: 0 14px; font-size: .78rem; }
  h1 { font-size: 2.8rem; }
  .hero-visual { min-height: 400px; }
  .store-photo { height: 340px; }
  .campaign-seal { top: -25px; right: 0; width: 235px; }
  .price-card { left: 8px; bottom: 0; width: 218px; padding: 15px; }
  .trust-list { grid-template-columns: 1fr; padding: 10px 0; }
  .trust-item, .trust-item:nth-child(2) { border: 0; border-bottom: 1px solid var(--line); padding: 16px 8px; }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 72px 0; }
  .category-card { min-height: 340px; }
  .reasons { gap: 35px; }
  .reason-badge { position: static; max-width: none; margin: -20px 14px 0; transform: translateY(-10px); }
  .cta { padding-bottom: 70px; }
  .cta-box { padding: 36px 24px; border-radius: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .thanks-card { padding: 38px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .campaign-ticker__track { transform: none; }
}

/* Semana do Cliente — versão curta e focada nas ofertas */
.hero--compact { padding: 68px 0 76px; }
.hero--compact h1 { font-size: clamp(2.7rem, 4.4vw, 4.7rem); }
.hero-visual--compact { min-height: 450px; }
.hero-visual--compact .store-photo { inset: 28px 0 0 46px; width: calc(100% - 46px); height: 400px; }
.hero-visual--compact .campaign-seal { width: min(285px, 56%); top: -34px; right: -64px; }
.campaign-ticker { position: relative; z-index: 3; width: 100%; overflow: hidden; color: #fff; background: linear-gradient(90deg, #ef7410, var(--orange), #ff962f); border-block: 1px solid rgba(255,255,255,.3); }
.campaign-ticker__track { display: flex; width: max-content; align-items: center; gap: 48px; min-height: 48px; padding-inline: 24px; animation: ticker-scroll 28s linear infinite; }
.campaign-ticker span { font-size: .82rem; font-weight: 800; white-space: nowrap; }
.campaign-ticker i { color: var(--navy); font-size: .62rem; font-style: normal; }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }
.offers-section { padding: 82px 0 88px; background: #f4f6fa; }
.offers-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; margin-bottom: 32px; }
.offers-heading h2 { margin-bottom: 0; color: var(--navy); }
.offers-heading h2 em { color: var(--orange); font-style: normal; }
.offers-heading p { margin: 0 0 7px; color: var(--muted); line-height: 1.65; }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.offer-card { position: relative; display: flex; flex-direction: column; overflow: hidden; min-height: 555px; border: 1px solid #dbe0eb; border-radius: 16px; background: #fff; transition: transform .22s ease, box-shadow .22s ease; }
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(7,22,78,.12); }
.offer-discount { position: absolute; z-index: 2; top: 14px; right: 14px; padding: 8px 11px; border-radius: 999px; color: #fff; background: var(--orange); box-shadow: 0 7px 18px rgba(238,111,0,.3); font-size: .78rem; font-weight: 900; letter-spacing: .04em; }
.offer-discount--bonus { background: var(--navy); }
.offer-media { display: flex; align-items: center; justify-content: center; height: 220px; padding: 24px 30px; overflow: hidden; background: linear-gradient(145deg, #fff 35%, #f5f7fb); }
.offer-media img { display: block; width: auto; height: auto; max-width: 82%; max-height: 172px; object-fit: contain; mix-blend-mode: multiply; transition: transform .25s ease; }
.offer-card:hover .offer-media img { transform: scale(1.045); }
.offer-copy { min-height: 124px; padding: 17px 20px 16px; border-top: 1px solid #edf0f6; }
.offer-copy small { display: block; margin-bottom: 8px; color: var(--orange); font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.offer-copy h3 { min-height: 48px; margin: 0 0 7px; color: var(--navy); font-size: 1rem; line-height: 1.45; }
.offer-copy span { color: #7a8193; font-size: .74rem; }
.offer-price { flex: 1; padding: 15px 20px 16px; border-top: 1px solid #f4d7af; background: #fff3e2; }
.offer-price del { display: block; min-height: 18px; color: #70778a; font-size: .77rem; }
.offer-price strong { display: block; margin: 2px 0 10px; color: var(--navy); font-size: 2.35rem; line-height: 1; letter-spacing: -.05em; }
.offer-price strong sup { font-size: .8rem; letter-spacing: 0; }
.offer-price strong small { font-size: 1rem; letter-spacing: -.02em; }
.offer-price b { display: block; padding: 6px 10px; border-radius: 20px; color: var(--navy); background: #ffd21c; font-size: .75rem; }
.offer-price em { display: block; margin-top: 9px; color: #d96000; font-size: .72rem; font-style: normal; font-weight: 700; }
.offer-button { display: flex; justify-content: center; align-items: center; gap: 8px; min-height: 48px; margin: 12px 14px 14px; border-radius: 10px; color: #fff; background: #1fc965; font-size: .86rem; font-weight: 800; text-decoration: none; transition: background .2s ease, transform .2s ease; }
.offer-button:hover { background: #16ad54; transform: translateY(-2px); }
.offer-button:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }
.offer-disclaimer { margin: 25px auto 0; max-width: 850px; color: #747c8e; font-size: .75rem; line-height: 1.6; text-align: center; }
.cta--short { padding: 70px 0; }
.cta--short .cta-box { padding: 44px 50px; }
.cta--short .cta-box h2 { margin-bottom: 10px; }
.footer--short { padding: 32px 0; }
.footer-compact { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-compact img { width: 205px; padding: 0; background: transparent; filter: brightness(0) invert(1); }
.footer-compact p, .footer-compact span { margin: 0; color: rgba(255,255,255,.58); font-size: .8rem; }

@media (max-width: 900px) {
  .offers-heading { grid-template-columns: 1fr; gap: 8px; }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual--compact { min-height: 420px; }
  .hero-visual--compact .store-photo { left: 0; width: 100%; }
}

@media (max-width: 560px) {
  .hero--compact { padding: 52px 0 46px; }
  .hero-visual--compact { min-height: 350px; }
  .hero-visual--compact .store-photo { inset: 20px 0 0; width: 100%; height: 315px; }
  .hero-visual--compact .campaign-seal { width: 190px; top: -18px; right: -28px; }
  .campaign-ticker__track { min-height: 44px; gap: 34px; animation-duration: 22s; }
  .campaign-ticker span { font-size: .75rem; }
  .offers-section { padding: 58px 0 62px; }
  .offers-grid { grid-template-columns: 1fr; }
  .offer-card, .offer-copy, .offer-copy h3 { min-height: 0; }
  .offer-media { height: 230px; padding: 26px 34px; }
  .offer-media img { max-width: 78%; max-height: 178px; }
  .cta--short .cta-box { padding: 34px 24px; }
  .footer-compact { flex-direction: column; text-align: center; }
}
