@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sriracha&display=swap');

:root {
  --azul: #082A54;
  --azul-escuro: #041A35;
  --ouro: #E6B11F;
  --branco: #FFFFFF;
  --cinza: #F8F9FB;
  --cinza-2: #EEF2F6;
  --texto: #162A43;
  --texto-suave: #5D6673;
  --linha: rgba(8, 42, 84, 0.12);
  --sombra: 0 24px 70px rgba(8, 42, 84, 0.12);
  --radius: 22px;
  --max: 1180px;
  --gutter: 20px;
  --section: 64px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--azul);
  background: var(--branco);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  width: 100%;
  overflow: hidden;
}

.container {
  width: min(100% - calc(var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

.gold {
  color: var(--ouro);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 50px;
  background: linear-gradient(135deg, #E6B11F, #C99412);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .02em;
  box-shadow: 0 14px 32px rgba(230, 177, 31, 0.28);
  transition: .25s ease;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(230, 177, 31, 0.38);
}

.tag {
  color: var(--ouro);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  margin-bottom: 12px;
}

.section {
  padding-block: var(--section);
}

.section-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
}

.section-title h2 {
  font-size: clamp(28px, 7vw, 44px);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}

.section-title p {
  color: var(--texto-suave);
  font-size: 16px;
}

/* ─── HEADER ─────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--linha);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.menu {
  display: none;
}

.header-cta {
  display: none;
}

/* Hamburger (mobile) */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--azul);
  border-radius: 2px;
  transition: .3s ease;
}

.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 nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--linha);
  padding: 16px var(--gutter) 24px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 0;
  font-weight: 800;
  font-size: 15px;
  border-bottom: 1px solid var(--linha);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.mobile-nav a:last-child {
  border-bottom: none;
  margin-top: 8px;
}

.mobile-nav .btn {
  width: 100%;
}

/* ─── HERO ───────────────────────────────── */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 92% 15%, rgba(230, 177, 31, .13), transparent 34%),
    linear-gradient(180deg, #FFFFFF 0%, #FBFCFE 100%);
  padding-top: 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(42px, 13vw, 58px);
  line-height: .93;
  letter-spacing: -.058em;
  max-width: 690px;
  margin-bottom: 18px;
}

.hero h2 {
  color: var(--ouro);
  font-size: clamp(21px, 6vw, 29px);
  line-height: 1.12;
  font-weight: 800;
  max-width: 560px;
  margin-bottom: 22px;
}

.hero p {
  color: var(--texto-suave);
  font-size: 15.5px;
  max-width: 570px;
  margin-bottom: 24px;
}

.hero .btn {
  width: 100%;
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
  color: var(--azul);
  font-size: 13px;
  font-weight: 800;
}

.meta-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.meta-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--linha);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 17px;
  background: #fff;
}

.hero-photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 410px;
  margin-inline: -34px;
}

.hero-photo::before {
  content: "JL";
  position: absolute;
  right: 8%;
  top: 10px;
  font-size: clamp(110px, 42vw, 230px);
  line-height: 1;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(230, 177, 31, .24);
  z-index: 0;
}

.hero-photo img {
  position: relative;
  z-index: 1;
  max-height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 24px 45px rgba(8, 42, 84, .18));
  border-radius: 999px;
}

/* ─── GRIDS GENÉRICOS ────────────────────── */
.pain-grid,
.benefit-grid,
.trust-grid,
.testimonial-grid,
.offer-grid,
.steps,
.credentials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* ─── CARDS ──────────────────────────────── */
.pain-card,
.benefit-card,
.trust-logo,
.testimonial,
.step,
.credential {
  border: 1px solid var(--linha);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(8, 42, 84, .045);
}

.pain-card,
.benefit-card {
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  text-align: left;
  min-height: 110px;
}

.icon {
  font-size: 28px;
  color: var(--ouro);
  line-height: 1;
}

.pain-card h3,
.benefit-card h3 {
  font-size: 15px;
  line-height: 1.35;
}

.benefit-card p {
  color: var(--texto-suave);
  font-size: 13px;
  margin-top: 4px;
}

/* ─── DARK BAND ──────────────────────────── */
.dark-band {
  background:
    linear-gradient(90deg, rgba(4, 26, 53, .98), rgba(8, 42, 84, .94)),
    center 25% / cover;
  color: var(--branco);
  padding-block: 58px;
}

