/* =========================================================
   EL QUE TENGA TIENDA
   Rediseño GSL - Fase 1
   ========================================================= */

:root {
  --brand-navy: #102a43;
  --brand-dark: #081a2b;
  --brand-orange: #f39200;
  --brand-orange-dark: #d77f00;
  --brand-cream: #fff8ee;
  --brand-white: #ffffff;
  --brand-text: #17212b;
  --brand-muted: #66788a;
  --brand-border: rgba(16, 42, 67, 0.12);
  --brand-shadow: 0 24px 60px rgba(8, 26, 43, 0.14);
  --content-width: 1180px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;

  padding-top: 68px;

  font-family:
    "Montserrat",
    Arial,
    sans-serif;

  color: var(--brand-text);

  background:
    var(--brand-white);

  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

/* ===========================
   PANTALLA DE CARGA
   =========================== */

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;

  display: grid;
  place-items: center;

  background: var(--brand-white);
  color: var(--brand-navy);

  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.22s ease,
    visibility 0s linear 0.22s;
}

.site-loader__content {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.site-loader__content img {
  width: min(180px, 52vw);
  height: auto;
}

.site-loader__line {
  width: 72px;
  height: 3px;
  overflow: hidden;

  border-radius: 999px;
  background: rgba(16, 42, 67, 0.14);
}

.site-loader__line::after {
  content: "";

  display: block;
  width: 38%;
  height: 100%;

  border-radius: inherit;
  background: var(--brand-orange);
  animation: site-loader-progress 1s ease-in-out infinite;
}

.site-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes site-loader-progress {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(265%);
  }
}

/* ===========================
   REVELADO AL HACER SCROLL
   =========================== */

html.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s ease var(--reveal-delay, 0s),
    transform 0.5s ease var(--reveal-delay, 0s);
}

html.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

html.reveal-ready .reveal--delay-1 {
  --reveal-delay: 70ms;
}

/* ===========================
   HEADER
   =========================== */

.site-header {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  width: 100%;

  z-index: 1000;

  background: rgba(8, 26, 43, 0.98);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 8px 28px rgba(8, 26, 43, 0.08);
}

.site-header.is-scrolled {
  background: rgba(8, 26, 43, 0.995);

  box-shadow:
    0 10px 30px rgba(8, 26, 43, 0.16);
}

.site-header.is-scrolled {
  background:
    rgba(8, 26, 43, 0.985);

  box-shadow:
    0 12px 36px rgba(8, 26, 43, 0.18);
}

.nav-shell {
  width: min(
    calc(100% - 32px),
    var(--content-width)
  );

  min-height: 68px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}

.brand {
  position: relative;
  z-index: 1102;

  display: block;

  width: 178px;
  height: 58px;

  overflow: hidden;
}

.brand img {
  position: absolute;

  top: 0;
  left: 0;

  display: block;

  width: 178px;
  height: auto;

  transform: translateY(-24px);
}

/* ===========================
   BOTÓN HAMBURGUESA
   =========================== */

.menu-toggle {
  width: 42px;
  height: 42px;
  padding: 0;

  position: relative;
  z-index: 1102;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.menu-icon {
  width: 22px;
  height: 16px;
  position: relative;
  display: block;
}

.menu-icon span {
  position: absolute;
  left: 0;

  width: 100%;
  height: 2px;

  border-radius: 999px;
  background: #ffffff;

  transform-origin: center;

  transition:
    transform 0.22s ease,
    top 0.22s ease,
    opacity 0.16s ease;
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2) {
  top: 7px;
}

.menu-icon span:nth-child(3) {
  top: 14px;
}

/* Hamburguesa -> X */

.menu-toggle.is-open .menu-icon span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.menu-toggle.is-open .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-icon span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

/* ===========================
   MENÚ LATERAL
   =========================== */

.site-menu {
  position: fixed;
  top: 0;
  right: 0;

  width: min(420px, 92vw);
  height: 100dvh;

  padding: 92px 32px 36px;

  background: var(--brand-dark);
  color: #ffffff;

  text-align: left;

  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.28);

  transform: translateX(105%);
  visibility: hidden;

  transition:
    transform 0.26s ease,
    visibility 0.26s ease;

  z-index: 1101;

  overflow-y: auto;
}

.site-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.menu-kicker {
  margin: 0 0 24px;

  color: var(--brand-orange);

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-menu nav {
  display: grid;
  gap: 4px;
}

.site-menu nav a {
  display: block;

  padding: 14px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.09);

  color: #ffffff;

  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;

  transition:
    color 0.18s ease,
    padding-left 0.18s ease;
}

.site-menu nav a:hover {
  color: var(--brand-orange);
  padding-left: 8px;
}

.site-menu .menu-cta {
  margin-top: 28px;

  min-height: 48px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  background: var(--brand-orange);
  color: var(--brand-dark);

  font-weight: 800;
}

.menu-overlay {
  position: fixed;
  inset: 0;

  z-index: 1100;

  background: rgba(3, 12, 20, 0.64);

  opacity: 0;
  visibility: hidden;

  /*
    Mientras el menú está cerrado, el overlay
    no puede interceptar clics ni toques.
  */
  pointer-events: none;

  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;

  pointer-events: auto;
}

/* ===========================
   HERO
   =========================== */

.hero {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(243, 146, 0, 0.22),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #fffdf9 0%,
      var(--brand-cream) 55%,
      #ffffff 100%
    );

  border-bottom: 1px solid var(--brand-border);
}

.hero::before {
  content: "";

  position: absolute;

  width: 460px;
  height: 460px;

  right: -220px;
  bottom: -260px;

  border-radius: 50%;

  background: rgba(16, 42, 67, 0.06);
}

.hero-inner {
  width: min(
    calc(100% - 32px),
    var(--content-width)
  );

  min-height:
    calc(100vh - 68px);

  margin: 0 auto;

  padding: 46px 0 48px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(340px, 0.92fr);

  align-items: center;

  gap:
    clamp(
      36px,
      5vw,
      64px
    );

  position: relative;
  z-index: 1;
}

.hero-copy {
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin: 0 0 18px;

  color: var(--brand-orange-dark);

  font-size: 0.78rem;
  font-weight: 800;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";

  width: 34px;
  height: 2px;

  border-radius: 999px;

  background: currentColor;
}

