/* =========================================================
   HOME VS | TOKENS
========================================================= */

:root {
  /* Colores marca */
  --vs-color-primary: #055168;
  --vs-color-teal: #37bcc1;
  --vs-color-blue: #4a8de8;
  --vs-color-light: #dfdde0;

  /* Colores acento */
  --vs-color-pink: #c60f8e;
  --vs-color-purple: #8a0175;

  /* Neutrales */
  --vs-color-black: #000000;
  --vs-color-white: #ffffff;
  --vs-color-text: #1f1f1f;
  --vs-color-text-soft: #5f6368;
  --vs-color-bg-soft: #eef4f1;
  --vs-color-border-soft: rgba(0, 0, 0, 0.08);

  /* UI */
  --vs-color-button: #6b86f5;
  --vs-color-highlight: #57edf7;

  /* Tipografía */
  --vs-font-primary: 'Poppins', sans-serif;

  /* Radius */
  --vs-radius-sm: 0.75rem;
  --vs-radius-md: 1.25rem;
  --vs-radius-lg: 2rem;
  --vs-radius-xl: 2.5rem;
  --vs-radius-pill: 999px;

  /* Sombras */
  --vs-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);

  /* Espaciados */
  --vs-space-xs: 0.5rem;
  --vs-space-sm: 1rem;
  --vs-space-md: 1.5rem;
  --vs-space-lg: 2rem;
  --vs-space-xl: 3rem;
  --vs-space-2xl: 4rem;

  /* Transiciones */
  --vs-transition: all 0.3s ease;
}

/* =========================================================
   RESET GENERAL
========================================================= */

html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

body {
  overflow-x: hidden;
}

.navbar {
  margin: 0 !important;
}

.bs-main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* =========================================================
   HOME VS | BASE
========================================================= */

.home-vs {
  position: relative;
  font-family: var(--vs-font-primary);
  color: var(--vs-color-text);
  background-color: var(--vs-color-white);
}

.home-vs *,
.home-vs *::before,
.home-vs *::after {
  box-sizing: border-box;
}

.home-vs img {
  display: block;
  max-width: 100%;
  height: auto;
}

.home-vs a {
  text-decoration: none;
  transition: var(--vs-transition);
}

.home-vs .vs-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* =========================================================
   HEADER V2
========================================================= */

.vs-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  background: transparent;
  margin: 0 !important;
  padding: 1.25rem 0 0;
}

.vs-header .container,
.vs-header__container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.vs-header__brand img,
.vs-header .navbar-brand img {
  display: block;
  max-height: 72px;
  width: auto;
}

.vs-header__nav .nav-link,
.vs-header .navbar-nav .nav-link {
  color: var(--vs-color-white);
  font-size: 1.05rem;
  font-weight: 600;
  padding-left: 1.15rem !important;
  padding-right: 1.15rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.vs-header__nav .nav-link:hover,
.vs-header .navbar-nav .nav-link:hover {
  color: var(--vs-color-white);
  opacity: 0.92;
}

.vs-header__toggler,
.vs-header .navbar-toggler {
  border: 0;
  padding: 0.25rem 0.5rem;
}

.vs-header__toggler:focus,
.vs-header .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* =========================================================
   VS SLIDER
========================================================= */

.home-vs .vs-slider {
  position: relative;
  overflow: hidden;
  background-color: var(--vs-color-primary);
  min-height: 760px;
}

.home-vs .vs-slider__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background-color: var(--vs-color-primary);
}

.home-vs .vs-slider__media picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.home-vs .vs-slider__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
}

.home-vs .vs-slider__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(5, 81, 104, 0.10) 36%,
      rgba(5, 81, 104, 0.65) 58%,
      rgba(5, 81, 104, 0.94) 100%
    );
}

.home-vs .vs-slider__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: none;
  min-height: 760px;
  padding: 8.6rem 6vw 4.5rem;
  display: flex;
  align-items: center;
}

.home-vs .vs-slider__content {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: 2.5vw;
  color: var(--vs-color-white);
}

.home-vs .vs-slider__eyebrow {
  display: none;
}

.home-vs .vs-slider__title {
  margin: 0 0 var(--vs-space-lg);
  max-width: 620px;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--vs-color-white);
}

.home-vs .vs-slider__title strong {
  display: inline-block;
  padding: 0.04em 0.16em;
  background-color: var(--vs-color-highlight);
  color: var(--vs-color-black);
  font-weight: 700;
  line-height: 0.95;
}