.dark-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.dark-band h2 {
  font-size: clamp(30px, 8vw, 46px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.dark-band p {
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
}

/* ─── SEÇÕES COM FUNDO CINZA ─────────────── */
.trust,
.about,
.offers {
  background: var(--cinza);
}

/* ─── TRUST LOGOS ────────────────────────── */
.trust-logo {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: rgba(8, 42, 84, .50);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
}

.trust-logo img {
  max-width: 150px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}


/* ─── ABOUT ──────────────────────────────── */
.about-card {
  background: var(--branco);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: var(--sombra);
}

.about-photo {
  background: linear-gradient(180deg, #FFFFFF, #F3F6FA);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 28px 16px;
}

.about-photo img {
  max-height: 390px;
  object-fit: contain;
  border-radius: 20px;
}

.about-content {
  padding: 34px 22px;
}

.about-content h2 {
  font-size: clamp(36px, 10vw, 54px);
  letter-spacing: -.05em;
  line-height: 1;
  margin-bottom: 16px;
}

.about-content p {
  color: var(--texto-suave);
  font-size: 16px;
  margin-bottom: 24px;
}

.credential {
  padding: 16px 10px;
  text-align: center;
  font-weight: 900;
  font-size: 13px;
}

/* ─── STEPS ──────────────────────────────── */
.step {
  padding: 22px 18px;
  text-align: center;
  background: #fff;
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--azul);
  color: var(--ouro);
  font-weight: 900;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-size: 19px;
  box-shadow: 0 12px 28px rgba(8, 42, 84, .18);
}

.step h3 {
  font-size: 15px;
  line-height: 1.35;
}

/* ─── TESTIMONIALS ───────────────────────── */
.testimonial {
  padding: 26px;
}

.quote {
  color: var(--ouro);
  font-size: 38px;
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial p {
  color: var(--texto-suave);
  margin-bottom: 20px;
  font-size: 15px;
}

.testimonial strong {
  display: block;
  color: var(--azul);
}

.testimonial__avatar {
  width:         48px;
  height:        48px;
  border-radius: 50%;
  object-fit:    cover;
  flex:          0 0 auto;
  border:        2px solid var(--dourado);
}

/* ─── OFFERS ─────────────────────────────── */
.offer {
  background: var(--azul);
  color: #fff;
  border-radius: 22px;
  padding: 28px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sombra);
}

.offer::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  top: -70px;
  border: 1px solid rgba(230, 177, 31, .35);
  border-radius: 999px;
}

.offer h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.offer p {
  color: rgba(255, 255, 255, .78);
  margin-bottom: 24px;
}

.offer .btn {
  width: 100%;
  font-size: 12px;
  padding: 13px 14px;
}

/* ─── FINAL CTA ──────────────────────────── */
.final {
  background:
    radial-gradient(circle at 15% 20%, rgba(230, 177, 31, .12), transparent 25%),
    linear-gradient(135deg, #041A35, #082A54);
  color: #fff;
  padding: 64px 0 96px;
}

.final-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 28px;
  margin-bottom: 38px;
}

.final h2 {
  font-size: clamp(34px, 9vw, 58px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.final p {
  color: rgba(255, 255, 255, .82);
  font-size: 21px;
  margin-bottom: 22px;
}

.final .btn {
  width: 100%;
}

/* ─── FOOTER ─────────────────────────────── */
footer {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgb(255, 255, 255);
  font-size: 2rem;
}

footer img {
  width: auto;
  height: 48px;
}

.social-media-btn {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 10px;
}


/* ─── LIVRO AUTORAL ─────────────────────── */
.author-book {
  position: relative;
  background:
    radial-gradient(circle at 15% 35%, rgba(230, 177, 31, .11), transparent 34%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFD 100%);
}

.author-book__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 34px;
  overflow: hidden;
  padding: 34px 24px;
  border: 1px solid var(--linha);
  border-radius: calc(var(--radius) + 6px);
  background: var(--branco);
  box-shadow: var(--sombra);
}

.author-book__card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  top: -120px;
  right: -90px;
  border-radius: 50%;
  border: 1px solid rgba(230, 177, 31, .24);
  box-shadow:
    0 0 0 34px rgba(230, 177, 31, .045),
    0 0 0 68px rgba(8, 42, 84, .025);
  pointer-events: none;
}

.author-book__visual {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
}

.author-book__glow {
  position: absolute;
  width: min(72vw, 350px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 177, 31, .26) 0%, rgba(230, 177, 31, .06) 47%, transparent 72%);
  filter: blur(2px);
}

.author-book__visual img {
  position: relative;
  z-index: 1;
  width: min(72vw, 360px);
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(8, 42, 84, .18));
  transform: rotate(-1.5deg);
  transition: transform .35s ease;
}

.author-book__card:hover .author-book__visual img {
  transform: rotate(0deg) translateY(-5px);
}

