/* =========================================================
   VARIÁVEIS / IDENTIDADE VISUAL
========================================================= */

:root {
  --navy: #111722;
  --navy-light: #1b2230;
  --navy-soft: #252936;

  --champagne: #e8d8c6;
  --cream: #f2ece4;

  --rose: #c69e83;
  --gold: #c99b62;

  --white: #ffffff;
  --text-soft: #cfc8c1;

  --font-title: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;

  --container: 1200px;
}


/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(90%, var(--container));
  margin: 0 auto;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.header {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  padding: 28px 0;

  z-index: 100;
}

.header-inner {
  width: min(90%, var(--container));
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* MARCA */

.brand {
  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--cream);
}

.brand-icon {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.brain-icon {
  width: 32px;
  height: 32px;

  fill: none;

  stroke: #c99b62;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.brand:hover .brain-icon {
  transform: scale(1.07);

  filter:
    drop-shadow(0 0 5px rgba(201, 155, 98, 0.4));
}

.brand-name {
  color: var(--cream);

  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;

  letter-spacing: 0.2px;
}


/* MENU */

.navigation {
  display: flex;
  align-items: center;

  gap: 28px;
}

.navigation a {
  position: relative;

  color: var(--cream);

  font-size: 9px;
  font-weight: 500;

  letter-spacing: 1.3px;

  text-transform: uppercase;

  transition: color 0.3s ease;
}

.navigation a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition: width 0.3s ease;
}

.navigation a:hover {
  color: var(--gold);
}

.navigation a:hover::after {
  width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  width: 100%;
  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--navy);
}


/* DETALHE DECORATIVO */

.hero::before {
  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  left: -330px;
  bottom: -400px;

  border:
    1px solid rgba(201, 155, 98, 0.08);

  border-radius: 50%;

  z-index: 1;

  pointer-events: none;
}


/* =========================================================
   FOTO HERO
========================================================= */

.hero-image {
  position: absolute;

  top: 0;
  right: 0;

  width: 58vw;
  height: 100vh;

  overflow: hidden;

  z-index: 0;
}

.hero-image img {
  position: absolute;

  top: 0;
  right: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center 15%;

  filter:
    saturate(0.92)
    contrast(1.02)
    brightness(0.94);
}


/* DEGRADÊ FOTO -> FUNDO */

.hero-image::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,

      var(--navy) 0%,

      rgba(17, 23, 34, 0.98) 6%,

      rgba(17, 23, 34, 0.92) 12%,

      rgba(17, 23, 34, 0.75) 19%,

      rgba(17, 23, 34, 0.50) 27%,

      rgba(17, 23, 34, 0.25) 34%,

      rgba(17, 23, 34, 0.08) 41%,

      transparent 49%
    );
}


/* SOMBRA SUAVE NA BORDA DIREITA */

.hero-image::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      to left,
      rgba(17, 23, 34, 0.08),
      transparent 30%
    );
}


/* =========================================================
   TEXTO HERO
========================================================= */

.hero-content {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  padding-top: 110px;
  padding-bottom: 60px;

  z-index: 5;
}

.hero-text {
  position: relative;

  width: 53%;
  max-width: 650px;

  z-index: 10;
}


/* ETIQUETA */

.eyebrow {
  display: inline-block;

  margin-bottom: 25px;

  padding: 9px 16px;

  border:
    1px solid rgba(201, 155, 98, 0.35);

  border-radius: 50px;

  color: var(--gold);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 2.3px;

  text-transform: uppercase;
}


/* FRASE */

.hero-quote {
  margin-bottom: 18px;

  color: var(--champagne);

  font-family: var(--font-title);

  font-size:
    clamp(21px, 2vw, 28px);

  font-style: italic;
  font-weight: 400;

  line-height: 1.3;
}


/* TÍTULO */

.hero h1 {
  max-width: 680px;

  margin-bottom: 27px;

  color: var(--cream);

  font-family: var(--font-title);

  font-size:
    clamp(48px, 4.5vw, 70px);

  font-weight: 600;

  line-height: 1;

  letter-spacing: -1.5px;
}

.hero h1 span {
  color: var(--rose);
}


/* DESCRIÇÃO */

.hero-description {
  max-width: 570px;

  margin-bottom: 37px;

  color: var(--text-soft);

  font-size: 14px;
  font-weight: 300;

  line-height: 1.9;
}


/* =========================================================
   BOTÃO PRINCIPAL
========================================================= */