.home-vs .vs-slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.5rem;
  border-radius: var(--vs-radius-pill);
  background-color: var(--vs-color-white);
  color: var(--vs-color-black);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

.home-vs .vs-slider__btn:hover {
  color: var(--vs-color-black);
  transform: translateY(-1px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1399.98px) {
  .vs-header .container,
  .vs-header__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .home-vs .vs-slider__container {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .home-vs .vs-slider__content {
    margin-right: 1vw;
  }
}

@media (max-width: 1199.98px) {
  .vs-header {
    padding-top: 1rem;
  }

  .vs-header__brand img,
  .vs-header .navbar-brand img {
    max-height: 64px;
  }

  .home-vs .vs-slider {
    min-height: 700px;
  }

  .home-vs .vs-slider__container {
    min-height: 700px;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .home-vs .vs-slider__content {
    max-width: 480px;
    margin-right: 0;
  }

  .home-vs .vs-slider__title {
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  }
}

@media (max-width: 991.98px) {
  .vs-header {
    padding-top: 0.85rem;
  }

  .vs-header .container,
  .vs-header__container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .vs-header__brand img,
  .vs-header .navbar-brand img {
    max-height: 56px;
  }

  .home-vs .vs-slider {
    min-height: 720px;
  }

  .home-vs .vs-slider__container {
    min-height: 720px;
    justify-content: center;
    align-items: flex-end;
    padding: 7.5rem 1.5rem 4rem;
  }

  .home-vs .vs-slider__content {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }

  .home-vs .vs-slider__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(238, 244, 241, 0.06) 0%,
        rgba(5, 81, 104, 0.16) 24%,
        rgba(5, 81, 104, 0.55) 55%,
        rgba(5, 81, 104, 0.92) 100%
      );
  }

  .home-vs .vs-slider__img {
    object-position: center top;
  }

  .home-vs .vs-slider__title {
    max-width: 100%;
    font-size: clamp(2.4rem, 6vw, 3.8rem);
  }

  .home-vs .vs-about {
    margin-top: -1rem;
    padding-bottom: 2rem;
  }

  .home-vs .vs-about__container {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .vs-header {
    padding-top: 0.75rem;
  }

  .vs-header__brand img,
  .vs-header .navbar-brand img {
    max-height: 48px;
  }

  .home-vs .vs-slider {
    min-height: 760px;
  }

  .home-vs .vs-slider__container {
    min-height: 760px;
    padding: 6.5rem 1rem 3.5rem;
  }

  .home-vs .vs-slider__title {
    font-size: 2.7rem;
    line-height: 1.04;
  }

  .home-vs .vs-slider__btn {
    min-height: 48px;
    padding: 0.8rem 1.35rem;
    font-size: 1rem;
  }
}
/* =========================================================
   VS ABOUT
========================================================= */

.home-vs .vs-about {
  position: relative;
  overflow: hidden;
  z-index: 5;
  margin-top: -20px;
  padding: 3.75rem 0;
  border-radius: 24px;
  background-color: #ffffff;
}

.home-vs .vs-about__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-vs .vs-about__media picture,
.home-vs .vs-about__bg {
  display: block;
  width: 100%;
  height: 100%;
}

.home-vs .vs-about__bg {
  object-fit: cover;
  object-position: right center;
}

.home-vs .vs-about__container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 3rem;
}

.home-vs .vs-about__content {
  min-height: 500px;
  display: flex;
  align-items: center;
}

.home-vs .vs-about__copy {
  width: 100%;
  max-width: 470px;
  padding: 0.5rem 0;
}

.home-vs .vs-about__title {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 3.3vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #1D5C63;
}

.home-vs .vs-about__title strong {
  font-weight: 700;
}

.home-vs .vs-about__text {
  max-width: 460px;
  margin-bottom: 1.35rem;
  font-size: 1.08rem;
  line-height: 1.6;
  font-weight: 500;
  color: #222222;
}

.home-vs .vs-about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  background-color: #1D5C63;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.96rem;
  line-height: 1;
}

.home-vs .vs-about__btn:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
  .home-vs .vs-about {
    padding: 3.25rem 0;
  }

  .home-vs .vs-about__bg {
    object-position: 72% top;
  }

  .home-vs .vs-about__container {
    padding: 0 2rem;
  }

  .home-vs .vs-about__content {
    min-height: 440px;
  }

  .home-vs .vs-about__copy {
    max-width: 430px;
  }

  .home-vs .vs-about__title {
    font-size: clamp(2.2rem, 3vw, 3.2rem);
  }

  .home-vs .vs-about__text {
    max-width: 430px;
    font-size: 1rem;
  }
}

