:root {
  --mint: #00ffc2;
  --pink: #ef3586;
  --yellow: #ffc11d;
  --blue: #0095a4;
  --green: #83c34b;

  --black: #050505;
  --white: #ffffff;
  --offwhite: #fbfaf7;
  --line: #e8e6df;
  --text-soft: #55534f;

  --container: 1220px;
  --radius: 26px;
  --header-h: 96px;
}


/* =========================================================
   BASE
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  color: var(--black);
  background: var(--white);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.5;

  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;

  z-index: 9999;

  background: var(--black);
  color: var(--white);

  padding: 10px 14px;
  border-radius: 8px;
}

/* =========================================================
   RETORNO DO FORMULÁRIO
   ========================================================= */

.form-status {
  min-height: 24px;

  margin-top: 4px;

  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}


.form-status.success {
  padding: 14px 16px;

  background: var(--mint);

  border: 2px solid var(--black);
}


.form-status.error {
  padding: 14px 16px;

  background: #ffe2e2;

  border: 2px solid var(--black);
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;

  padding: 112px 0;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;

  z-index: 100;

  background: rgba(255, 255, 255, 0.94);

  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(5, 5, 5, 0.07);
}

.header-inner {
  height: var(--header-h);

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand img {
  display: block;
  width: auto;
  height: 68px;
  max-height: 72%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;

  gap: 30px;

  font-size: 14px;
  font-weight: 800;
}

.main-nav > a:not(.btn) {
  position: relative;
}

.main-nav > a:not(.btn)::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 3px;

  background: var(--mint);

  transition: width 0.2s ease;
}

.main-nav > a:not(.btn):hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;

  border: 0;
  background: none;

  padding: 8px;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 26px;
  height: 3px;

  background: var(--black);

  margin: 5px 0;
}


/* =========================================================
   TIPOGRAFIA
   ========================================================= */

.eyebrow {
  display: inline-block;

  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;

  margin-bottom: 18px;
}

h1,
h2,
h3 {
  margin: 0;

  line-height: 0.98;

  letter-spacing: -0.045em;
}

h1,
h2 {
  font-family:
    "Arial Black",
    "Arial Narrow",
    Impact,
    sans-serif;

  text-transform: uppercase;
}

h1 {
  font-size: clamp(50px, 6vw, 92px);

  max-width: 770px;
}

h2 {
  font-size: clamp(42px, 5vw, 74px);

  max-width: 880px;
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
}

.lead {
  font-size: clamp(18px, 2vw, 22px);

  max-width: 680px;

  color: var(--text-soft);

  line-height: 1.55;
}


/* =========================================================
   BOTÕES
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 54px;

  padding: 0 24px;

  border-radius: 999px;
  border: 2px solid var(--black);

  font-weight: 900;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);

  box-shadow: 5px 5px 0 var(--black);
}

.btn-small {
  min-height: 44px;

  padding-inline: 20px;
}

.btn-primary {
  background: var(--mint);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.text-link {
  font-weight: 900;

  border-bottom: 2px solid var(--black);

  padding-bottom: 3px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: calc(100svh - var(--header-h));

  display: grid;
  align-items: center;

  padding-top: 72px;
}

.hero-grid {
  display: grid;

  grid-template-columns: 1.06fr 0.94fr;

  gap: 64px;

  align-items: center;
}

.hero-copy {
  position: relative;

  z-index: 2;
}

.hero-copy .lead {
  margin-top: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 28px;

  margin-top: 36px;
}


/* =========================================================
   DESTAQUES NAS PALAVRAS
   ========================================================= */

.scribble {
  position: relative;

  z-index: 0;

  display: inline-block;
}

.scribble::before {
  content: "";

  position: absolute;

  left: -4%;
  right: -4%;
  bottom: 2%;

  height: 26%;

  z-index: -1;

  border-radius: 50% 35% 55% 40%;

  transform: rotate(-1.5deg);
}

.scribble.green::before {
  background: var(--mint);
}

.scribble.pink::before {
  background: rgba(239, 53, 134, 0.45);
}