.button-primary {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 20px;

  min-width: 255px;

  padding: 17px 25px;

  border:
    1px solid var(--gold);

  border-radius: 50px;

  background: var(--gold);

  color: var(--navy);

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 1.2px;

  text-transform: uppercase;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.button-primary span {
  font-size: 17px;
}

.button-primary:hover {
  background: transparent;

  color: var(--gold);

  transform:
    translateY(-3px);
}


/* =========================================================
   LABEL DAS SEÇÕES
========================================================= */

.section-label {
  display: block;

  margin-bottom: 18px;

  color: var(--gold);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 4px;

  text-transform: uppercase;
}


/* =========================================================
   SOBRE MIM
========================================================= */

.about {
  position: relative;

  padding: 135px 0;

  overflow: hidden;

  background: var(--cream);

  color: var(--navy);
}

.about-grid {
  display: grid;

  grid-template-columns:
    0.85fr 1.15fr;

  gap: 100px;

  align-items: center;
}


/* =========================================================
   FOTO SOBRE MIM
========================================================= */

.about-image {
  position: relative;
}

.about-image-frame {
  position: relative;

  width: 100%;

  overflow: hidden;

  border-radius:
    220px 220px 8px 8px;
}

.about-image-frame::after {
  content: "";

  position: absolute;

  inset: 0;

  border:
    1px solid rgba(201, 155, 98, 0.35);

  border-radius:
    220px 220px 8px 8px;

  pointer-events: none;
}

.about-image-frame img {
  width: 100%;
  height: 650px;

  object-fit: cover;

  object-position: center top;
}


/* LINHA ATRÁS DA FOTO */

.about-image::before {
  content: "";

  position: absolute;

  width: 85%;
  height: 85%;

  top: -25px;
  left: -25px;

  border:
    1px solid rgba(201, 155, 98, 0.3);

  border-radius:
    220px 220px 8px 8px;

  z-index: 0;
}

.about-image-frame {
  z-index: 2;
}


/* DETALHE ABAIXO DA FOTO */

.about-image-detail {
  display: block;

  margin-top: 20px;

  color: #8a7868;

  font-family: var(--font-title);

  font-size: 17px;
  font-style: italic;

  letter-spacing: 0.5px;
}


/* =========================================================
   TEXTO SOBRE MIM
========================================================= */

.about-content {
  position: relative;

  max-width: 610px;
}

.about h2 {
  margin-bottom: 28px;

  color: var(--navy);

  font-family: var(--font-title);

  font-size:
    clamp(50px, 5vw, 76px);

  font-weight: 600;

  line-height: 0.98;

  letter-spacing: -1.5px;
}

.about h2 span {
  display: block;

  color: var(--rose);
}

.about-intro {
  max-width: 520px;

  margin-bottom: 28px;

  color: #343945;

  font-family: var(--font-title);

  font-size: 25px;
  font-weight: 500;

  line-height: 1.35;
}

.about-text {
  max-width: 600px;
}

.about-text p {
  margin-bottom: 17px;

  color: #55545a;

  font-size: 13px;
  font-weight: 400;

  line-height: 1.9;
}


/* FRASE EM DESTAQUE */

.about-quote {
  position: relative;

  margin-top: 30px;
  margin-bottom: 28px;

  padding:
    22px 0 22px 28px;

  border-left:
    2px solid var(--gold);

  color: var(--navy);

  font-family: var(--font-title);

  font-size: 22px;
  font-style: italic;

  line-height: 1.4;
}


/* LINK CONTINUAR */

.text-link {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  color: var(--gold);

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  transition:
    gap 0.3s ease,
    color 0.3s ease;
}

.text-link span {
  font-size: 16px;
}

.text-link:hover {
  gap: 18px;

  color: var(--navy);
}


/* =========================================================
   MINHA HISTÓRIA
========================================================= */

.story {
  position: relative;

  padding: 140px 0;

  overflow: hidden;

  background: var(--navy);

  color: var(--cream);
}


/* CÍRCULO DECORATIVO */

.story::before {
  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  right: -350px;
  top: -200px;

  border:
    1px solid rgba(201, 155, 98, 0.08);

  border-radius: 50%;
}

.story-grid {
  position: relative;

  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 120px;

  align-items: start;

  z-index: 2;
}


/* TÍTULO HISTÓRIA */

.story-heading h2 {
  max-width: 520px;

  color: var(--cream);

  font-family: var(--font-title);

  font-size:
    clamp(48px, 4.5vw, 70px);

  font-weight: 600;

  line-height: 1;

  letter-spacing: -1.5px;
}

.story-heading h2 span {
  color: var(--rose);
}

.story-line {
  width: 80px;
  height: 1px;

  margin:
    35px 0 25px;

  background: var(--gold);
}

.story-small {
  max-width: 300px;

  color: var(--text-soft);

  font-family: var(--font-title);

  font-size: 18px;
  font-style: italic;

  line-height: 1.5;
}


/* TEXTO HISTÓRIA */

.story-content {
  max-width: 590px;

  padding-top: 30px;
}

.story-content > p {
  margin-bottom: 25px;

  color: var(--text-soft);

  font-size: 14px;
  font-weight: 300;

  line-height: 1.9;
}


/* PERGUNTA */

.story-content .story-question {
  margin:
    35px 0;

  color: var(--champagne);

  font-family: var(--font-title);

  font-size:
    clamp(27px, 2.5vw, 36px);

  font-style: italic;
  font-weight: 500;

  line-height: 1.3;
}


/* FRASE FINAL */

.story-highlight {
  display: flex;

  gap: 20px;

  align-items: stretch;

  margin-top: 38px;
}

.story-highlight-line {
  width: 2px;

  flex-shrink: 0;

  background: var(--gold);
}

.story-highlight p {
  color: var(--cream);

  font-family: var(--font-title);

  font-size: 23px;
  font-style: italic;

  line-height: 1.45;
}


/* =========================================================
   NASCIMENTO DO PROJETO
========================================================= */

.project-intro {
  position: relative;

  padding: 150px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(201, 155, 98, 0.12),
      transparent 40%
    ),
    var(--navy-light);

  text-align: center;
}

.project-intro-content {
  max-width: 900px;
}