.hero h1 {
  max-width: 700px;

  margin: 0;

  color: var(--brand-dark);

  font-size:
    clamp(
      2.75rem,
      3.8vw,
      4rem
    );

  line-height: 1.02;

  letter-spacing: -0.04em;
}

.hero h1 span {
  color: var(--brand-orange-dark);
}

.hero-lead {
  max-width: 620px;

  margin: 20px 0 0;

  color: var(--brand-muted);

  font-size:
    clamp(
      0.98rem,
      1.1vw,
      1.08rem
    );

  line-height: 1.65;
}

/* ===========================
   BOTONES HERO
   =========================== */

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 26px;
}

.hero-button {
  min-height: 52px;

  padding: 0 24px;

  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 0.95rem;
  font-weight: 800;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
}

.hero-button--primary {
  background: var(--brand-orange);
  color: var(--brand-dark);

  box-shadow:
    0 14px 30px rgba(243, 146, 0, 0.24);
}

.hero-button--secondary {
  background: #ffffff;
  color: var(--brand-navy);

  border: 1px solid var(--brand-border);
}

/* ===========================
   ETIQUETAS DE CONFIANZA
   =========================== */

.trust-list {
  list-style: none;

  margin: 22px 0 0;
  padding: 0;

  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}

.trust-list li {
  padding: 8px 12px;

  border: 1px solid var(--brand-border);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.76);

  color: var(--brand-navy);

  font-size: 0.8rem;
  font-weight: 700;
}

/* ===========================
   LIBROS HERO
   =========================== */

.hero-visual {
  min-height: 470px;

  display: grid;
  place-items: center;

  position: relative;
}

.book-stage {
  width: min(100%, 520px);
  height: 440px;

  position: relative;
}

.hero-book {
  position: absolute;

  display: block;

  border-radius: 10px;

  filter:
    drop-shadow(
      0 26px 26px rgba(8, 26, 43, 0.22)
    );

  transition:
    transform 0.22s ease,
    filter 0.22s ease;
}

.hero-book:hover {
  filter:
    drop-shadow(
      0 34px 32px rgba(8, 26, 43, 0.28)
    );
}

.hero-book img {
  display: block;

  width: 100%;
  height: auto;

  border-radius: 8px;
}

.hero-book--main {
  width: 215px;

  left: 50%;
  top: 46%;

  z-index: 3;

  transform:
    translate(-50%, -50%)
    rotate(-2deg);
}

.hero-book--main:hover {
  transform:
    translate(-50%, -53%)
    rotate(0);
}

.hero-book--left {
  width: 160px;

  left: 2%;
  top: 29%;

  z-index: 1;

  transform: rotate(-9deg);
}

.hero-book--left:hover {
  transform:
    translateY(-10px)
    rotate(-6deg);
}

.hero-book--right {
  width: 160px;

  right: 2%;
  top: 28%;

  z-index: 2;

  transform: rotate(9deg);
}

.hero-book--right:hover {
  transform:
    translateY(-10px)
    rotate(6deg);
}

.hero-note {
  position: absolute;

  right: 0;
  bottom: 26px;

  max-width: 220px;

  padding: 16px 18px;

  border:
    1px solid rgba(255, 255, 255, 0.6);

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.86);

  box-shadow: var(--brand-shadow);

  backdrop-filter: blur(12px);

  text-align: left;

  color: var(--brand-navy);

  font-size: 0.82rem;
  font-weight: 700;

  line-height: 1.55;
}

.hero-note strong {
  display: block;

  margin-bottom: 4px;

  color: var(--brand-orange-dark);

  font-size: 0.72rem;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===========================
   ACCESIBILIDAD
   =========================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline:
    3px solid rgba(243, 146, 0, 0.45);

  outline-offset: 3px;
}

/* ===========================
   TABLET
   =========================== */

@media (max-width: 920px) {

  .hero-inner {
    min-height: auto;

    padding: 64px 0 42px;

    grid-template-columns: 1fr;

    gap: 22px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 500px;
  }
}

/* ===========================
   CELULAR
   =========================== */

@media (max-width: 640px) {

    body {
  padding-top: 60px;
}

  .nav-shell {
    width: calc(100% - 24px);
    min-height: 60px;
  }

 .brand {
  width: 145px;
  height: 48px;
}

.brand img {
  width: 145px;

  transform:
    translateY(-20px);
}

  .menu-toggle {
    width: 40px;
    height: 40px;

    border-radius: 11px;
  }

  .site-menu {
    width: 100%;

    padding:
  82px
  24px
  30px;
  }

  .hero-inner {
    width: calc(100% - 28px);

    padding-top: 50px;
  }

  .hero h1 {
  font-size:
    clamp(
      2.2rem,
      11vw,
      3.1rem
    );
}

  .hero-lead {
    margin-top: 20px;

    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;

    margin-top: 28px;
  }

  .hero-button {
    width: 100%;
  }

  .trust-list {
    gap: 8px;
  }

  .trust-list li {
    font-size: 0.74rem;
  }

  .hero-visual {
    min-height: 380px;
  }

  .book-stage {
    height: 360px;
  }

  .hero-book--main {
    width: 170px;
  }

  .hero-book--left,
  .hero-book--right {
    width: 115px;
    top: 31%;
  }

    .hero-note {
    left: 50%;
    right: auto;

    bottom: 0;

    width: min(100%, 290px);
    max-width: none;

    transform: translateX(-50%);
  }

  .book-section {
    padding:
      42px
      16px;
  }

  .book-section .best-seller {
    padding:
      26px
      20px;
  }

  .book-section > p {
    font-size: 1rem;
  }

  .books-grid {
    flex-direction: column;
    align-items: center;
  }

  .book-card:not([hidden]) {
    max-width: 300px;
  }
}

/* Respeta usuarios que desactivan animaciones */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }

  .site-loader {
    transition: none;
  }

  .site-loader__line::after {
    animation: none;
  }

  .reveal,
  html.reveal-ready .reveal,
  html.reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none !important;
  }
}

/* =========================================================
   COMPRA POR PAÍS
   Compatibilidad con el filtro dinámico
   ========================================================= */

/*
  El CSS original oculta todas las tarjetas mediante
  display: none y opacity: 0.

  El nuevo JavaScript utiliza el atributo "hidden",
  por lo que aquí definimos explícitamente qué ocurre
  cuando una tarjeta está activa o inactiva.
*/

