/* =========================
   Variables base
   ========================= */

:root{
  --bg: #0b1411;
  --text: #c7cbc5;
  --muted: #bfc5c0;
}

/* =========================
   Reset básico
   ========================= */

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
}

body{
  background: var(--bg);
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
}

/* =========================
   Hero / Banner
   ========================= */

.hero{ width: 100%; }

.hero-img{
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   Manifiesto
   ========================= */

.manifesto{
  padding: 96px 32px 120px;
}

.manifesto-inner{
  max-width: 580px;
  margin: 0 auto;

  font-size: 21px;
  line-height: 1.9;
  letter-spacing: 0.6px;
}

.manifesto-inner p{
  margin: 0 0 28px;
}

.manifesto-inner p.highlight{
  color: #eef1ec;
  letter-spacing: 0.8px;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* =========================
   Sello Apply (sticky)
   ========================= */

.apply-seal{
  position: sticky;
  top: 24px;

  width: 96px;
  height: 96px;

  float: left;
  margin-left: 0;      /* <-- quita el negativo */
  margin-right: 24px;

  opacity: 0.85;
}

.apply-seal img{
  width: 100%;
  height: 100%;
  display: block;
}

.apply-seal:hover{
  opacity: 1;
  transform: scale(1.01);
}

/* Limpia el float */
.manifesto::after{
  content: "";
  display: block;
  clear: both;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 640px){
  .manifesto{
    padding: 56px 24px 80px;
  }

  .manifesto-inner{
    font-size: 18px;
    line-height: 1.85;
    letter-spacing: 0.5px;
  }

  .manifesto-inner p.highlight{
    letter-spacing: 0.6px;
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .apply-seal{
    display: none;
  }

  .apply-seal-mobile{
  display: block;
  position: static;

  width: 64px;
  height: 64px;

  margin: 48px auto 0;
  opacity: 0.9;
}

}

@media (min-width: 1200px){
  .manifesto{
    padding-left: 64px;
    padding-right: 64px;
  }
}