.project-small {
  margin-bottom: 25px;

  color: var(--text-soft);

  font-size: 10px;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.project-intro h2 {
  margin:
    0 auto 30px;

  color: var(--cream);

  font-family: var(--font-title);

  font-size:
    clamp(48px, 5vw, 76px);

  font-weight: 600;

  line-height: 1;

  letter-spacing: -1.5px;
}

.project-intro h2 span {
  display: block;

  margin-top: 10px;

  color: var(--rose);
}

.project-description {
  max-width: 700px;

  margin:
    0 auto 30px;

  color: var(--text-soft);

  font-size: 14px;

  line-height: 1.9;
}

.project-quote {
  margin-bottom: 40px;

  color: var(--champagne);

  font-family: var(--font-title);

  font-size:
    clamp(25px, 3vw, 38px);

  font-style: italic;
}


/* =========================================================
   E-BOOK
========================================================= */

.ebook {
  position: relative;

  padding: 140px 0;

  overflow: hidden;

  background: var(--cream);

  color: var(--navy);
}

.ebook-grid {
  display: grid;

  grid-template-columns:
    0.85fr 1.15fr;

  gap: 100px;

  align-items: center;
}


/* CAPA */

.ebook-image {
  position: relative;

  display: flex;
  justify-content: center;
}

.ebook-image::before {
  content: "";

  position: absolute;

  width: 80%;
  height: 80%;

  left: 10%;
  bottom: -20px;

  background:
    rgba(17, 23, 34, 0.18);

  filter: blur(35px);

  border-radius: 50%;

  z-index: 0;
}

.ebook-image img {
  position: relative;

  width: 100%;
  max-width: 410px;

  z-index: 2;

  box-shadow:
    0 35px 70px
    rgba(17, 23, 34, 0.22);
}


/* TEXTO EBOOK */

.ebook-content {
  max-width: 600px;
}

.ebook h2 {
  margin-bottom: 28px;

  color: var(--navy);

  font-family: var(--font-title);

  font-size:
    clamp(50px, 5vw, 76px);

  font-weight: 600;

  line-height: 0.98;

  letter-spacing: -1.5px;
}

.ebook h2 span {
  display: block;

  color: var(--rose);
}

.ebook-subtitle {
  margin-bottom: 25px;

  color: #353945;

  font-family: var(--font-title);

  font-size:
    clamp(23px, 2.2vw, 30px);

  font-weight: 500;

  line-height: 1.35;
}

.ebook-description {
  max-width: 530px;

  margin-bottom: 35px;

  color: #5c5a60;

  font-size: 14px;

  line-height: 1.9;
}

.ebook-button:hover {
  color: var(--navy);

  border-color: var(--navy);
}


/* =========================================================
   RODAPÉ
========================================================= */

.footer {
  padding:
    55px 0;

  border-top:
    1px solid rgba(201, 155, 98, 0.15);

  background: #0c1119;
}

.footer-content {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.footer-brand {
  display: flex;

  flex-direction: column;

  gap: 6px;
}

.footer-name {
  color: var(--cream);

  font-family: var(--font-title);

  font-size: 26px;
}

.footer-message {
  color: #8f8d8a;

  font-size: 10px;

  letter-spacing: 0.8px;
}

.footer-instagram {
  color: var(--gold);

  font-size: 11px;

  letter-spacing: 1px;

  transition:
    color 0.3s ease;
}

.footer-instagram:hover {
  color: var(--cream);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

  .navigation {
    gap: 18px;
  }

  .navigation a {
    font-size: 8px;
  }


  /* HERO */

  .hero-text {
    width: 58%;
  }

  .hero-image {
    width: 58vw;
  }

  .hero h1 {
    font-size:
      clamp(45px, 6vw, 62px);
  }


  /* SOBRE */

  .about-grid {
    gap: 55px;
  }

  .about-image-frame img {
    height: 560px;
  }


  /* HISTÓRIA */

  .story-grid {
    gap: 65px;
  }


  /* EBOOK */

  .ebook-grid {
    gap: 60px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .container {
    width: 88%;
  }


  /* =======================================================
     HEADER MOBILE
  ======================================================= */

  .header {
    padding: 20px 0;
  }

  .header-inner {
    width: 88%;
  }

  .navigation {
    display: none;
  }

  .brand {
    gap: 7px;
  }

  .brand-icon {
    width: 30px;
    height: 30px;
  }

  .brain-icon {
    width: 27px;
    height: 27px;
  }

  .brand-name {
    font-size: 15px;
  }


  /* =======================================================
     HERO MOBILE
  ======================================================= */

  .hero {
    min-height: auto;

    display: block;

    padding: 0;
  }

  .hero-image {
    position: relative;

    top: auto;
    right: auto;

    width: 100%;
    height: 520px;
  }

  .hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center 12%;
  }


  /* NO CELULAR A FOTO SOME NO FUNDO */

  .hero-image::after {
    background:
      linear-gradient(
        to bottom,

        transparent 38%,

        rgba(17, 23, 34, 0.08) 50%,

        rgba(17, 23, 34, 0.45) 67%,

        rgba(17, 23, 34, 0.85) 82%,

        var(--navy) 98%
      );
  }

  .hero-image::before {
    background:
      linear-gradient(
        to right,

        rgba(17, 23, 34, 0.15),

        transparent 20%,

        transparent 80%,

        rgba(17, 23, 34, 0.15)
      );
  }


  /* TEXTO HERO */

  .hero-content {
    min-height: auto;

    display: block;

    margin-top: -75px;

    padding-top: 0;
    padding-bottom: 90px;
  }

  .hero-text {
    width: 100%;
    max-width: none;
  }

  .eyebrow {
    margin-bottom: 20px;

    padding: 8px 12px;

    font-size: 7px;

    letter-spacing: 1.5px;
  }

  .hero-quote {
    font-size: 21px;

    line-height: 1.3;
  }

  .hero h1 {
    margin-bottom: 23px;

    font-size:
      clamp(43px, 13vw, 58px);

    line-height: 0.98;

    letter-spacing: -1px;
  }

  .hero-description {
    max-width: 100%;

    font-size: 13px;

    line-height: 1.8;
  }

  .button-primary {
    width: 100%;
    max-width: 340px;
  }


  /* =======================================================
     SOBRE MOBILE
  ======================================================= */

  .about {
    padding:
      95px 0;
  }

  .about-grid {
    display: flex;

    flex-direction: column;

    gap: 60px;
  }

  .about-image {
    width: 92%;

    margin: 0 auto;
  }

  .about-image-frame {
    border-radius:
      180px 180px 5px 5px;
  }

  .about-image-frame::after {
    border-radius:
      180px 180px 5px 5px;
  }

  .about-image::before {
    top: -15px;
    left: -15px;

    border-radius:
      180px 180px 5px 5px;
  }

  .about-image-frame img {
    height: 540px;
  }

  .about-image-detail {
    font-size: 15px;
  }

  .about h2 {
    font-size:
      clamp(48px, 14vw, 62px);
  }

  .about-intro {
    font-size: 23px;
  }

  .about-text p {
    font-size: 13px;

    line-height: 1.85;
  }

  .about-quote {
    font-size: 21px;
  }


  /* =======================================================
     HISTÓRIA MOBILE
  ======================================================= */

  .story {
    padding:
      100px 0;
  }

  .story-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .story-heading h2 {
    font-size:
      clamp(46px, 13vw, 60px);
  }

  .story-content {
    padding-top: 0;
  }

  .story-content > p {
    font-size: 13px;
  }

  .story-content .story-question {
    font-size: 29px;
  }

  .story-highlight p {
    font-size: 21px;
  }


  /* =======================================================
     PROJETO MOBILE
  ======================================================= */

  .project-intro {
    padding:
      105px 0;
  }

  .project-intro h2 {
    font-size:
      clamp(45px, 13vw, 60px);
  }

  .project-description {
    font-size: 13px;
  }

  .project-quote {
    font-size: 28px;
  }


  /* =======================================================
     EBOOK MOBILE
  ======================================================= */

  .ebook {
    padding:
      100px 0;
  }

  .ebook-grid {
    grid-template-columns: 1fr;

    gap: 65px;
  }

  .ebook-image img {
    max-width: 310px;
  }

  .ebook-content {
    text-align: center;
  }

  .ebook-content .section-label {
    text-align: center;
  }

  .ebook h2 {
    font-size:
      clamp(47px, 13vw, 60px);
  }

  .ebook-subtitle {
    font-size: 24px;
  }

  .ebook-description {
    margin-left: auto;
    margin-right: auto;

    font-size: 13px;
  }


  /* =======================================================
     FOOTER MOBILE
  ======================================================= */

  .footer {
    padding:
      45px 0;
  }

  .footer-content {
    flex-direction: column;

    text-align: center;
  }

}


/* =========================================================
   CELULARES PEQUENOS
========================================================= */

@media (max-width: 400px) {

  .hero-image {
    height: 470px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-quote {
    font-size: 19px;
  }

  .about-image-frame img {
    height: 480px;
  }

  .about h2,
  .story-heading h2,
  .project-intro h2,
  .ebook h2 {
    font-size: 44px;
  }

}

/* =========================================================
   ACABAMENTO PROFISSIONAL
   HEADER + MENU MOBILE + ANIMAÇÕES
========================================================= */


/* ---------------------------------------------------------
   HEADER COM TRANSIÇÃO
--------------------------------------------------------- */

.header {
  position: fixed;

  transition:
    background 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease;
}


/* QUANDO ROLAR A PÁGINA */

.header.scrolled {
  padding: 16px 0;

  background:
    rgba(17, 23, 34, 0.88);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom:
    1px solid rgba(201, 155, 98, 0.15);

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.12);
}


/* ---------------------------------------------------------
   BOTÃO HAMBÚRGUER
--------------------------------------------------------- */

.menu-toggle {
  display: none;

  position: relative;

  width: 42px;
  height: 42px;

  border:
    1px solid rgba(201, 155, 98, 0.35);

  border-radius: 50%;

  background:
    rgba(17, 23, 34, 0.2);

  cursor: pointer;

  z-index: 200;
}


.menu-toggle span {
  position: absolute;

  left: 50%;

  width: 17px;
  height: 1px;

  background: var(--gold);

  transform:
    translateX(-50%);

  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    top 0.3s ease;
}


.menu-toggle span:nth-child(1) {
  top: 14px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 26px;
}


/* TRANSFORMA O HAMBÚRGUER EM X */

.menu-toggle.active span:nth-child(1) {
  top: 20px;

  transform:
    translateX(-50%)
    rotate(45deg);
}


.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}


.menu-toggle.active span:nth-child(3) {
  top: 20px;

  transform:
    translateX(-50%)
    rotate(-45deg);
}


/* ---------------------------------------------------------
   MENU MOBILE
--------------------------------------------------------- */

.mobile-menu {
  position: fixed;

  top: 0;
  right: 0;

  width: min(88%, 390px);
  height: 100vh;

  padding:
    125px 45px 50px;

  background:
    rgba(12, 17, 25, 0.98);

  backdrop-filter:
    blur(20px);

  -webkit-backdrop-filter:
    blur(20px);

  transform:
    translateX(105%);

  transition:
    transform 0.45s
    cubic-bezier(0.76, 0, 0.24, 1);

  z-index: 150;

  box-shadow:
    -20px 0 60px
    rgba(0, 0, 0, 0.3);
}


.mobile-menu.active {
  transform:
    translateX(0);
}


.mobile-menu nav {
  display: flex;

  flex-direction: column;
}


.mobile-menu nav a {
  padding:
    19px 0;

  border-bottom:
    1px solid rgba(232, 216, 198, 0.1);

  color: var(--cream);

  font-family:
    var(--font-title);

  font-size: 31px;
  font-weight: 500;

  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}


.mobile-menu nav a:hover {
  padding-left: 8px;

  color: var(--gold);
}


.mobile-menu p {
  position: absolute;

  left: 45px;
  right: 45px;
  bottom: 45px;

  color:
    rgba(232, 216, 198, 0.55);

  font-family:
    var(--font-title);

  font-size: 17px;
  font-style: italic;

  line-height: 1.4;
}


/* ---------------------------------------------------------
   ANIMAÇÃO DE ENTRADA
--------------------------------------------------------- */

.reveal {
  opacity: 0;

  transform:
    translateY(35px);

  transition:
    opacity 0.85s ease,
    transform 0.85s
    cubic-bezier(0.22, 1, 0.36, 1);
}


.reveal.visible {
  opacity: 1;

  transform:
    translateY(0);
}


/* FOTO ENTRA MAIS SUAVEMENTE */

.reveal-image {
  opacity: 0;

  transform:
    translateY(30px)
    scale(0.97);

  transition:
    opacity 1s ease,
    transform 1s
    cubic-bezier(0.22, 1, 0.36, 1);
}


.reveal-image.visible {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}


/* ---------------------------------------------------------
   DETALHES DE INTERAÇÃO
--------------------------------------------------------- */

.about-image-frame img,
.ebook-image img {
  transition:
    transform 0.8s
    cubic-bezier(0.22, 1, 0.36, 1);
}


.about-image-frame:hover img {
  transform:
    scale(1.025);
}


.ebook-image:hover img {
  transform:
    translateY(-8px)
    rotate(-1deg);
}


/* BOTÕES MAIS REFINADOS */

.button-primary {
  position: relative;

  overflow: hidden;
}


.button-primary::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 60%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent
    );

  transform:
    skewX(-20deg);

  transition:
    left 0.7s ease;
}