.book-card[hidden] {
  display: none !important;
}

.book-card:not([hidden]) {
  display: block;
  opacity: 1;
}

/* =========================================================
   COMPRA POR PAÍS - AJUSTE DE PROPORCIONES
   ========================================================= */

.book-section {
  max-width: 980px;

  margin: 0 auto;

  text-align: center;

  padding:
    54px
    20px;
}

.book-section .best-seller {
  padding:
    32px
    clamp(24px, 4vw, 48px);

  border-radius: 24px;

  box-shadow:
    0 14px 38px
    rgba(8, 26, 43, 0.12);
}

.book-section h2 {
  margin:
    0
    0
    14px;

  font-size:
    clamp(
      1.8rem,
      2.5vw,
      2.4rem
    );

  line-height: 1.15;
}

.book-section .best-seller p {
  max-width: 720px;

  margin:
    0
    auto
    12px;

  padding: 0;

  font-size: 1.05rem;

  line-height: 1.65;

  text-align: center;
}

.book-section .best-seller strong {
  font-size: 1.05rem;
}

.book-section > p {
  max-width: 720px;

  margin:
    30px
    auto
    16px;

  padding: 0;

  font-size: 1.15rem;

  text-align: center;
}

.country-selector {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin-bottom: 24px;
}

.country-selector label {
  margin-bottom: 8px;

  font-size: 0.95rem;
}

.country-selector select {
  min-width: 160px;

  padding:
    10px
    14px;

  border:
    1px solid
    var(--brand-orange);

  border-radius: 999px;

  background: #ffffff;

  color:
    var(--brand-navy);

  font-size: 1rem;
}

.books-grid {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;
  align-items: stretch;

  width: 100%;
  margin-inline: auto;

  gap: 20px;
}

.book-card:not([hidden]) {
  width: 100%;
  max-width: 280px;

  margin: 0;

  padding:
    24px
    22px;

  display: flex;

  flex-direction: column;

  align-items: center;

  border:
    1px solid
    rgba(243, 146, 0, 0.45);

  border-radius: 22px;

  background: #ffffff;

  box-shadow:
    0 14px 32px
    rgba(8, 26, 43, 0.08);

  opacity: 1;

  text-decoration: none;
}

.book-card p {
  margin:
    0
    0
    14px;

  padding: 0;

  color:
    var(--brand-orange);

  font-size: 1rem;
  font-weight: 800;

  line-height: 1.35;

  text-align: center;
}

.book-card img.book-image {
  width: auto;
  max-width: 145px;
  height: auto;

  display: block;

  margin:
    0
    auto
    16px;

  border-radius: 10px;

  object-fit: contain;

  box-shadow:
    rgb(37, 57, 77)
    0
    10px
    30px
    -10px;
}

.book-card .price {
  color:
    var(--brand-orange);

  font-size: 1rem;
  font-weight: 800;
}

.book-card .cart-icon {
  width: auto;
  height: 26px;

  margin:
    14px
    0
    0;
}

/* =========================================================
   ESTRUCTURA GENERAL DE SECCIONES
   ========================================================= */

.section-shell {
  width: min(
    calc(100% - 40px),
    var(--content-width)
  );

  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 14px;

  color: var(--brand-orange-dark);

  font-size: 0.76rem;
  font-weight: 800;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker--light {
  color: #ffc46a;
}


/* =========================================================
   DIAGNÓSTICO
   ========================================================= */

.diagnosis-section {
  position: relative;

  overflow: hidden;

  padding:
    clamp(70px, 8vw, 110px)
    0;

  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(243, 146, 0, 0.14),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #081a2b 0%,
      #102a43 100%
    );

  color: #ffffff;
}

.diagnosis-section::after {
  content: "";

  position: absolute;

  width: 440px;
  height: 440px;

  right: -260px;
  bottom: -300px;

  border:
    1px solid
    rgba(255, 255, 255, 0.08);

  border-radius: 50%;
}

.diagnosis-grid {
  position: relative;
  z-index: 1;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(360px, 0.78fr);

  align-items: center;

  gap:
    clamp(
      48px,
      7vw,
      90px
    );
}


/* Texto */

.diagnosis-copy {
  max-width: 650px;

  text-align: left;
}

.diagnosis-copy h2 {
  max-width: 620px;

  margin:
    0
    0
    22px;

  color: #ffffff;

  font-size:
    clamp(
      2.3rem,
      4vw,
      4.15rem
    );

  line-height: 1.04;

  letter-spacing: -0.04em;
}

.diagnosis-lead {
  max-width: 600px;

  margin:
    0
    0
    36px !important;

  color:
    rgba(255, 255, 255, 0.72) !important;

  font-size: 1.05rem !important;

  line-height: 1.75;
}


/* Puntos */

.diagnosis-points {
  display: grid;

  gap: 18px;
}

.diagnosis-point {
  display: grid;

  grid-template-columns:
    44px 1fr;

  gap: 16px;

  align-items: start;
}

.diagnosis-point > span {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border:
    1px solid
    rgba(243, 146, 0, 0.38);

  border-radius: 14px;

  background:
    rgba(243, 146, 0, 0.1);

  color:
    var(--brand-orange);

  font-size: 0.76rem;
  font-weight: 800;
}

.diagnosis-point strong {
  display: block;

  margin-bottom: 4px;

  color: #ffffff;

  font-size: 0.98rem;
}

.diagnosis-point p {
  margin: 0 !important;

  color:
    rgba(255, 255, 255, 0.65) !important;

  font-size: 0.9rem !important;

  line-height: 1.6;
}


/* Card del formulario */

.diagnosis-card {
  padding:
    clamp(
      28px,
      4vw,
      42px
    );

  border:
    1px solid
    rgba(255, 255, 255, 0.74);

  border-radius: 28px;

  background:
    rgba(255, 255, 255, 0.97);

  box-shadow:
    0 28px 70px
    rgba(0, 0, 0, 0.24);

  text-align: left;
}