@media (max-width: 991.98px) {
  .home-vs .vs-about {
    margin-top: 0;
    padding: 3rem 0;
    border-radius: 24px;
  }

  .home-vs .vs-about__bg {
    object-position: center top;
  }

  .home-vs .vs-about__container {
    padding: 0 1.25rem;
  }

  .home-vs .vs-about__content {
    min-height: auto;
    display: block;
  }

  .home-vs .vs-about__copy {
    max-width: 100%;
    padding: 0;
    text-align: center;
  }

  .home-vs .vs-about__text {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .home-vs .vs-about {
    margin-top: 0;
    padding: 0;
    border-radius: 24px;
  }

  .home-vs .vs-about__media {
    position: relative;
    inset: auto;
    min-height: 610px;
  }

  .home-vs .vs-about__media picture,
  .home-vs .vs-about__bg {
    width: 100%;
    height: 100%;
  }

  .home-vs .vs-about__bg {
    object-fit: cover;
    object-position: center top;
  }

  .home-vs .vs-about__container {
    position: absolute;
    inset: 0;
    max-width: 100%;
    padding: 48% 1.15rem 1.25rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
  }

  .home-vs .vs-about__content {
    min-height: auto;
    display: block;
  }

  .home-vs .vs-about__copy {
    max-width: 350px;
    padding: 0;
    text-align: center;
    margin-top: 0;
  }

  .home-vs .vs-about__title {
    margin-bottom: 0.65rem;
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .home-vs .vs-about__text {
    max-width: 100%;
    margin-bottom: 0.9rem;
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .home-vs .vs-about__btn {
    margin-top: 0.35rem;
    padding: 0.78rem 1.3rem;
    font-size: 0.92rem;
  }
}
/* =========================================================
   VS EXPERIENCE
========================================================= */

.home-vs .vs-experience {
  position: relative;
  overflow: hidden;
  background-color: #0D5C66;
  margin-top: -1.2rem;
}

.home-vs .vs-experience__media {
  position: relative;
  z-index: 1;
}

.home-vs .vs-experience__media picture,
.home-vs .vs-experience__img {
  display: block;
  width: 100%;
  height: auto;
}

.home-vs .vs-experience__img {
  display: block;
  width: 100%;
  height: auto;
}

/* CONTENIDO SOBRE LA IMAGEN */
.home-vs .vs-experience__container {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 6.5rem 3rem 0;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.home-vs .vs-experience__content {
  width: 100%;
  max-width: 460px;
  color: #fff;
  pointer-events: auto;
    margin-top: 5rem;
}

/* TÍTULO */
.home-vs .vs-experience__title {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 300;
  color: #ffffff;
}

.home-vs .vs-experience__title strong {
  font-weight: 700;
}

/* TEXTO */
.home-vs .vs-experience__text {
  margin: 1.5rem 0;
  font-size: 1.2rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
}

/* BOTÓN */
.home-vs .vs-experience__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  background: #ffffff;
  color: #1D5C63;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
}

.home-vs .vs-experience__btn:hover {
  color: #1D5C63;
  transform: translateY(-1px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
  .home-vs .vs-experience__container {
    padding: 4.8rem 2rem 0;
  }

  .home-vs .vs-experience__content {
    max-width: 470px;
  }

  .home-vs .vs-experience__title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
  }

  .home-vs .vs-experience__text {
    font-size: 1.05rem;
  }
}

@media (max-width: 991.98px) {
  .home-vs .vs-experience__container {
    position: absolute;
    inset: 0;
    max-width: 100%;
    padding: 3.5rem 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
  }

  .home-vs .vs-experience__content {
    max-width: 420px;
  }

  .home-vs .vs-experience__title {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .home-vs .vs-experience__text {
    max-width: 100%;
    margin: 1.1rem 0 1.3rem;
    font-size: 1rem;
    line-height: 1.45;
  }

  .home-vs .vs-experience__btn {
    min-height: 48px;
    padding: 0.8rem 1.4rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 767.98px) {
.home-vs .vs-experience {
    margin-top: -1rem;
}
  .home-vs .vs-experience__container {
    position: absolute;
    inset: 0;
    max-width: 100%;
    padding: 58% 1.25rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
  }

  .home-vs .vs-experience__content {
    max-width: 340px;
  }

  .home-vs .vs-experience__title {
    font-size: 2.2rem;
    line-height: 1.08;
  }

  .home-vs .vs-experience__text {
    max-width: 100%;
    margin: 1rem 0 1.2rem;
    font-size: 1rem;
    line-height: 1.45;
  }

  .home-vs .vs-experience__btn {
    min-height: 48px;
    padding: 0.8rem 1.4rem;
    font-size: 0.95rem;
  }
}
/* =========================================================
   VS PODCAST
========================================================= */

.home-vs .vs-podcast {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
  background-color: #0D5C66;
}

/* Fondo más cercano al diseño */
.home-vs .vs-podcast::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 100%, rgb(0 123 147) 0%, rgba(65, 240, 255, 0) 24%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, #00596b 0%, #005364 42%, #005566 100%);
  z-index: 1;
  pointer-events: none;
}

/* Textura de puntitos + velo suave */
.home-vs .vs-podcast::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 0.7px, transparent 0.7px),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 6px 6px, 18px 18px;
  background-position: 0 0, 9px 9px;
  opacity: 0.16;
  z-index: 1;
  pointer-events: none;
}

.home-vs .vs-podcast__container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 3rem;
}

.home-vs .vs-podcast__header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.home-vs .vs-podcast__title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 400;
  color: #ffffff;
}