/* =========================================================
   HERO — ÁREA VISUAL
   ========================================================= */

.hero-art {
  position: relative;

  min-height: 580px;
}


/* Mancha verde atrás dos livros */

.blob {
  position: absolute;

  width: 470px;
  height: 440px;

  right: 0;
  top: 70px;

  background: var(--mint);

  border-radius:
    38% 62% 48% 52%
    /
    55% 43% 57% 45%;

  transform: rotate(8deg);

  z-index: 1;
}


/* =========================================================
   HERO — TRÊS CAPAS ALEATÓRIAS
   ========================================================= */

.hero-books {
  position: absolute;

  inset: 0;

  z-index: 3;
}


/*
  Cada hero-cover funciona como uma área de posicionamento.

  A imagem interna mantém SEMPRE a proporção original.
*/

.hero-cover {
  position: absolute;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    transform 0.3s ease,
    filter 0.3s ease;

  cursor: pointer;
}


/* Capa real */

.hero-cover img {
  display: block;

  width: auto;
  height: auto;

  max-width: 100%;
  max-height: 100%;

  object-fit: contain;

  filter:
    drop-shadow(
      0 18px 14px rgba(0, 0, 0, 0.20)
    );

  transition:
    filter 0.3s ease;
}


/* =========================================================
   CAPA 1 — ESQUERDA
   ========================================================= */

.hero-cover-a {
  width: 225px;
  height: 320px;

  left: 20px;
  top: 150px;

  transform: rotate(-7deg);
}


/* =========================================================
   CAPA 2 — SUPERIOR DIREITA
   ========================================================= */

.hero-cover-b {
  width: 225px;
  height: 320px;

  right: 10px;
  top: 35px;

  transform: rotate(6deg);
}


/* =========================================================
   CAPA 3 — INFERIOR DIREITA
   ========================================================= */

.hero-cover-c {
  width: 225px;
  height: 320px;

  right: 75px;
  bottom: 5px;

  transform: rotate(-2deg);
}


/* =========================================================
   HOVER DAS CAPAS
   ========================================================= */

.hero-cover-a:hover {
  transform:
    translateY(-10px)
    rotate(-5deg)
    scale(1.03);
}

.hero-cover-b:hover {
  transform:
    translateY(-10px)
    rotate(4deg)
    scale(1.03);
}

.hero-cover-c:hover {
  transform:
    translateY(-10px)
    rotate(0deg)
    scale(1.03);
}

.hero-cover:hover img {
  filter:
    drop-shadow(
      0 24px 18px rgba(0, 0, 0, 0.25)
    );
}


/* =========================================================
   ESTRELAS
   ========================================================= */

.spark {
  position: absolute;

  display: block;

  width: 68px;

  aspect-ratio: 1;

  clip-path:
    polygon(
      50% 0,
      57% 43%,
      100% 50%,
      57% 57%,
      50% 100%,
      43% 57%,
      0 50%,
      43% 43%
    );

  z-index: 4;
}

.spark-pink {
  background: var(--pink);
}

.spark-yellow {
  background: var(--yellow);
}

.spark-blue {
  background: var(--blue);
}

.spark-green {
  background: var(--green);
}

.spark-white {
  background: var(--white);
}


/* Estrelas do Hero */

.s1 {
  left: -18px;
  top: 45px;

  width: 72px;
}

.s2 {
  right: 38px;
  top: 5px;

  width: 34px;
}

.s3 {
  right: -32px;
  top: 305px;

  width: 58px;
}

.s4 {
  left: 110px;
  bottom: 22px;

  width: 44px;
}


/* =========================================================
   SEÇÃO LIVROS
   ========================================================= */

.books {
  background: var(--offwhite);
}

.section-heading {
  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  gap: 32px;

  margin-bottom: 58px;
}

.section-heading h2 {
  max-width: 780px;
}


/* =========================================================
   GRID DOS LIVROS
   ========================================================= */

.book-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 34px 26px;
}

.book-card {
  min-width: 0;
}


/* =========================================================
   ÁREA DA CAPA
   ========================================================= */