.diagnosis-card__eyebrow {
  margin:
    0
    0
    8px !important;

  color:
    var(--brand-orange-dark) !important;

  font-size:
    0.72rem !important;

  font-weight: 800;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.diagnosis-card h3 {
  margin:
    0
    0
    10px;

  color:
    var(--brand-dark);

  font-size:
    clamp(
      1.6rem,
      2.3vw,
      2.1rem
    );

  line-height: 1.15;
}

.diagnosis-card__text {
  margin:
    0
    0
    26px !important;

  color:
    var(--brand-muted) !important;

  font-size:
    0.95rem !important;

  line-height: 1.6;
}


/* Formulario */

.diagnosis-card .register-form {
  width: 100%;
  max-width: none;

  margin: 0;

  padding: 0;

  display: grid;

  gap: 17px;

  background: transparent;

  border-radius: 0;

  box-shadow: none;
}

.diagnosis-card .register-form label {
  display: grid;

  gap: 7px;

  color:
    var(--brand-navy);

  font-size: 0.82rem;

  font-weight: 700;
}

.diagnosis-card .register-form input {
  width: 100%;

  min-height: 50px;

  padding:
    0
    15px;

  border:
    1px solid
    rgba(16, 42, 67, 0.16);

  border-radius: 12px;

  background: #ffffff;

  color:
    var(--brand-text);

  font-family: inherit;

  font-size: 0.94rem;

  outline: none;

  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.diagnosis-card .register-form input:focus {
  border-color:
    rgba(243, 146, 0, 0.85);

  box-shadow:
    0 0 0 4px
    rgba(243, 146, 0, 0.1);
}

.diagnosis-card .register-form input::placeholder {
  color: #9aa6b1;
}

.diagnosis-card .register-form small {
  color:
    var(--brand-muted);

  font-size: 0.77rem;
}

.diagnosis-card .form-btn {
  width: 100%;

  min-height: 52px;

  margin-top: 2px;

  border: 0;
  border-radius: 999px;

  background:
    var(--brand-orange);

  color:
    var(--brand-dark);

  font-family: inherit;

  font-size: 0.92rem;
  font-weight: 800;

  cursor: pointer;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.diagnosis-card .form-btn:hover {
  background:
    #ffa20c;

  transform:
    translateY(-2px);

  box-shadow:
    0 12px 24px
    rgba(243, 146, 0, 0.22);
}

.form-message {
  margin-bottom: 20px;

  padding:
    12px
    14px;

  border:
    1px solid
    rgba(34, 139, 84, 0.22);

  border-radius: 12px;

  background:
    rgba(34, 139, 84, 0.08);

  color: #17653d;

  font-size: 0.88rem;
}


/* =========================================================
   BOTONES GENERALES DE SECCIÓN
   ========================================================= */

.section-button {
  min-height: 50px;

  padding:
    0
    23px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  border-radius: 999px;

  font-size: 0.9rem;
  font-weight: 800;

  text-decoration: none;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.section-button:hover {
  transform: translateY(-2px);
}

.section-button--primary {
  background:
    var(--brand-orange);

  color:
    var(--brand-dark);

  box-shadow:
    0 12px 24px
    rgba(243, 146, 0, 0.18);
}

.section-button--light {
  background: #ffffff;

  color:
    var(--brand-dark);

  box-shadow:
    0 12px 28px
    rgba(0, 0, 0, 0.12);
}


/* =========================================================
   PRESENTACIÓN DE LIBROS
   ========================================================= */

.book-feature {
  position: relative;

  overflow: hidden;

  padding:
    clamp(76px, 9vw, 120px)
    0;
}

.book-feature--one {
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fffaf2 100%
    );
}

.book-feature--two {
  background:
    linear-gradient(
      135deg,
      #0a1d30 0%,
      #12324f 100%
    );

  color: #ffffff;
}

.book-feature__grid {
  display: grid;

  grid-template-columns:
    minmax(320px, 0.85fr)
    minmax(0, 1.15fr);

  align-items: center;

  gap:
    clamp(
      50px,
      8vw,
      100px
    );
}


/* Visual */

.book-feature__visual {
  position: relative;

  min-height: 520px;

  display: grid;
  place-items: center;

  border-radius: 34px;

  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(243, 146, 0, 0.2),
      transparent 38%
    ),
    #f5f6f7;

  border:
    1px solid
    rgba(16, 42, 67, 0.08);

  overflow: hidden;
}

.book-feature--two
.book-feature__visual {
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(243, 146, 0, 0.25),
      transparent 40%
    ),
    rgba(255, 255, 255, 0.05);

  border-color:
    rgba(255, 255, 255, 0.09);
}

.book-feature__visual::before {
  content: "";

  position: absolute;

  width: 330px;
  height: 330px;

  border:
    1px solid
    rgba(243, 146, 0, 0.16);

  border-radius: 50%;
}

.book-feature__cover {
  position: relative;
  z-index: 2;

  width: auto;
  max-width: 250px;

  max-height: 390px;

  object-fit: contain;

  border-radius: 10px;

  filter:
    drop-shadow(
      0 30px 28px
      rgba(8, 26, 43, 0.25)
    );

  transition:
    transform 0.28s ease;
}

.book-feature__visual:hover
.book-feature__cover {
  transform:
    translateY(-7px)
    rotate(-1deg);
}

.book-feature__number {
  position: absolute;

  top: 24px;
  left: 24px;

  z-index: 3;

  color:
    var(--brand-muted);

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}

.book-feature--two
.book-feature__number {
  color:
    rgba(255, 255, 255, 0.5);
}

.book-feature__label {
  position: absolute;

  right: 22px;
  bottom: 22px;

  z-index: 3;

  padding:
    9px
    13px;

  border-radius: 999px;

  background:
    var(--brand-orange);

  color:
    var(--brand-dark);

  font-size: 0.72rem;
  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.06em;
}


/* Contenido */

.book-feature__content {
  max-width: 630px;

  text-align: left;
}

.book-feature__content h2 {
  margin:
    0
    0
    22px;

  color:
    var(--brand-dark);

  font-size:
    clamp(
      2.4rem,
      4.4vw,
      4.6rem
    );

  line-height: 1.02;

  letter-spacing: -0.045em;
}

.book-feature--two
.book-feature__content h2 {
  color: #ffffff;
}

.book-feature__lead {
  margin:
    0
    0
    28px !important;

  color:
    var(--brand-muted) !important;

  font-size:
    1.05rem !important;

  line-height: 1.75;
}

.book-feature--two
.book-feature__lead {
  color:
    rgba(255, 255, 255, 0.7) !important;
}


/* Beneficios */

.book-benefits {
  list-style: none;

  margin:
    0
    0
    30px;

  padding: 0;

  display: grid;

  gap: 13px;
}

.book-benefits li {
  position: relative;

  padding-left: 30px;

  color:
    var(--brand-navy);

  font-size: 0.94rem;

  line-height: 1.55;
}

.book-benefits li::before {
  content: "✓";

  position: absolute;

  top: 0;
  left: 0;

  width: 20px;
  height: 20px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    rgba(243, 146, 0, 0.13);

  color:
    var(--brand-orange-dark);

  font-size: 0.72rem;
  font-weight: 900;
}


/* Cita */

.book-quote {
  max-width: 540px;

  margin:
    38px
    0
    0;

  padding:
    22px
    24px;

  border-left:
    3px solid
    var(--brand-orange);

  border-radius:
    0
    18px
    18px
    0;

  background:
    rgba(16, 42, 67, 0.045);
}

.book-quote__stars {
  margin-bottom: 8px;

  color:
    var(--brand-orange-dark);

  font-size: 0.85rem;

  letter-spacing: 0.08em;
}

.book-quote p {
  margin:
    0
    0
    14px !important;

  color:
    var(--brand-text) !important;

  font-size:
    0.92rem !important;

  font-style: italic;

  line-height: 1.65;
}

.book-quote footer {
  padding: 0;

  background: transparent;

  color:
    var(--brand-navy);

  text-align: left;

  font-size: 0.8rem;
}

.book-quote footer strong,
.book-quote footer span {
  display: block;
}

.book-quote footer span {
  margin-top: 2px;

  color:
    var(--brand-muted);
}

.book-quote--dark {
  background:
    rgba(255, 255, 255, 0.06);

  border-left-color:
    var(--brand-orange);
}

.book-quote--dark p {
  color:
    rgba(255, 255, 255, 0.82) !important;
}

.book-quote--dark footer {
  color: #ffffff;
}

.book-quote--dark footer span {
  color:
    rgba(255, 255, 255, 0.5);
}


/* Destacado libro 2 */

.book-highlight {
  max-width: 560px;

  margin:
    0
    0
    30px;

  padding:
    20px
    22px;

  border:
    1px solid
    rgba(255, 255, 255, 0.09);

  border-radius: 18px;

  background:
    rgba(255, 255, 255, 0.05);
}

.book-highlight span {
  display: block;

  margin-bottom: 7px;

  color:
    var(--brand-orange);

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.book-highlight p {
  margin: 0 !important;

  color:
    rgba(255, 255, 255, 0.72) !important;

  font-size:
    0.9rem !important;

  line-height: 1.6;
}


/* =========================================================
   PRÓXIMO LIBRO
   ========================================================= */

.coming-soon {
  position: relative;

  overflow: hidden;

  padding:
    clamp(
      80px,
      9vw,
      120px
    )
    0;

  background:
    linear-gradient(
      135deg,
      #f39200 0%,
      #d97800 100%
    );

  color:
    var(--brand-dark);
}

.coming-soon::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  top: -360px;
  right: -220px;

  border:
    1px solid
    rgba(255, 255, 255, 0.25);

  border-radius: 50%;
}

.coming-soon__grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(320px, 0.9fr)
    minmax(0, 1.1fr);

  align-items: center;

  gap:
    clamp(
      50px,
      8vw,
      100px
    );
}