.home-vs .vs-podcast__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem 1.35rem;
  align-items: start;
}

.home-vs .vs-podcast__item {
  text-align: center;
}

.home-vs .vs-podcast__card {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
  border-radius: 0.95rem;
  cursor: pointer;
}

.home-vs .vs-podcast__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.95rem;
}

.home-vs .vs-podcast__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-top: -0.55rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background-color: #ff2948;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.home-vs .vs-podcast__play:hover,
.home-vs .vs-podcast__card:hover + .vs-podcast__play {
  transform: translateY(-1px);
  background-color: #ff1f41;
}

.home-vs .vs-podcast__play-icon {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.15rem;
  border-top: 0.42rem solid transparent;
  border-bottom: 0.42rem solid transparent;
  border-left: 0.68rem solid #ffffff;
}

/* BLOQUE EXTRA CON COLLAPSE */
.home-vs .vs-podcast__more {
  grid-column: 1 / -1;
}

.home-vs .vs-podcast__more.collapse:not(.show) {
  display: none;
}

.home-vs .vs-podcast__more.show,
.home-vs .vs-podcast__more.collapsing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem 1.35rem;
  margin-top: 0.8rem;
}

.home-vs .vs-podcast__footer {
  margin-top: 2.8rem;
  text-align: center;
}

.home-vs .vs-podcast__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.7rem;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 500;
  background: transparent;
}

.home-vs .vs-podcast__btn:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.06);
}


/* =========================================================
   MODAL PODCAST
========================================================= */

.home-vs .vs-podcast-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.home-vs .vs-podcast-modal.is-open {
  display: block;
}

.home-vs .vs-podcast-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.home-vs .vs-podcast-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(92vw, 980px);
  margin: 5vh auto 0;
}

.home-vs .vs-podcast-modal__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.home-vs .vs-podcast-modal__video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 1rem;
  background: #000000;
}

.home-vs .vs-podcast-modal__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
  .home-vs .vs-podcast__container {
    padding: 0 2rem;
  }
}

@media (max-width: 991.98px) {
  .home-vs .vs-podcast {
    padding: 3.5rem 0 3rem;
  }

  .home-vs .vs-podcast__container {
    padding: 0 1.5rem;
  }

  .home-vs .vs-podcast__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 560px;
    margin: 0 auto;
  }

  .home-vs .vs-podcast__more.show,
  .home-vs .vs-podcast__more.collapsing {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  .home-vs .vs-podcast {
    padding: 3rem 0 2.5rem;
  }

  .home-vs .vs-podcast__container {
    padding: 0 1rem;
  }

  .home-vs .vs-podcast__title {
    font-size: 2rem;
  }

  .home-vs .vs-podcast__play {
    width: 2.7rem;
    height: 2.7rem;
  }

  .home-vs .vs-podcast__btn {
    min-height: 46px;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }

  .home-vs .vs-podcast-modal__dialog {
    width: 94vw;
    margin-top: 10vh;
  }
}

/* =========================================================
   VS PRESS
========================================================= */