.button-primary:hover::before {
  left: 150%;
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 700px) {

  .navigation {
    display: none;
  }


  .menu-toggle {
    display: block;
  }


  .header.scrolled {
    padding:
      13px 0;
  }


  .mobile-menu {
    display: block;
  }

}


/* ---------------------------------------------------------
   ACESSIBILIDADE:
   REDUZ ANIMAÇÕES PARA QUEM CONFIGUROU ISSO NO APARELHO
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-image,
  .button-primary,
  .about-image-frame img,
  .ebook-image img {
    transition: none;
  }

}

/* =========================================================
   POR DENTRO DO E-BOOK
========================================================= */

.inside-ebook {
  position: relative;
  padding: 140px 0;
  overflow: hidden;

  background: var(--cream);
  color: var(--navy);
}


/* CABEÇALHO */

.inside-header {
  max-width: 900px;
  margin-bottom: 85px;
}

.inside-header h2 {
  max-width: 850px;
  margin-bottom: 28px;

  font-family: var(--font-title);
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 600;

  line-height: 1;
  letter-spacing: -1.5px;

  color: var(--navy);
}

.inside-header h2 span {
  display: block;
  color: var(--rose);
}

.inside-header > p {
  max-width: 620px;

  color: #5c5a60;

  font-size: 14px;
  line-height: 1.9;
}