/* Imagen */

.coming-soon__visual {
  position: relative;

  min-height: 480px;

  display: grid;
  place-items: center;
}

.coming-soon__glow {
  position: absolute;

  width: 360px;
  height: 360px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.26);

  filter:
    blur(4px);
}

.coming-soon__visual img {
  position: relative;
  z-index: 2;

  width: auto;
  max-width: 260px;

  max-height: 410px;

  object-fit: contain;

  border-radius: 10px;

  filter:
    drop-shadow(
      0 32px 28px
      rgba(90, 44, 0, 0.3)
    );

  transform:
    rotate(-5deg);

  transition:
    transform 0.28s ease;
}

.coming-soon__visual:hover img {
  transform:
    rotate(-2deg)
    translateY(-8px);
}


/* Texto */

.coming-soon__content {
  max-width: 660px;

  text-align: left;
}

.coming-soon__badge {
  display: inline-flex;

  margin-bottom: 16px;

  padding:
    8px
    13px;

  border:
    1px solid
    rgba(8, 26, 43, 0.13);

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.25);

  color:
    var(--brand-dark);

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-soon__content h2 {
  margin:
    0
    0
    22px;

  color:
    var(--brand-dark);

  font-size:
    clamp(
      2.6rem,
      4.7vw,
      4.8rem
    );

  line-height: 1.01;

  letter-spacing: -0.045em;
}

.coming-soon__content h2 span {
  display: block;

  color: #ffffff;
}

.coming-soon__content > p {
  max-width: 590px;

  margin:
    0
    0
    28px !important;

  color:
    rgba(8, 26, 43, 0.74) !important;

  font-size:
    1.05rem !important;

  line-height: 1.75;
}

.coming-soon__authors {
  display: grid;

  gap: 4px;

  margin-bottom: 28px;
}

.coming-soon__authors span {
  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.11em;

  text-transform: uppercase;

  opacity: 0.62;
}

.coming-soon__authors strong {
  font-size: 0.95rem;
}

.coming-soon__status {
  display: inline-flex;

  min-height: 48px;

  padding:
    0
    22px;

  align-items: center;

  border-radius: 999px;

  background:
    var(--brand-dark);

  color: #ffffff;

  font-size: 0.82rem;
  font-weight: 800;

  letter-spacing: 0.06em;

  text-transform: uppercase;
}

/* =========================================================
   PODCAST
   ========================================================= */

.podcast-section {
  position: relative;

  overflow: hidden;

  padding:
    clamp(80px, 9vw, 120px)
    0;

  background:
    #f5f7f8;
}

.podcast-section::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  left: -320px;
  bottom: -320px;

  border-radius: 50%;

  background:
    rgba(243, 146, 0, 0.08);

    pointer-events: none;
    
}

.podcast-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 0.82fr)
    minmax(480px, 1.18fr);

  align-items: center;

  gap:
    clamp(
      48px,
      7vw,
      90px
    );
}


/* Texto */

.podcast-copy {
  max-width: 570px;

  text-align: left;
}