.home-vs .vs-press {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background-image: url("https://dojiw2m9tvv09.cloudfront.net/48656/1/banner-elvira-prueba.webp?t=1775503407");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-bottom: 8px solid #0D5C66;
}

/* Capa suave para lectura */
.home-vs .vs-press::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.88) 42%,
    rgba(255,255,255,0.60) 60%,
    rgba(255,255,255,0.12) 78%,
    rgba(255,255,255,0) 100%
  );
  z-index: 1;
}

.home-vs .vs-press__container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 3rem;
}

.home-vs .vs-press__content {
  max-width: 760px;
}

.home-vs .vs-press__title {
  margin: 0 0 2.5rem;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 400;
  color: #1D5C63;
}

.home-vs .vs-press__title strong {
  font-weight: 700;
}

.home-vs .vs-press__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem 1.2rem;
  max-width: 760px;
}

.home-vs .vs-press__item {
  text-align: center;
}

.home-vs .vs-press__card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 1rem;
  background: #ffffff;
  border-radius: 0.9rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.home-vs .vs-press__logo {
  display: block;
  max-width: 150px;
  width: 100%;
  height: auto;
}

.home-vs .vs-press__link {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1f1f1f;
}

.home-vs .vs-press__link:hover {
  color: #1f1f1f;
  opacity: 0.8;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
  .home-vs .vs-press__container {
    padding: 0 2rem;
  }

  .home-vs .vs-press__grid {
    max-width: 680px;
  }
}

@media (max-width: 991.98px) {
  .home-vs .vs-press {
    padding: 3rem 0;
    background-position: center;
  }

  .home-vs .vs-press::before {
    background: rgba(255,255,255,0.90);
  }

  .home-vs .vs-press__container {
    padding: 0 1.5rem;
  }

  .home-vs .vs-press__content {
    max-width: 100%;
  }

  .home-vs .vs-press__title {
    text-align: center;
    margin-bottom: 2rem;
  }

  .home-vs .vs-press__grid {
    max-width: 560px;
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .home-vs .vs-press {
    padding: 2.5rem 0;
  }

  .home-vs .vs-press__container {
    padding: 0 1rem;
  }

  .home-vs .vs-press__title {
    font-size: 2rem;
  }

  .home-vs .vs-press__grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .home-vs .vs-press__card {
    min-height: 78px;
  }

  .home-vs .vs-press__logo {
    max-width: 140px;
  }
}
/* =========================================================
   VS AWARDS
========================================================= */

.home-vs .vs-awards {
  position: relative;
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f8 100%);
}

/* CONTENEDOR */
.home-vs .vs-awards__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* HEADER */
.home-vs .vs-awards__header {
  text-align: center;
  margin-bottom: 3rem;
}

.home-vs .vs-awards__title {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 400;
  color: #1D5C63;
  line-height: 1.1;
}

.home-vs .vs-awards__title strong {
  font-weight: 700;
}

/* GRID */
.home-vs .vs-awards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
}

/* CARD */
.home-vs .vs-awards__card {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.home-vs .vs-awards__card:hover {
  transform: translateY(-4px);
}

/* IMAGEN */
.home-vs .vs-awards__media {
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.home-vs .vs-awards__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BLOQUE INFERIOR */
.home-vs .vs-awards__info {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  align-items: start;
  background: #0D5C66;
  padding: 1rem 1.2rem;
  color: #fff;
}

/* COLUMNA IZQUIERDA */
.home-vs .vs-awards__heading {
  text-align: left;
  line-height: 1.05;
}

.home-vs .vs-awards__label {
  display: block;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.3px;
}

.home-vs .vs-awards__sub {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.05;
}

/* COLUMNA DERECHA */
.home-vs .vs-awards__body {
  text-align: left;
}

.home-vs .vs-awards__text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.25;
  opacity: 0.92;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
  .home-vs .vs-awards__container {
    padding: 0 2rem;
  }

  .home-vs .vs-awards__info {
    grid-template-columns: 120px 1fr;
    gap: 0.85rem;
  }
}

@media (max-width: 991.98px) {
  .home-vs .vs-awards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .home-vs .vs-awards {
    padding: 3rem 0;
  }

  .home-vs .vs-awards__container {
    padding: 0 1rem;
  }

  .home-vs .vs-awards__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-vs .vs-awards__media {
    height: 180px;
  }

  .home-vs .vs-awards__info {
    grid-template-columns: 115px 1fr;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
  }

  .home-vs .vs-awards__label,
  .home-vs .vs-awards__sub {
    font-size: 0.8rem;
  }

  .home-vs .vs-awards__text {
    font-size: 0.78rem;
  }
}

/* =========================================================
   VS SOCIAL
========================================================= */

.home-vs .vs-social {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 4rem;
  background-color: #0D5C66;
}

/* Fondo con leve atmósfera */
.home-vs .vs-social::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(65, 240, 255, 0.12) 0%, rgba(65, 240, 255, 0) 38%),
    linear-gradient(90deg, #0A5D68 0%, #0E7384 55%, #3AA4C1 100%);
  z-index: 1;
  pointer-events: none;
}