/* =========================================================
   LISTA
========================================================= */

.inside-list {
  border-top:
    1px solid rgba(17, 23, 34, 0.15);
}


/* CADA ITEM */

.inside-item {
  position: relative;

  display: grid;

  grid-template-columns:
    180px 1fr;

  gap: 50px;

  align-items: center;

  min-height: 190px;

  padding: 35px 20px;

  border-bottom:
    1px solid rgba(17, 23, 34, 0.15);

  overflow: hidden;

  transition:
    padding-left 0.4s ease,
    background 0.4s ease;
}


/* NÚMERO GRANDE */

.inside-number {
  position: relative;

  color:
    rgba(198, 158, 131, 0.30);

  font-family: var(--font-title);

  font-size: 95px;
  font-weight: 600;

  line-height: 1;

  transition:
    color 0.4s ease,
    transform 0.4s ease;
}


/* CONTEÚDO */

.inside-item-content {
  position: relative;

  display: grid;

  grid-template-columns:
    0.7fr 1fr;

  gap: 60px;

  align-items: center;

  z-index: 2;
}


.inside-item h3 {
  color: var(--navy);

  font-family: var(--font-title);

  font-size:
    clamp(28px, 3vw, 40px);

  font-weight: 600;

  line-height: 1.1;
}


.inside-item p {
  max-width: 470px;

  color: #5c5a60;

  font-size: 13px;

  line-height: 1.85;
}


/* HOVER */

.inside-item:hover {
  padding-left: 32px;

  background:
    rgba(198, 158, 131, 0.07);
}


.inside-item:hover .inside-number {
  color:
    rgba(201, 155, 98, 0.75);

  transform:
    translateX(6px);
}


/* =========================================================
   ESSA JORNADA PODE SER PARA VOCÊ
========================================================= */

.for-you {
  position: relative;

  padding: 140px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 30%,
      rgba(201, 155, 98, 0.10),
      transparent 32%
    ),
    var(--navy);
}


/* CÍRCULO DECORATIVO */