.book-stage {
  position: relative;

  min-height: 390px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 34px 22px;

  isolation: isolate;

  overflow: visible;
}


/* =========================================================
   MANCHA ATRÁS DA CAPA
   ========================================================= */

.book-blob {
  position: absolute;

  z-index: -1;

  width: 86%;
  height: 76%;

  left: 7%;
  top: 12%;

  border-radius:
    48% 52% 44% 56%
    /
    54% 38% 62% 46%;

  transform: rotate(-3deg);

  transition:
    transform 0.25s ease,
    width 0.25s ease,
    height 0.25s ease;
}


/* =========================================================
   CORES DAS MANCHAS
   ========================================================= */

.book-card[data-accent="yellow"] .book-blob {
  background: var(--yellow);
}

.book-card[data-accent="mint"] .book-blob {
  background: var(--mint);
}

.book-card[data-accent="pink"] .book-blob {
  background: rgba(239, 53, 134, 0.88);
}

.book-card[data-accent="blue"] .book-blob {
  background: rgba(0, 149, 164, 0.9);
}

.book-card[data-accent="green"] .book-blob {
  background: var(--green);
}


/* =========================================================
   IMAGEM DA CAPA
   ========================================================= */

.book-image {
  position: relative;

  z-index: 2;

  display: block;

  width: auto;
  height: auto;

  max-width: 100%;
  max-height: 330px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 14px 12px rgba(5, 5, 5, 0.18)
    );

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}


/* =========================================================
   CAPA RETRATO
   ========================================================= */

.book-image.is-portrait {
  max-width: 78%;
  max-height: 340px;
}


/* =========================================================
   CAPA QUADRADA
   ========================================================= */

.book-image.is-square {
  max-width: 88%;
  max-height: 300px;
}


/* =========================================================
   CAPA PAISAGEM
   ========================================================= */

.book-image.is-landscape {
  max-width: 100%;
  max-height: 245px;
}


/* Mancha para livro quadrado */

.book-card:has(.book-image.is-square) .book-blob {
  width: 84%;
  height: 66%;

  left: 8%;
  top: 17%;
}


/* Mancha para livro paisagem */

.book-card:has(.book-image.is-landscape) .book-blob {
  width: 96%;
  height: 56%;

  left: 2%;
  top: 22%;

  border-radius:
    42% 58% 54% 46%
    /
    51% 39% 61% 49%;
}


/* =========================================================
   HOVER LIVROS
   ========================================================= */

.book-card:hover .book-image {
  transform:
    translateY(-9px)
    rotate(-1deg);

  filter:
    drop-shadow(
      0 20px 16px rgba(5, 5, 5, 0.22)
    );
}

.book-card:hover .book-blob {
  transform:
    rotate(2deg)
    scale(1.03);
}


/* =========================================================
   INFORMAÇÕES DOS LIVROS
   ========================================================= */

.book-meta {
  padding: 18px 2px 0;
}

.book-meta h3 {
  font-size: 19px;

  line-height: 1.15;

  letter-spacing: -0.02em;
}

.book-meta p {
  color: var(--text-soft);

  margin-top: 7px;

  font-size: 14px;
}

.book-meta a {
  display: inline-block;

  font-weight: 900;

  margin-top: 15px;

  font-size: 14px;

  border-bottom: 2px solid transparent;

  transition:
    border-color 0.2s ease;
}

.book-meta a:hover {
  border-color: var(--black);
}


/* =========================================================
   NOSSO MANIFESTO
   ========================================================= */

.color-block {
  overflow: hidden;
}

.yellow-block {
  background: var(--yellow);
}

.manifesto-grid {
  display: grid;

  grid-template-columns:
    0.88fr 1.12fr;

  gap: 72px;

  align-items: center;
}

.manifesto-copy h2 {
  font-size:
    clamp(52px, 6vw, 86px);

  max-width: 780px;
}

.manifesto-copy p {
  max-width: 650px;

  font-size: 19px;

  line-height: 1.6;

  margin-top: 24px;
}


/* =========================================================
   ÁREA DA IMAGEM DO MENINO
   ========================================================= */