.podcast-copy h2 {
  margin:
    0
    0
    22px;

  color:
    var(--brand-dark);

  font-size:
    clamp(
      2.4rem,
      4vw,
      4.2rem
    );

  line-height: 1.03;

  letter-spacing: -0.045em;
}

.podcast-copy h2 span {
  color:
    var(--brand-orange-dark);
}

.podcast-lead {
  margin:
    0
    0
    30px !important;

  color:
    var(--brand-muted) !important;

  font-size:
    1rem !important;

  line-height: 1.75;
}


/* Metadatos */

.podcast-meta {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 10px;

  margin-bottom: 30px;
}

.podcast-meta > div {
  padding:
    14px
    12px;

  border:
    1px solid
    var(--brand-border);

  border-radius: 14px;

  background:
    rgba(255, 255, 255, 0.68);
}

.podcast-meta span,
.podcast-meta strong {
  display: block;
}

.podcast-meta span {
  margin-bottom: 4px;

  color:
    var(--brand-muted);

  font-size: 0.68rem;
  font-weight: 700;

  letter-spacing: 0.06em;

  text-transform: uppercase;
}

.podcast-meta strong {
  color:
    var(--brand-navy);

  font-size: 0.82rem;
}


/* Botón con icono */

.podcast-copy .section-button {
  gap: 9px;
}

.podcast-copy .section-button i {
  font-size: 1.15rem;
}


/* Player */

.podcast-player {
  overflow: hidden;

  border:
    1px solid
    rgba(16, 42, 67, 0.1);

  border-radius: 28px;

  background:
    var(--brand-dark);

  box-shadow:
    0 30px 70px
    rgba(8, 26, 43, 0.2);
}

.podcast-player__top {
  min-height: 54px;

  padding:
    0
    20px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  color:
    rgba(255, 255, 255, 0.62);

  font-size: 0.72rem;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.podcast-player__status {
  display: flex;

  gap: 6px;
}

.podcast-player__status span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.18);
}

.podcast-player__status span:first-child {
  background:
    var(--brand-orange);
}


/* Vídeo responsive 16:9 */

.podcast-video {
  position: relative;

  width: 100%;

  aspect-ratio: 16 / 9;

  overflow: hidden;

  background: #000000;
}

.podcast-video iframe {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;
}


/* Pie del vídeo */

.podcast-player__caption {
  padding:
    20px
    22px
    24px;

  text-align: left;
}

.podcast-player__caption span {
  display: block;

  margin-bottom: 6px;

  color:
    var(--brand-orange);

  font-size: 0.7rem;
  font-weight: 800;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}

.podcast-player__caption strong {
  display: block;

  max-width: 560px;

  color: #ffffff;

  font-size:
    clamp(
      1rem,
      1.5vw,
      1.25rem
    );

  line-height: 1.45;
}

/* =========================================================
   MENTORES
   ========================================================= */

.mentors-section {
  padding:
    clamp(82px, 9vw, 120px)
    0;

  background:
    #ffffff;
}


/* Encabezado */

.mentors-heading {
  margin-bottom:
    clamp(
      40px,
      6vw,
      70px
    );

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, 0.55fr);

  align-items: end;

  gap: 50px;

  text-align: left;
}

.mentors-heading h2 {
  max-width: 750px;

  margin: 0;

  color:
    var(--brand-dark);

  font-size:
    clamp(
      2.5rem,
      4.4vw,
      4.6rem
    );

  line-height: 1.02;

  letter-spacing: -0.045em;
}

.mentors-heading h2 span {
  color:
    var(--brand-orange-dark);
}

.mentors-heading > p {
  margin:
    0
    0
    4px !important;

  color:
    var(--brand-muted) !important;

  font-size:
    0.96rem !important;

  line-height: 1.7;
}


/* Grid */

.mentors-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 24px;
}


/* Tarjeta */

.mentor-profile {
  position: relative;

  overflow: hidden;

  display: grid;

  grid-template-rows:
    auto 1fr;

  border:
    1px solid
    var(--brand-border);

  border-radius: 30px;

  background:
    #ffffff;

  box-shadow:
    0 18px 50px
    rgba(8, 26, 43, 0.08);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.mentor-profile:hover {
  transform:
    translateY(-5px);

  box-shadow:
    0 28px 65px
    rgba(8, 26, 43, 0.13);
}


/* Foto */

.mentor-profile__image {
  position: relative;

  min-height: 400px;

  overflow: hidden;
}

.mentor-profile__image::after {
  content: "";

  position: absolute;

  inset:
    auto
    0
    0
    0;

  height: 34%;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(8, 26, 43, 0.34)
    );

  pointer-events: none;
}

.mentor-profile__image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.35s ease;
}

.mentor-profile:hover
.mentor-profile__image img {
  transform:
    scale(1.025);
}