.for-you::after {
  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  right: -400px;
  bottom: -350px;

  border:
    1px solid rgba(201, 155, 98, 0.08);

  border-radius: 50%;

  pointer-events: none;
}


.for-you-grid {
  position: relative;

  display: grid;

  grid-template-columns:
    0.85fr 1.15fr;

  gap: 120px;

  z-index: 2;
}


/* TÍTULO */

.for-you-heading {
  position: sticky;
  top: 150px;

  align-self: start;
}


.for-you-heading h2 {
  max-width: 500px;

  color: var(--cream);

  font-family: var(--font-title);

  font-size:
    clamp(48px, 4.5vw, 68px);

  font-weight: 600;

  line-height: 1;

  letter-spacing: -1.5px;
}


.for-you-heading h2 span {
  display: block;

  margin-top: 8px;

  color: var(--rose);
}


/* =========================================================
   FRASES
========================================================= */

.for-you-list {
  border-top:
    1px solid rgba(232, 216, 198, 0.13);
}


.for-you-item {
  display: grid;

  grid-template-columns:
    55px 1fr;

  gap: 25px;

  padding:
    35px 0;

  border-bottom:
    1px solid rgba(232, 216, 198, 0.13);
}


.for-you-item span {
  padding-top: 3px;

  color: var(--gold);

  font-family: var(--font-title);

  font-size: 18px;
}


.for-you-item p {
  max-width: 580px;

  color: var(--text-soft);

  font-family: var(--font-title);

  font-size:
    clamp(22px, 2vw, 29px);

  font-weight: 400;

  line-height: 1.4;
}


/* =========================================================
   ANIMAÇÃO DOS NOVOS ELEMENTOS
========================================================= */

.inside-header,
.inside-item,
.for-you-heading,
.for-you-item {
  opacity: 0;

  transform:
    translateY(30px);

  transition:
    opacity 0.8s ease,
    transform 0.8s
    cubic-bezier(0.22, 1, 0.36, 1);
}


.inside-header.visible,
.inside-item.visible,
.for-you-heading.visible,
.for-you-item.visible {
  opacity: 1;

  transform:
    translateY(0);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {


  /* POR DENTRO DO EBOOK */

  .inside-ebook {
    padding:
      95px 0;
  }


  .inside-header {
    margin-bottom: 55px;
  }


  .inside-header h2 {
    font-size:
      clamp(43px, 12vw, 57px);

    line-height: 1;
  }


  .inside-header > p {
    font-size: 13px;
  }


  /* ITENS */

  .inside-item {
    display: block;

    min-height: auto;

    padding:
      30px 0 35px;
  }


  .inside-number {
    display: block;

    margin-bottom: 8px;

    font-size: 65px;
  }


  .inside-item-content {
    display: block;
  }


  .inside-item h3 {
    margin-bottom: 15px;

    font-size: 31px;
  }


  .inside-item p {
    font-size: 13px;

    line-height: 1.8;
  }


  .inside-item:hover {
    padding-left: 0;
  }


  /* PARA VOCÊ */

  .for-you {
    padding:
      100px 0;
  }


  .for-you-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }


  .for-you-heading {
    position: relative;

    top: auto;
  }


  .for-you-heading h2 {
    font-size:
      clamp(44px, 12vw, 58px);
  }


  .for-you-item {
    grid-template-columns:
      40px 1fr;

    gap: 15px;

    padding:
      27px 0;
  }


  .for-you-item p {
    font-size: 22px;
  }

}


/* ACESSIBILIDADE */

@media (prefers-reduced-motion: reduce) {

  .inside-header,
  .inside-item,
  .for-you-heading,
  .for-you-item {
    opacity: 1;

    transform: none;

    transition: none;
  }

}

/* =========================================================
   O QUE VOCÊ RECEBE
========================================================= */

.you-get {
  padding: 140px 0;
  background: #ebe4dc;
  color: var(--navy);
}

.you-get-header {
  max-width: 800px;
  margin-bottom: 75px;
}

.you-get-header h2 {
  margin-bottom: 25px;

  font-family: var(--font-title);
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 600;

  line-height: 1;
  letter-spacing: -1.5px;
}

.you-get-header h2 span {
  display: block;
  color: var(--rose);
}

.you-get-header > p {
  max-width: 620px;

  color: #5c5a60;

  font-size: 14px;
  line-height: 1.9;
}


/* CARDS */

.you-get-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top:
    1px solid rgba(17, 23, 34, 0.15);

  border-bottom:
    1px solid rgba(17, 23, 34, 0.15);
}

.you-get-item {
  min-height: 330px;

  padding: 45px 35px;

  border-right:
    1px solid rgba(17, 23, 34, 0.15);

  transition:
    background 0.4s ease,
    transform 0.4s ease;
}

.you-get-item:last-child {
  border-right: 0;
}

.you-get-item > span {
  display: block;

  margin-bottom: 55px;

  color: var(--gold);

  font-family: var(--font-title);
  font-size: 18px;
}

.you-get-item h3 {
  margin-bottom: 20px;

  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 600;

  line-height: 1.1;
}

.you-get-item p {
  color: #5c5a60;

  font-size: 13px;
  line-height: 1.85;
}

.you-get-item:hover {
  background:
    rgba(255, 255, 255, 0.32);

  transform:
    translateY(-5px);
}


/* =========================================================
   OFERTA
========================================================= */

.offer {
  position: relative;

  padding: 150px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 25% 50%,
      rgba(201, 155, 98, 0.12),
      transparent 32%
    ),
    #0c1119;
}