.manifesto-art {
  min-height: 430px;

  position: relative;
}


/*
  Menino com balão.

  Desktop:
  largura-base de 280px.
*/

.manifesto-character {
  position: absolute;

  z-index: 2;

  left: 50%;
  bottom: 0;

  transform: translateX(-50%);

  width: 310px;
  max-width: 70%;

  max-height: 500px;

  object-fit: contain;

  object-position: center bottom;
}


/* =========================================================
   ESTRELAS DO MANIFESTO
   ========================================================= */

.m1 {
  left: 0;
  top: 10px;
}

.m2 {
  right: 40px;
  top: 85px;

  width: 58px;
}

.m3 {
  left: 64px;
  bottom: 25px;

  width: 52px;
}

.m4 {
  right: 72px;
  bottom: 2px;

  width: 38px;
}


/* =========================================================
   QUEM SOMOS
   ========================================================= */

.about {
  overflow: hidden;
}

.about-grid {
  display: grid;

  grid-template-columns:
    1.08fr 0.92fr;

  gap: 84px;

  align-items: start;
}

.about-copy {
  padding-top: 56px;
}

.about-copy p {
  font-size: 19px;

  line-height: 1.7;

  color: var(--text-soft);

  margin-bottom: 22px;
}

.highlight {
  position: relative;

  display: inline;
}

.highlight::after {
  content: "";

  position: absolute;

  z-index: -1;

  left: -2%;
  right: -2%;
  bottom: 7%;

  height: 22%;

  background: var(--mint);

  transform: rotate(-1deg);
}

.about-spark {
  right: -32px;
  bottom: 36px;

  width: 130px;

  opacity: 0.9;
}


/* =========================================================
   VALORES
   ========================================================= */

.values {
  padding-top: 72px;

  border-top: 1px solid var(--line);
}

.value-list {
  border-top:
    2px solid var(--black);
}

.value-item {
  display: grid;

  grid-template-columns:
    110px 1.2fr 1fr;

  gap: 28px;

  align-items: center;

  padding: 34px 0;

  border-bottom:
    2px solid var(--black);
}

.value-number {
  font-family:
    "Arial Black",
    Impact,
    sans-serif;

  font-size: 50px;

  line-height: 1;
}

.value-item h3 {
  font-size:
    clamp(32px, 4vw, 58px);

  font-family:
    "Arial Black",
    Impact,
    sans-serif;

  text-transform: uppercase;
}

.value-item p {
  max-width: 390px;

  font-size: 17px;

  color: var(--text-soft);
}

.pink-text {
  color: var(--pink);
}

.yellow-text {
  color: #dca000;
}

.blue-text {
  color: var(--blue);
}

.green2-text {
  color: var(--green);
}


/* =========================================================
   PUBLIQUE CONOSCO
   ========================================================= */

.mint-block {
  background: var(--mint);
}

.publish-grid {
  display: grid;

  grid-template-columns:
    1.15fr 0.85fr;

  gap: 84px;

  align-items: end;
}

.publish-grid h2 {
  max-width: 770px;
}

.publish-grid p {
  max-width: 520px;

  font-size: 19px;

  line-height: 1.65;

  margin-bottom: 28px;
}

.p1 {
  right: 5%;
  top: 12%;

  width: 85px;
}

.p2 {
  left: 47%;
  bottom: 4%;

  width: 46px;
}


/* =========================================================
   CONTATO
   ========================================================= */

.contact-grid {
  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 90px;

  align-items: start;
}

.contact-grid > div > p {
  margin-top: 24px;

  max-width: 550px;

  font-size: 18px;

  color: var(--text-soft);
}

.contact-links {
  display: grid;

  gap: 12px;

  margin-top: 34px;

  font-weight: 900;
}


/* =========================================================
   FORMULÁRIO
   ========================================================= */

.contact-form {
  display: grid;

  gap: 18px;

  padding: 38px;

  background: var(--offwhite);

  border:
    2px solid var(--black);

  box-shadow:
    9px 9px 0 var(--yellow);
}