.home-vs .vs-social__container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 3rem;
}

.home-vs .vs-social__header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.home-vs .vs-social__title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 400;
  color: #ffffff;
}

.home-vs .vs-social__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: start;
  max-width: 1030px;
  margin: 0 auto;
}

.home-vs .vs-social__card {
  text-align: center;
}

.home-vs .vs-social__media {
  display: block;
  overflow: hidden;
  border-radius: 1.1rem;
}

.home-vs .vs-social__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.1rem;
}

.home-vs .vs-social__caption {
  margin-top: 0.7rem;
  padding: 0.55rem 0.8rem 0.6rem;
  background: #ffffff;
  border-radius: 0.7rem;
  text-align: center;
}

.home-vs .vs-social__line {
  display: block;
  color: #1a1a1a;
  font-size: 0.92rem;
  line-height: 1.05;
  font-weight: 400;
}

.home-vs .vs-social__line--strong {
  font-size: 1rem;
  font-weight: 700;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
  .home-vs .vs-social__container {
    padding: 0 2rem;
  }

  .home-vs .vs-social__grid {
    gap: 1.2rem;
  }
}

@media (max-width: 991.98px) {
  .home-vs .vs-social {
    padding: 3.5rem 0 3rem;
  }

  .home-vs .vs-social__container {
    padding: 0 1.5rem;
  }

  .home-vs .vs-social__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }
}

@media (max-width: 767.98px) {
  .home-vs .vs-social {
    padding: 3rem 0 2.5rem;
  }

  .home-vs .vs-social__container {
    padding: 0 1rem;
  }

  .home-vs .vs-social__title {
    font-size: 2rem;
  }

  .home-vs .vs-social__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    gap: 1.4rem;
  }

  .home-vs .vs-social__caption {
    margin-top: 0.6rem;
  }
}

/* =========================================================
   VS FOOTER
========================================================= */

.vs-footer {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 2.2rem;
  background: linear-gradient(90deg, #0A4F57 0%, #0D5C66 45%, #1E7D90 100%);
}

.vs-footer__top-line {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.92);
}

.vs-footer__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 2.2rem 3rem 0;
}

.vs-footer__brand {
  display: inline-block;
}

.vs-footer__logo {
  display: block;
  max-width: 170px;
  width: 100%;
  height: auto;
}

.vs-footer__contact {
  color: #ffffff;
}

.vs-footer__text {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff;
}

.vs-footer__mail {
  display: inline-block;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

.vs-footer__mail:hover {
  color: #ffffff;
  opacity: 0.9;
}

.vs-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.vs-footer__nav a {
  font-size: 0.98rem;
  line-height: 1.25;
  font-weight: 400;
  color: #ffffff;
}

.vs-footer__nav a:hover {
  color: #ffffff;
  opacity: 0.9;
}

.vs-footer__social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.vs-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: #ffffff;
  color: #0D5C66;
  font-size: 0.78rem;
}

.vs-footer__social-link:hover {
  color: #0D5C66;
  transform: translateY(-1px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
  .vs-footer__container {
    padding: 2rem 2rem 0;
  }
}

@media (max-width: 991.98px) {
  .vs-footer {
    padding-bottom: 2rem;
  }

  .vs-footer__container {
    padding: 2rem 1.5rem 0;
  }

  .vs-footer__logo {
    max-width: 150px;
  }

  .vs-footer__social {
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .vs-footer__container {
    padding: 1.8rem 1rem 0;
    text-align: center;
  }

  .vs-footer__brand {
    display: inline-block;
  }

  .vs-footer__contact,
  .vs-footer__nav {
    align-items: center;
  }

  .vs-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .vs-footer__social {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
  }

  .vs-footer__logo {
    margin: 0 auto;
  }
}