.offer-grid {
  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 110px;

  align-items: center;
}


/* LIVRO */

.offer-visual {
  position: relative;

  min-height: 650px;

  display: flex;

  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.offer-glow {
  position: absolute;

  width: 450px;
  height: 450px;

  border-radius: 50%;

  background:
    rgba(201, 155, 98, 0.13);

  filter: blur(80px);
}

/* =========================================================
   MOCKUP 3D DO E-BOOK
========================================================= */

.book-mockup {
  position: relative;

  width: 370px;
  aspect-ratio: 0.70;

  margin: 0 auto;

  perspective: 1600px;

  transform-style: preserve-3d;

  z-index: 3;

  transition:
    transform 0.8s
    cubic-bezier(0.22, 1, 0.36, 1);
}


/* CAPA */

.book-cover {
  position: absolute;

  inset: 0;

  z-index: 5;

  overflow: hidden;

  background: var(--navy);

  transform:
    rotateY(-8deg)
    rotateX(2deg);

  transform-origin: left center;

  box-shadow:
    18px 25px 55px rgba(0, 0, 0, 0.38),
    4px 5px 15px rgba(0, 0, 0, 0.22);

  transition:
    transform 0.8s
    cubic-bezier(0.22, 1, 0.36, 1);
}


.book-cover img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* BRILHO MUITO SUTIL NA CAPA */

.book-cover::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.09) 0%,
      transparent 20%,
      transparent 75%,
      rgba(0, 0, 0, 0.15) 100%
    );

  pointer-events: none;
}


/* =========================================================
   PÁGINAS DO LIVRO
========================================================= */

.book-pages {
  position: absolute;

  top: 8px;
  right: -15px;

  width: 98%;
  height: calc(100% - 16px);

  z-index: 2;

  background:
    repeating-linear-gradient(
      to right,
      #f7f2ea 0px,
      #f7f2ea 2px,
      #ddd4c9 3px,
      #f4eee7 4px
    );

  transform:
    rotateY(-8deg)
    translateZ(-8px);

  box-shadow:
    14px 16px 30px
    rgba(0, 0, 0, 0.28);
}


/* =========================================================
   LOMBADA
========================================================= */

.book-spine {
  position: absolute;

  top: 3px;
  left: -13px;

  width: 20px;
  height: calc(100% - 6px);

  z-index: 4;

  background:
    linear-gradient(
      to right,
      #080c13,
      #182131 45%,
      #0b1018
    );

  transform:
    rotateY(20deg);

  transform-origin:
    right center;

  box-shadow:
    -7px 5px 18px
    rgba(0, 0, 0, 0.35);
}


/* LINHA DOURADA NA LOMBADA */

.book-spine::after {
  content: "";

  position: absolute;

  top: 0;
  right: 3px;

  width: 1px;
  height: 100%;

  background:
    rgba(201, 155, 98, 0.45);
}


/* =========================================================
   SOMBRA DO LIVRO
========================================================= */

.book-shadow {
  position: absolute;

  left: 12%;
  bottom: -55px;

  width: 90%;
  height: 55px;

  z-index: 0;

  border-radius: 50%;

  background:
    rgba(0, 0, 0, 0.42);

  filter:
    blur(22px);

  transform:
    rotate(-2deg);
}


/* =========================================================
   EFEITO AO PASSAR O MOUSE
========================================================= */

.book-mockup:hover {
  transform:
    translateY(-10px);
}


.book-mockup:hover .book-cover {
  transform:
    rotateY(-4deg)
    rotateX(1deg);
}


/* =========================================================
   LUZ ATRÁS DO LIVRO
========================================================= */

.offer-visual::before {
  content: "";

  position: absolute;

  width: 470px;
  height: 470px;

  top: 50%;
  left: 50%;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(201, 155, 98, 0.17),
      rgba(201, 155, 98, 0.05) 45%,
      transparent 70%
    );

  filter: blur(10px);

  pointer-events: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .book-mockup {
    width: min(76vw, 300px);
  }


  .book-pages {
    right: -10px;
  }


  .book-spine {
    left: -9px;
    width: 14px;
  }


  .book-shadow {
    bottom: -40px;
  }


  .offer-visual::before {
    width: 360px;
    height: 360px;
  }

}

.offer-detail {
  position: relative;

  margin-top: 35px;

  z-index: 2;

  color:
    rgba(232, 216, 198, 0.45);

  font-size: 8px;

  letter-spacing: 3px;

  text-transform: uppercase;
}


/* CONTEÚDO */

.offer-content {
  max-width: 590px;
}

.offer-content h2 {
  margin-bottom: 30px;

  color: var(--cream);

  font-family: var(--font-title);

  font-size:
    clamp(48px, 4.5vw, 69px);

  font-weight: 600;

  line-height: 1;

  letter-spacing: -1.5px;
}

.offer-content h2 span {
  display: block;

  margin-top: 7px;

  color: var(--rose);
}

.offer-description {
  margin-bottom: 35px;

  color: var(--text-soft);

  font-size: 14px;
  line-height: 1.9;
}


/* O QUE INCLUI */

.offer-includes {
  margin-bottom: 38px;

  padding:
    25px 0;

  border-top:
    1px solid rgba(232, 216, 198, 0.12);

  border-bottom:
    1px solid rgba(232, 216, 198, 0.12);
}

.offer-includes > div {
  display: flex;

  align-items: center;

  gap: 13px;

  padding:
    8px 0;
}

.offer-includes span {
  color: var(--gold);

  font-size: 12px;
}