.author-book__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.author-book__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--ouro);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.author-book__eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--ouro);
}

.author-book__content h2 {
  max-width: 620px;
  margin: 0 auto 18px;
  font-size: clamp(34px, 9vw, 54px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.author-book__content p {
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--texto-suave);
  font-size: 16px;
}

.author-book__content .btn {
  width: 100%;
}

/* ─── MOBILE FIXED CTA ───────────────────── */


.mobile-cta .btn {
  width: 100%;
}

/* ═══════════════════════════════════════════
   BREAKPOINTS
═══════════════════════════════════════════ */

/* sm ≥ 640px */
@media (min-width: 640px) {
  :root {
    --gutter: 28px;
    --section: 72px;
  }

  .logo { height: 60px; }
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }

  .hero .btn,
  .final .btn,
  .author-book__content .btn { width: fit-content; }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
  }

  .pain-grid,
  .benefit-grid,
  .trust-grid,
  .testimonial-grid,
  .offer-grid,
  .steps,
  .credentials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-photo { min-height: 500px; }
  .hero-photo img { max-height: 520px; }

  footer {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
}

/* md ≥ 768px */
@media (min-width: 768px) {
  :root {
    --gutter: 32px;
    --section: 80px;
  }

  .nav { min-height: 88px; }
  .logo { height: 68px; }
  .header-cta { display: inline-flex; }
  .hamburger { display: none; }

  .hero-grid {
    grid-template-columns: 1.02fr .98fr;
    gap: 24px;
  }

  .hero { padding-top: 60px; }

  .hero-photo {
    min-height: 560px;
    margin-inline: 0 -70px;
  }

  .hero-photo img { max-height: 585px; }

  .pain-grid,
  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr));
 }

  .testimonial-grid,
  .offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps { grid-template-columns: repeat(5, minmax(0, 1fr)); }

  .dark-grid,
  .final-grid {
    grid-template-columns: 1fr 1.12fr;
    gap: 46px;
  }

  .author-book__card {
    grid-template-columns: .9fr 1.1fr;
    gap: 44px;
    padding: 50px 46px;
  }

  .author-book__content { text-align: left; }
  .author-book__content h2,
  .author-book__content p { margin-left: 0; }
  .author-book__visual { min-height: 460px; }
  .author-book__visual img { width: min(36vw, 390px); }

  .dark-band p {
    border-left: 1px solid rgba(230, 177, 31, .65);
    padding-left: 30px;
  }

  .about-card { grid-template-columns: .86fr 1.14fr; }
  .about-content { padding: 48px 38px; }

  .credentials { 
    grid-template-columns: repeat(5, minmax(80px, 1fr)); 
  }

  .mobile-cta { display: none; }
  .final { padding-bottom: 36px; }
}

/* lg ≥ 1024px */
@media (min-width: 1024px) {
  :root {
    --gutter: 40px;
    --section: 88px;
  }

  .nav { min-height: 94px; }
  .logo { height: 74px; }

  .menu {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
  }

  .menu a:not(.btn) {
    opacity: .86;
    transition: .2s ease;
  }

  .menu a:not(.btn):hover { color: var(--ouro); }
  .header-cta { display: none; }

  .hero { padding-top: 74px; }
  .hero-grid { gap: 44px; }
  .hero h1 { font-size: clamp(58px, 5.7vw, 76px); }
  .hero h2 { font-size: clamp(25px, 2vw, 31px); }
  .hero p { font-size: 16px; }

  .hero-photo { min-height: 650px; margin-inline: 0; }
  .hero-photo img { max-height: 650px; }

  .pain-grid,
  .benefit-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--linha);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--branco);
    box-shadow: 0 12px 48px rgba(8, 42, 84, .06);
  }

  .pain-card,
  .benefit-card {
    display: block;
    text-align: center;
    border: 0;
    border-right: 1px solid var(--linha);
    border-radius: 0;
    min-height: 180px;
    padding: 30px 20px;
    box-shadow: none;
  }

  .pain-card:last-child,
  .benefit-card:last-child { border-right: 0; }

  .icon { margin-bottom: 15px; }

  .trust-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

  .about-content { padding: 64px; }
  .about-photo img { max-height: 430px; }

  .final-grid {
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
  }

  .author-book__card {
    grid-template-columns: .86fr 1.14fr;
    gap: 70px;
    padding: 62px 72px;
  }

  .author-book__visual img { width: 410px; }
}

/* xl ≥ 1180px */
@media (min-width: 1180px) {
  .container {
    width: var(--max);
    padding-inline: 0;
  }

  .logo { height: 78px; }
}