.contact-form label {
  display: grid;

  gap: 8px;

  font-weight: 900;

  font-size: 13px;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  border: 1px solid #b8b5ad;

  background: var(--white);

  padding: 15px;

  border-radius: 0;

  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--black);

  box-shadow:
    0 0 0 3px var(--mint);
}

.contact-form small {
  color: var(--text-soft);
}


/* =========================================================
   RODAPÉ
   ========================================================= */

.site-footer {
  position: relative;

  overflow: hidden;

  background: var(--black);

  color: var(--white);

  padding: 78px 0 58px;
}

.footer-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    1.4fr 0.7fr 0.9fr;

  gap: 60px;
}

.footer-logo {
  width: 150px;

  margin-bottom: 18px;
}

.footer-grid p {
  color: #c9c9c9;
}

.footer-nav {
  display: grid;

  align-content: start;

  gap: 13px;

  font-weight: 900;
}

.footer-meta {
  display: grid;

  align-content: end;

  gap: 10px;

  text-align: right;
}


/* =========================================================
   ESTRELAS DO RODAPÉ
   ========================================================= */

.f1 {
  left: 3%;
  top: 20px;

  width: 44px;
}

.f2 {
  right: 8%;
  top: 32px;

  width: 32px;
}

.f3 {
  left: 58%;
  bottom: -20px;

  width: 70px;
}

.f4 {
  right: 1%;
  bottom: 15px;

  width: 45px;
}


/* =========================================================
   ANIMAÇÕES DE ENTRADA
   ========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(26px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;

  transform: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1020px) {

  :root {
    --header-h: 82px;
  }


  /* GERAL */

  .section {
    padding: 86px 0;
  }


  /* HEADER */

  .header-inner {
    height: var(--header-h);
  }