.offer-includes p {
  color: var(--text-soft);

  font-size: 12px;
}


/* PREÇO / PRODUTO */

.offer-price {
  margin-bottom: 28px;
}

.offer-price-label {
  display: block;

  margin-bottom: 8px;

  color: var(--gold);

  font-size: 8px;
  font-weight: 600;

  letter-spacing: 2px;
}

.offer-price p {
  color: var(--cream);

  font-family: var(--font-title);

  font-size: 26px;
}

.offer-price strong {
  color: var(--rose);

  font-weight: 600;
}


/* BOTÃO */

.offer-button {
  min-width: 330px;
}

.offer-note {
  display: block;

  margin-top: 15px;

  color:
    rgba(232, 216, 198, 0.45);

  font-size: 9px;
}


/* =========================================================
   FAQ
========================================================= */

.faq {
  padding: 140px 0;

  background: var(--cream);

  color: var(--navy);
}

.faq-grid {
  display: grid;

  grid-template-columns:
    0.8fr 1.2fr;

  gap: 110px;
}

.faq-heading h2 {
  max-width: 480px;

  margin-bottom: 25px;

  font-family: var(--font-title);

  font-size:
    clamp(48px, 4.5vw, 67px);

  font-weight: 600;

  line-height: 1;
}

.faq-heading h2 span {
  display: block;

  color: var(--rose);
}

.faq-heading > p {
  color: #777279;

  font-size: 12px;
}


/* PERGUNTAS */

.faq-list {
  border-top:
    1px solid rgba(17, 23, 34, 0.15);
}

.faq-item {
  border-bottom:
    1px solid rgba(17, 23, 34, 0.15);
}

.faq-question {
  width: 100%;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding:
    27px 0;

  border: 0;

  background: transparent;

  color: var(--navy);

  font-family: var(--font-title);

  font-size: 22px;

  text-align: left;

  cursor: pointer;
}

.faq-question strong {
  color: var(--gold);

  font-family: var(--font-body);

  font-size: 25px;
  font-weight: 300;

  transition:
    transform 0.3s ease;
}


/* RESPOSTA FECHADA */

.faq-answer {
  max-height: 0;

  overflow: hidden;

  opacity: 0;

  transition:
    max-height 0.45s ease,
    opacity 0.35s ease;
}

.faq-answer p {
  max-width: 600px;

  padding:
    0 45px 28px 0;

  color: #5c5a60;

  font-size: 13px;

  line-height: 1.85;
}


/* ABERTA */

.faq-item.active .faq-answer {
  max-height: 250px;

  opacity: 1;
}

.faq-item.active .faq-question strong {
  transform:
    rotate(45deg);
}


/* =========================================================
   FECHAMENTO
========================================================= */

.final-cta {
  position: relative;

  min-height: 720px;

  display: flex;

  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(201, 155, 98, 0.14),
      transparent 35%
    ),
    var(--navy);

  text-align: center;
}

.final-cta::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  top: 50%;
  left: 50%;

  transform:
    translate(-50%, -50%);

  border:
    1px solid rgba(201, 155, 98, 0.09);

  border-radius: 50%;
}

.final-cta-content {
  position: relative;

  max-width: 850px;

  z-index: 2;
}

.final-small {
  margin-bottom: 25px;

  color: var(--text-soft);

  font-family: var(--font-title);

  font-size: 19px;

  font-style: italic;
}

.final-cta h2 {
  margin-bottom: 30px;

  color: var(--cream);

  font-family: var(--font-title);

  font-size:
    clamp(55px, 6vw, 88px);

  font-weight: 600;

  line-height: 0.95;

  letter-spacing: -2px;
}

.final-cta h2 span {
  display: block;

  color: var(--rose);
}

.final-description {
  max-width: 580px;

  margin:
    0 auto 38px;

  color: var(--text-soft);

  font-size: 14px;

  line-height: 1.9;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  /* O QUE RECEBE */

  .you-get {
    padding:
      95px 0;
  }

  .you-get-header {
    margin-bottom: 55px;
  }

  .you-get-header h2 {
    font-size:
      clamp(44px, 12vw, 58px);
  }

  .you-get-header > p {
    font-size: 13px;
  }

  .you-get-grid {
    grid-template-columns: 1fr;
  }

  .you-get-item {
    min-height: auto;

    padding:
      35px 5px;

    border-right: 0;

    border-bottom:
      1px solid rgba(17, 23, 34, 0.15);
  }

  .you-get-item:last-child {
    border-bottom: 0;
  }

  .you-get-item > span {
    margin-bottom: 25px;
  }


  /* OFERTA */

  .offer {
    padding:
      95px 0;
  }

  .offer-grid {
    grid-template-columns: 1fr;

    gap: 65px;
  }

  .offer-visual {
    min-height: auto;
  }

  .offer-book {
    width: min(78%, 310px);
  }

  .offer-content h2 {
    font-size:
      clamp(45px, 12vw, 59px);
  }

  .offer-description {
    font-size: 13px;
  }

  .offer-button {
    width: 100%;

    min-width: 0;
  }


  /* FAQ */

  .faq {
    padding:
      95px 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .faq-heading h2 {
    font-size:
      clamp(45px, 12vw, 58px);
  }

  .faq-question {
    font-size: 20px;

    line-height: 1.25;
  }


  /* FINAL */

  .final-cta {
    min-height: 650px;

    padding:
      100px 0;
  }

  .final-cta h2 {
    font-size:
      clamp(49px, 14vw, 65px);
  }

  .final-description {
    font-size: 13px;
  }

}