.mentor-profile__image > span {
  position: absolute;

  left: 20px;
  bottom: 20px;

  z-index: 2;

  padding:
    8px
    12px;

  border:
    1px solid
    rgba(255, 255, 255, 0.5);

  border-radius: 999px;

  background:
    rgba(8, 26, 43, 0.58);

  backdrop-filter: blur(10px);

  color: #ffffff;

  font-size: 0.7rem;
  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


/* Cuerpo */

.mentor-profile__body {
  padding:
    28px
    30px
    30px;

  text-align: left;
}

.mentor-profile__role {
  margin:
    0
    0
    7px !important;

  color:
    var(--brand-orange-dark) !important;

  font-size:
    0.72rem !important;

  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.mentor-profile h3 {
  margin:
    0
    0
    14px;

  color:
    var(--brand-dark);

  font-size:
    clamp(
      1.65rem,
      2.3vw,
      2.2rem
    );

  line-height: 1.1;
}

.mentor-profile__body > p:not(.mentor-profile__role) {
  margin:
    0
    0
    24px !important;

  color:
    var(--brand-muted) !important;

  font-size:
    0.92rem !important;

  line-height: 1.7;
}


/* Redes */

.mentor-social {
  display: flex;

  align-items: center;

  gap: 9px;
}

.mentor-social a {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border:
    1px solid
    var(--brand-border);

  border-radius: 50%;

  background:
    #f8fafb;

  color:
    var(--brand-navy);

  font-size: 1.05rem;

  text-decoration: none;

  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.mentor-social a:hover {
  border-color:
    var(--brand-orange);

  background:
    var(--brand-orange);

  color:
    var(--brand-dark);

  transform:
    translateY(-2px);
}


/* Jesús: web + redes */

.mentor-profile__actions {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 16px;
}

.mentor-site {
  min-height: 42px;

  padding:
    0
    16px;

  display: inline-flex;

  align-items: center;

  gap: 7px;

  border-radius: 999px;

  background:
    var(--brand-dark);

  color: #ffffff;

  font-size: 0.78rem;
  font-weight: 800;

  text-decoration: none;

  transition:
    transform 0.18s ease,
    background-color 0.18s ease;
}

.mentor-site:hover {
  background:
    var(--brand-navy);

  transform:
    translateY(-2px);
}

/* =========================================================
   CTA FINAL
   ========================================================= */

.closing-cta {
  padding:
    0
    20px
    clamp(78px, 9vw, 110px);

  background:
    #ffffff;
}

.closing-cta__card {
  position: relative;

  overflow: hidden;

  padding:
    clamp(
      34px,
      5vw,
      60px
    );

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap: 50px;

  border-radius: 32px;

  background:
    linear-gradient(
      135deg,
      #102a43 0%,
      #081a2b 100%
    );

  box-shadow:
    0 28px 65px
    rgba(8, 26, 43, 0.18);

  text-align: left;
}

.closing-cta__card::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  top: -190px;
  right: -80px;

  border-radius: 50%;

  background:
    rgba(243, 146, 0, 0.16);
}

.closing-cta__card > * {
  position: relative;
  z-index: 2;
}

.closing-cta h2 {
  max-width: 700px;

  margin:
    0
    0
    14px;

  color: #ffffff;

  font-size:
    clamp(
      2rem,
      3.3vw,
      3.45rem
    );

  line-height: 1.05;

  letter-spacing: -0.04em;
}

.closing-cta p:not(.section-kicker) {
  max-width: 620px;

  margin: 0 !important;

  color:
    rgba(255, 255, 255, 0.67) !important;

  font-size:
    0.94rem !important;

  line-height: 1.65;
}

.closing-cta__actions {
  min-width: 220px;

  display: grid;

  gap: 10px;
}

.closing-button {
  min-height: 48px;

  padding:
    0
    20px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  border-radius: 999px;

  white-space: nowrap;

  font-size: 0.8rem;
  font-weight: 800;

  text-decoration: none;

  transition:
    transform 0.18s ease,
    background-color 0.18s ease;
}

.closing-button:hover {
  transform:
    translateY(-2px);
}

.closing-button--light {
  background:
    var(--brand-orange);

  color:
    var(--brand-dark);
}

.closing-button--outline {
  border:
    1px solid
    rgba(255, 255, 255, 0.25);

  background:
    rgba(255, 255, 255, 0.06);

  color: #ffffff;
}

.closing-button--outline:hover {
  background:
    rgba(255, 255, 255, 0.12);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding:
    70px
    0
    0;

  background:
    #071725;

  color: #ffffff;

  text-align: left;
}

.site-footer__grid {
  display: grid;

  grid-template-columns:
    1.25fr
    0.65fr
    1fr
    1fr;

  gap:
    clamp(
      32px,
      5vw,
      68px
    );

  padding-bottom: 58px;
}


/* Marca */

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  position: relative;

  width: 180px;
  height: 70px;

  margin-bottom: 16px;

  display: block;

  overflow: hidden;
}

.footer-logo img {
  position: absolute;

  top: 0;
  left: 0;

  width: 180px;
  height: auto;

  transform:
    translateY(-22px);
}

.footer-brand > p {
  margin: 0 !important;

  color:
    rgba(255, 255, 255, 0.52) !important;

  font-size:
    0.85rem !important;

  line-height: 1.7;
}


/* Columnas */

.footer-column h3 {
  margin:
    0
    0
    18px;

  color: #ffffff;

  font-size: 0.82rem;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;

  gap: 11px;
}

.footer-column nav a {
  width: fit-content;

  margin: 0;

  color:
    rgba(255, 255, 255, 0.62);

  font-size: 0.86rem;

  text-decoration: none;

  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.footer-column nav a:hover {
  color:
    var(--brand-orange);

  transform:
    translateX(3px);
}


/* Contacto */

.footer-contact {
  display: grid;

  gap: 13px;
}

.footer-contact a {
  margin: 0;

  display: flex;

  align-items: flex-start;

  gap: 9px;

  color:
    rgba(255, 255, 255, 0.62);

  font-size: 0.82rem;

  line-height: 1.5;

  text-decoration: none;

  transition:
    color 0.18s ease;
}

.footer-contact a:hover {
  color:
    var(--brand-orange);
}

.footer-contact i {
  flex: 0 0 auto;

  margin-top: 2px;

  color:
    var(--brand-orange);

  font-size: 1rem;
}


/* CTA columna */

.footer-column__text {
  max-width: 250px;

  margin:
    0
    0
    17px !important;

  color:
    rgba(255, 255, 255, 0.5) !important;

  font-size:
    0.82rem !important;

  line-height: 1.65;
}

.footer-cta {
  width: fit-content;

  margin: 0;

  display: inline-flex;

  align-items: center;

  gap: 7px;

  color:
    var(--brand-orange);

  font-size: 0.79rem;
  font-weight: 800;

  text-decoration: none;
}

.footer-cta i {
  transition:
    transform 0.18s ease;
}

.footer-cta:hover i {
  transform:
    translateX(3px);
}


/* Línea inferior */

.footer-bottom {
  min-height: 72px;

  padding:
    20px
    0;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 24px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0 !important;

  color:
    rgba(255, 255, 255, 0.42) !important;

  font-size:
    0.75rem !important;
}

.footer-bottom > div {
  display: flex;

  flex-wrap: wrap;

  gap: 20px;
}

.footer-bottom a {
  margin: 0;

  display: inline-flex;

  align-items: center;

  gap: 5px;

  color:
    rgba(255, 255, 255, 0.5);

  font-size: 0.75rem;

  text-decoration: none;

  transition:
    color 0.18s ease;
}

.footer-bottom a:hover {
  color:
    var(--brand-orange);
}

/* =========================================================
   WHATSAPP FLOTANTE
   ========================================================= */

.whatsapp-float {
  position: fixed;

  right: 22px;
  bottom: 22px;

  z-index: 990;

  width: auto;
  height: 48px;

  padding:
    0
    17px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  border:
    1px solid
    rgba(255, 255, 255, 0.22);

  border-radius: 999px;

  background:
    #20bd63;

  color: #ffffff;

  box-shadow:
    0 12px 30px
    rgba(8, 26, 43, 0.2);

  font-size: 0.78rem;
  font-weight: 800;

  text-decoration: none;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.whatsapp-float i {
  font-size: 1.25rem;

  line-height: 1;
}

.whatsapp-float:hover {
  background:
    #18a956;

  color: #ffffff;

  transform:
    translateY(-3px);

  box-shadow:
    0 16px 34px
    rgba(8, 26, 43, 0.25);
}

/* =========================================================
   RESPONSIVE DE ESTA ETAPA
   ========================================================= */

@media (max-width: 920px) {

  .diagnosis-grid,
  .book-feature__grid,
  .coming-soon__grid {
    grid-template-columns: 1fr;
  }

  .diagnosis-copy {
    max-width: 720px;
  }

  .book-feature__visual {
    min-height: 460px;
  }

  .book-feature__content {
    max-width: 720px;
  }

  .book-feature--two
  .book-feature__content {
    order: 2;
  }

  .book-feature--two
  .book-feature__visual {
    order: 1;
  }

  .coming-soon__visual {
    min-height: 420px;
  }

}


@media (max-width: 640px) {

  .section-shell {
    width:
      calc(100% - 28px);
  }


  /* Diagnóstico */

  .diagnosis-section {
    padding:
      64px
      0;
  }

  .diagnosis-grid {
    gap: 38px;
  }

  .diagnosis-copy h2 {
    font-size:
      clamp(
        2.15rem,
        11vw,
        3.1rem
      );
  }

  .diagnosis-lead {
    font-size:
      0.96rem !important;
  }

  .diagnosis-point {
    grid-template-columns:
      38px
      1fr;
  }

  .diagnosis-point > span {
    width: 38px;
    height: 38px;

    border-radius: 11px;
  }

  .diagnosis-card {
    padding:
      26px
      20px;

    border-radius: 22px;
  }


  /* Libros */

  .book-feature {
    padding:
      68px
      0;
  }

  .book-feature__grid {
    gap: 38px;
  }

  .book-feature__visual {
    min-height: 390px;

    border-radius: 25px;
  }

  .book-feature__cover {
    max-width: 195px;
    max-height: 320px;
  }

  .book-feature__number {
    top: 18px;
    left: 18px;
  }

  .book-feature__label {
    right: 17px;
    bottom: 17px;
  }

  .book-feature__content h2 {
    font-size:
      clamp(
        2.15rem,
        11vw,
        3.2rem
      );
  }

  .book-feature__lead {
    font-size:
      0.96rem !important;
  }

  .section-button {
    width: 100%;
  }

  .book-quote {
    margin-top: 30px;

    padding:
      20px
      18px;
  }


  /* Próximamente */

  .coming-soon {
    padding:
      68px
      0;
  }

  .coming-soon__grid {
    gap: 26px;
  }

  .coming-soon__visual {
    min-height: 350px;
  }

  .coming-soon__glow {
    width: 280px;
    height: 280px;
  }

  .coming-soon__visual img {
    max-width: 190px;
    max-height: 310px;
  }

  .coming-soon__content h2 {
    font-size:
      clamp(
        2.25rem,
        11vw,
        3.25rem
      );
  }

  .coming-soon__content > p {
    font-size:
      0.96rem !important;
  }

}

/* =========================================================
   RESPONSIVE - PODCAST / MENTORES / FOOTER
   ========================================================= */

@media (max-width: 1000px) {

  .podcast-grid {
    grid-template-columns: 1fr;

    gap: 44px;
  }

  .podcast-copy {
    max-width: 720px;
  }

  .mentors-heading {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .mentors-heading > p {
    max-width: 620px;
  }

  .site-footer__grid {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );
  }

}


@media (max-width: 760px) {

  /* Podcast */

  .podcast-section {
    padding:
      68px
      0;
  }

  .podcast-copy h2 {
    font-size:
      clamp(
        2.2rem,
        10vw,
        3.2rem
      );
  }

  .podcast-meta {
    grid-template-columns: 1fr;
  }

  .podcast-player {
    border-radius: 22px;
  }


  /* Mentores */

  .mentors-section {
    padding:
      68px
      0;
  }

  .mentors-heading h2 {
    font-size:
      clamp(
        2.25rem,
        10vw,
        3.25rem
      );
  }

  .mentors-grid {
    grid-template-columns: 1fr;
  }

  .mentor-profile__image {
    min-height: 360px;
  }


  /* CTA */

  .closing-cta {
    padding:
      0
      14px
      68px;
  }

  .closing-cta__card {
    grid-template-columns: 1fr;

    gap: 28px;

    border-radius: 24px;
  }

  .closing-cta__actions {
    width: 100%;
  }

  .closing-button {
    width: 100%;
  }


  /* Footer */

  .site-footer {
    padding-top: 56px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;

    gap: 36px;

    padding-bottom: 44px;
  }

  .footer-brand {
    max-width: 420px;
  }

  .footer-bottom {
    align-items: flex-start;

    flex-direction: column;
  }

}


@media (max-width: 520px) {

  .podcast-player__caption {
    padding:
      17px
      17px
      20px;
  }

  .mentor-profile {
    border-radius: 23px;
  }

  .mentor-profile__image {
    min-height: 310px;
  }

  .mentor-profile__body {
    padding:
      24px
      21px
      25px;
  }

  .mentor-profile__actions {
    align-items: flex-start;

    flex-direction: column;
  }


  /* En móvil queda solo el icono */

  .whatsapp-float {
    right: 16px;
    bottom: 16px;

    width: 50px;
    height: 50px;

    padding: 0;

    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float i {
    font-size: 1.35rem;
  }

}

/* =========================================================
   CAMPO ANTISPAM INVISIBLE
   ========================================================= */

.form-hp {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  margin: -1px !important;
  padding: 0 !important;

  overflow: hidden !important;

  clip:
    rect(
      0,
      0,
      0,
      0
    ) !important;

  white-space: nowrap !important;

  border: 0 !important;
}

@media (max-width: 768px) {
  .books-grid {
    justify-content: center;
    align-items: center;
  }
}