.brand img {
  width: auto;
  height: 56px;
  max-height: 70%;
}

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;

    position: absolute;

    top: var(--header-h);
    left: 0;
    right: 0;

    background: var(--white);

    padding: 24px;

    border-bottom:
      2px solid var(--black);

    flex-direction: column;

    align-items: stretch;

    gap: 20px;
  }

  .main-nav.is-open {
    display: flex;
  }

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


  /* GRIDS */

  .hero-grid,
  .manifesto-grid,
  .about-grid,
  .publish-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }


  /* HERO */

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 540px;

    max-width: 650px;

    width: 100%;

    margin: 0 auto;
  }


  /* HERO — CAPAS */

  .hero-cover-a,
  .hero-cover-b,
  .hero-cover-c {
    width: 205px;
    height: 290px;
  }


  .hero-cover-a {
    left: 6%;
    top: 145px;
  }

  .hero-cover-b {
    right: 7%;
    top: 30px;
  }

  .hero-cover-c {
    right: 25%;
    bottom: 5px;
  }


  /* MANCHA */

  .blob {
    right: 50%;

    transform:
      translateX(50%)
      rotate(8deg);
  }


  /* CATÁLOGO */

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

  .book-stage {
    min-height: 410px;
  }


  /* MANIFESTO */

  .manifesto-grid {
    gap: 38px;
  }

  .manifesto-art {
    min-height: 350px;
  }

  .manifesto-character {
    width: 250px;

    max-width: 65%;

    max-height: 300px;
  }


  /* QUEM SOMOS */

  .about-copy {
    padding-top: 0;
  }


  /* VALORES */

  .value-item {
    grid-template-columns:
      85px 0.7fr 1fr;
  }


  /* RODAPÉ */

  .footer-grid {
    grid-template-columns:
      1fr 1fr;
  }

  .footer-meta {
    text-align: left;
  }
}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 680px) {

  /* CONTAINER */

  .container {
    width:
      min(
        calc(100% - 32px),
        var(--container)
      );
  }


  /* SEÇÕES */

  .section {
    padding: 72px 0;
  }


  /* TIPOGRAFIA */

  h1 {
    font-size:
      clamp(44px, 14vw, 64px);
  }

  h2 {
    font-size:
      clamp(38px, 12vw, 56px);
  }


  /* HERO */

  .hero {
    padding-top: 54px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-art {
    min-height: 430px;

    width: 100%;

    max-width: 430px;

    margin-inline: auto;
  }

.brand img {
  height: 52px;
}

  /* MANCHA VERDE HERO */

  .blob {
    width: 340px;
    height: 330px;

    max-width: 94vw;

    right: 50%;
    top: 60px;

    transform:
      translateX(50%)
      rotate(8deg);
  }


  /* =====================================================
     CAPAS DO HERO — MOBILE
     ===================================================== */

  .hero-cover-a,
  .hero-cover-b,
  .hero-cover-c {
    width: 155px;
    height: 220px;
  }


  /* Livro esquerdo */

  .hero-cover-a {
    left: 0;
    top: 125px;
  }


  /* Livro superior direito */

  .hero-cover-b {
    right: 0;
    top: 25px;
  }


  /* Livro inferior */

  .hero-cover-c {
    right: 22%;
    bottom: 0;
  }


  /* Evita hover estranho em dispositivos touch */

  .hero-cover-a:hover {
    transform: rotate(-7deg);
  }

  .hero-cover-b:hover {
    transform: rotate(6deg);
  }

  .hero-cover-c:hover {
    transform: rotate(-2deg);
  }


  /* ESTRELAS HERO */

  .s1 {
    left: -5px;
    top: 45px;

    width: 55px;
  }

  .s2 {
    right: 18px;
    top: 0;

    width: 28px;
  }

  .s3 {
    right: -6px;
    top: 260px;

    width: 45px;
  }

  .s4 {
    left: 70px;
    bottom: 12px;

    width: 36px;
  }


  /* =====================================================
     LIVROS
     ===================================================== */

  .book-grid {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .book-stage {
    min-height: 390px;

    padding-inline: 20px;
  }

  .book-image.is-portrait {
    max-height: 330px;
  }

  .book-image.is-square {
    max-height: 300px;
  }

  .book-image.is-landscape {
    max-height: 240px;
  }


  /* TÍTULOS DAS SEÇÕES */

  .section-heading {
    display: block;
  }

  .desktop-link {
    display: none;
  }


  /* =====================================================
     MANIFESTO
     ===================================================== */

  .manifesto-grid {
    gap: 22px;
  }

  .manifesto-art {
    min-height: 285px;
  }

  .manifesto-character {
    width: 210px;

    max-width: 62%;

    max-height: 260px;
  }


  /* ESTRELAS MANIFESTO */

  .m1 {
    left: 4%;
    top: 10px;

    width: 52px;
  }

  .m2 {
    right: 4%;
    top: 65px;

    width: 42px;
  }

  .m3 {
    left: 10%;
    bottom: 15px;

    width: 38px;
  }

  .m4 {
    right: 12%;
    bottom: 10px;

    width: 28px;
  }


  /* =====================================================
     VALORES
     ===================================================== */

  .value-item {
    grid-template-columns:
      70px 1fr;

    gap: 16px;
  }

  .value-item p {
    grid-column: 2;
  }


  /* =====================================================
     FORMULÁRIO
     ===================================================== */

  .contact-form {
    padding: 24px;
  }


  /* =====================================================
     RODAPÉ
     ===================================================== */

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    text-align: left;
  }
}


/* =========================================================
   CELULARES MUITO PEQUENOS
   ========================================================= */

@media (max-width: 420px) {

  .hero-art {
    min-height: 390px;
  }

  .blob {
    width: 300px;
    height: 295px;
  }

  .hero-cover-a,
  .hero-cover-b,
  .hero-cover-c {
    width: 135px;
    height: 195px;
  }

  .hero-cover-a {
    left: 0;
    top: 115px;
  }

  .hero-cover-b {
    right: 0;
    top: 20px;
  }

  .hero-cover-c {
    right: 20%;
    bottom: 0;
  }

  .manifesto-character {
    width: 190px;
    max-width: 65%;
  }
}


/* =========================================================
   ACESSIBILIDADE
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration:
      0.001ms !important;

    animation-duration:
      0.001ms !important;

    animation-iteration-count:
      1 !important;
  }

  .reveal {
    opacity: 1;

    transform: none;
  }
}