@charset "UTF-8";
/* CSS Document */

/* ===========================
   SECCIÓNES GENERALES
   =========================== */

.section-general {
  padding: 80px 0 80px;
  background-color: #fff;
}
.section-general-verde {
  padding: 80px 0 80px;
  background-color: #718473;
}
.section-general-verde-claro {
  padding: 80px 0 80px;
  background-color: #afb8af;
}
.section-general-crema {
  padding: 80px 0 80px;
  background-color: #f8f5f0;
}
.section-general-gris {
  padding: 80px 0 80px;
  background-color: #718473;
}
.section-general-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 30px;
  display: flex;
  gap: 70px;
  align-items: flex-start;
  box-sizing: border-box;
}

/* TEXTO */
.section-general-text {
  flex: 0 0 70%;  /* ancho columna textos */
}

/* IMAGEN */
.section-general-media {
  flex: 0 0 30%;  /* ancho columna imagen */
}

.section-general-media img {
  max-width: 100%;
  height: auto;
  display: block;
  flex: 1;
}

.section-cortijo.section-cortijo--reverse .section-cortijo-inner {
  flex-direction: row-reverse;
}

.brand-logo img {
  display: block;
  margin: 0 auto 8px;
  height: 180px;
	padding-top: 60px;
}

/* pequeño texto superior (HOTEL / EL CORTIJO) */
.section-eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8b8f96;
}
.section-eyebrow-xl {
  margin: 0 0 18px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8b8f96;
}
.section-eyebrow-white {
  margin: 0 0 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
}
/* Eyebrow dentro del cuerpo de texto (EN COCHE, EN AVIÓN, EN TREN...) */
.section-general-body .section-eyebrow-sub {
  margin: 25px 0 5px;              /* mismo espacio que un párrafo normal */
  font-size: 11px;               /* igual que .section-eyebrow */
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8b8f96;
}

/* título grande */
.section-general-title {
  margin: 0 0 26px;
  font-family: "Retro Voice", serif;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #303642;
}
.section-general-title-m {
  margin: 0 0 26px;
  font-family: "Retro Voice", serif;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #303642;
}
/* cuerpo de texto */
.section-general-body p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #303642;
}

.section-general-extra {
  margin: 12px 0 12px;
  font-size: 40px;
  line-height: 1;
  color: #303642;
  font-family: "Retro Voice", serif;
  text-align: center;
  margin-top: 50px;
}

/* cuerpo de texto en blanco */
.section-general-body-white {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}

/* BOTONES */
/* botón estilo “OUTLINE” */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px 10px;
  padding: 15px 30px;
  border: 0.7px solid #303642;
  background-color: transparent;
  color: #303642;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-outline + .btn-outline {
  margin-left: 12px;   /* separación solo a partir del segundo */
}

/* botón estilo “TRANSPARENTE” */
.btn-outline--white {
  border: 0.7px solid #fff;
  color: #fff;
  background-color: transparent;
}

/* Hover: TRANSPARENTE */
.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px 10px;
  padding: 15px 30px;
  border: 0.7px solid #303642;
  background-color: #303642;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-solid:hover {
  border: 0.7px solid #303642;
  background-color: transparent;
  color: #303642;
}

.btn-solid-white {
  border: 0.7px solid #fff;
  background-color: #fff;
  color: #303642;
}
.btn-solid-white:hover {
  border: 0.7px solid #303642;
  background-color: #303642;
  color:#fff ;
}

.btn-solid .btn-outline {
  margin-left: 10px;   /* separación solo a partir del segundo */
}
.btn-outline .btn-solid {
  margin-left: 10px; 	/* separación solo a partir del segundo */
}

.section-general-actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  gap: 0px;               /* separación entre botones */
  margin-top: 1px;
}
.section-general-actions .btn-outline {
  margin: 0;
  align-self: flex-start;
  white-space: nowrap;
}

/* ESCRITORIO GRANDE: un poquito más de aire lateral */
@media (min-width: 1201px) {
  .section-general-inner {
    padding: 0 30px;
    column-gap: 60px;
  }
}

/* TABLET + ESCRITORIO: 2 columnas, botones alineados al borde inferior de la imagen */
@media (min-width: 769px) {
  .section-general-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); /* texto más ancho, imagen algo más estrecha */
    grid-template-areas:
      "text media"
      "actions media";      /* botones debajo del texto, misma columna */
    column-gap: 60px;
    row-gap: 20px;
    align-items: stretch;   /* la imagen ocupa toda la altura de la rejilla */
  }

  /* Variante inversa: imagen a la izquierda, texto + botones a la derecha */
  .section-general--reverse .section-general-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    grid-template-areas:
      "media text"
      "media actions";
  }

  .section-general-text {
    grid-area: text;
  }

  .section-general-media {
    grid-area: media;
    align-self: stretch;    /* la celda de media ocupa toda la altura */
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .section-general-media img {
    width: 100%;
    height: auto;           /* más seguro en tablet/escritorio */
    max-height: 100%;
    object-fit: cover;
    display: block;
  }

  .section-general-actions {
    grid-area: actions;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
    align-self: end;        /* se pega al borde inferior de la rejilla */
  }

  .section-general-actions .btn-outline {
    margin: 0;
    align-self: flex-start;
    white-space: normal;      /* permite que el texto "RESERVA TU HABITACIÓN"se parta en dos líneas si lo necesita */
    text-align: center;
	  
  }
}
/* Variante: .section-general-inner con dos columnas de texto */
@media (min-width: 769px) {
  .section-general-inner.section-general-inner--two-text {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 0;
    grid-template-areas: none; /* anulamos el layout text/media/actions */
	   padding: 0 40px;
  }

  .section-general-inner.section-general-inner--two-text .section-general-text {
    flex: 0 0 auto;  /* anulamos el 70% del flex inicial */
    grid-area: auto; /* que cada bloque ocupe su columna y no se monten */
	   padding: 0 30px;
  }
}

/* MÓVIL: TEXTO → IMAGEN → BOTONES, una sola columna */
@media (max-width: 768px) {
  .section-general-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;   /* apila en vertical */
    gap: 24px;
    align-items: stretch;
  }

  .section-general-text,
  .section-general-media,
  .section-general-actions {
    width: 100%;
    flex: 0 0 auto;          /* anula el 70% / 30% del flex-basis */
  }

  .section-general-media {
    display: block;
  }

  .section-general-media img {
    width: 100%;
    height: auto;            /* importante: no 100% en móvil */
    object-fit: cover;
  }

  .section-general-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 0;
  }

  .section-general-actions .btn-outline {
    margin: 0;
    align-self: flex-start;
    white-space: nowrap;
  }
}
/* TABLET: botones siempre en una sola línea */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Damos más ancho a la fila de acciones (ocupa las 2 columnas) */
  .section-general-inner {
    grid-template-areas:
      "text media"
      "actions actions";
  }

  .section-general-actions {
    flex-wrap: nowrap;       /* NO permite que el 2º botón baje */
    gap: 12px;
  }

  .section-general-actions .btn-outline {
    white-space: nowrap;     /* el texto del botón no se parte */
    padding: 15px 22px;      /* un poco menos ancho para que quepan mejor */
  }
}


/* ===========================
   SECCIÓN DESTINO (todo centrado)
   =========================== */

.section-centrado {
  padding: 80px 0 80px;
  background-color: #f8f5f0;
}

.section-centrado-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 30px;   /* mismo aire lateral que .section-general-inner */
  text-align: center;
  box-sizing: border-box;
}


/* reutiliza el estilo general de .section-eyebrow */
.section-centrado .section-eyebrow {
  margin-bottom: 26px;
	 text-align: center;
}
/* reutiliza el estilo general de .section-eyebrow */
.section-general .section-eyebrow {
  margin-bottom: 26px;
	 text-align: left;
}
.section-centrado-eyebrow {
  margin-bottom: 26px;
	 text-align: center;
	 margin: 0 0 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8b8f96;
}

.section-centrado-body em {
  font-style: italic;
}

/* botón central: estilo base */
.section-centrado-actions {
  grid-area: actions;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 25px 40px;
  margin-top: 12px;
}
@media (max-width: 768px) {
	.section-centrado-inner {
	 padding: 0px 0px;
	}
.section-centrado{
	 padding: 30px;
	}}
			
/* ===========================
   SECCIÓN HABITACIONES (grid)
   =========================== */

/* GRID DE TARJETAS */
.press-grid {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 30px;
  row-gap: 30px;
  margin: 0px;
  padding: 0px;        /* sin padding: usa el de .section-centrado-inner */
}


/* Tarjeta individual */
.press-card {
  text-align: center;
	 margin-left: 0;
  margin-right: 0;
}

/* Marco para la imagen (cuadro blanco con borde) */
.press-media {
  position: relative;
  width: 100%;
  padding-top: 130%;              /* proporción vertical del rectángulo */
  margin-bottom: 28px;
  background-color: #ffffff;
  border: 1px solid #fff;      /* ajusta el color si quieres más suave */
  overflow: hidden;
	margin-left: 0;
  margin-right: 0;
	
}

.press-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
	 display: block;/* cuando pongas foto real */
}

/* Overlay clicable sobre la imagen */
.press-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0); /* sin fondo al inicio */
  opacity: 0;
  transition:
    background-color 0.3s ease,
    opacity 0.3s ease;
  padding: 16px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.press-overlay-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Título de la habitación (solo visible en el hover, dentro del overlay) */
.press-title {
  margin: 0;
  font-family: "Retro Voice", serif;
  font-size: 28px;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-transform: none;
}

/* Texto descriptivo (solo hover, encima de "Ver detalles") */
.press-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #ffffff;
}

/* Etiqueta "Ver detalles" abajo del todo */
.press-link-label {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-block;
}

/* Efecto al pasar el ratón: oscurecer 0.3 y mostrar título + texto + link */
.press-card:hover .press-overlay {
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 1;
}

/* Móvil: tarjetas una debajo de otra */
@media (max-width: 768px) {
  .press-grid {
    grid-template-columns: 1fr;
	 padding: 50px 0px;              /* menos margen lateral en móvil */
/* una columna */
    /* o incluso 0 si las quieres a todo ancho: padding: 0; */
  }
}


/* ===========================
   HABITACIÓN DESTACADA (plantilla)
   =========================== */

.section-press-feature {
  padding: 10px 0;          /* aire arriba y abajo de la ficha */
  background-color: #fff;
	
	
}

/* si en el futuro añades otra ficha debajo, se separarán entre sí */
.section-press-feature + .section-press-feature {
  margin-top: 5px;
}

.press-feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 70px;                /* espacio entre imagen y texto */
}

/* Columna imagen */
.press-feature-media {
  flex: 0 0 50%;
}

.press-feature-swiper {
  position: relative;
  width: 100%;
  height: 100%;
}

.press-feature-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.press-feature-swiper img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Flechas del carrusel */
.press-feature-swiper .swiper-button-prev,
.press-feature-swiper .swiper-button-next {
  color: #ffffff;
  width: 40px;
  height: 40px;
}

.press-feature-swiper .swiper-button-prev::after,
.press-feature-swiper .swiper-button-next::after {
  font-size: 18px;
}

/* Columna texto */
.press-feature-text {
  flex: 0 0 50%;
  text-align: center;
}

.press-feature-title {
  margin: 0 0 26px;
  font-family: "Retro Voice", serif;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #303642;
	 text-align: center;
}

.press-feature-body {
  margin: 0 0 28px;
  font-size: 13px;
  line-height: 1.6;
  color: #303642;
  text-align: center;
}

/* Botones de la ficha de habitación: sin padding lateral extra */
.section-press-feature .section-centrado-actions {
  padding: 0;
}

/* Botones dentro de contenedores centrados: sin margen propio */
.section-centrado-actions .btn-outline,
.section-centrado-actions .btn-solid {
  margin: 0;               /* anulamos el margin: 12px 10px global */
}

/* RESPONSIVE: en móvil se apila imagen arriba y texto debajo */
@media (max-width: 768px) {
  .section-press-feature {
    padding: 60px 20px;
  }

  .press-feature-inner {
    flex-direction: column;
    padding: 0 30px;
    gap: 32px;
  }

  .press-feature-media,
  .press-feature-text {
    flex: 0 0 auto;
    width: 100%;
	  
  }

  .press-feature-text {
    text-align: center;
  }

  /* solo en la ficha de habitación, los botones se alinean a la izquierda en pantallas medias */
  .section-press-feature .section-centrado-actions {
    justify-content: center;
  }
	
}

/* En móviles pequeños, dejamos que los botones puedan saltar de línea y sigan centrados
   (para el resto de secciones que usan .section-centrado-actions) */
@media (max-width: 768px) {
  .section-centrado-actions {
    flex-wrap: wrap;          /* aquí ya les dejamos partir línea */
    justify-content: center;
  }
}

/* ===========================
   AJUSTES HUERTA MONARDA / ACEITE
   =========================== */

/* ESCRITORIO: botón a la izq debajo de "Botellas que no se esconden." */
@media (min-width: 769px) {
  /* SECCIÓN ACEITE: texto más ancho que la imagen */
  #aceite .section-general-inner {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); /* aprox 60% / 40% */
	   padding: 30px 30px 0px;
  }
}

#aceite .section-centrado-actions {
  grid-area: actions;    /* usa la fila de acciones del grid */
  justify-self: center;   /* lo pega al lado derecho de la columna de texto */
  padding: 0px 0px 0px;            /* quitamos padding para que no se separe raro */
}

#aceite .section-centrado-actions .btn-solid {
  margin: 0;             /* sin margen lateral extra */
}

#aceite .section-general-text,
#aceite .section-general-body p,
#aceite .section-general-extra {
  text-align: center;    /* títulos + "Botellas que no se esconden." centrados */
}

/* MÓVIL: todo centrado en esta sección */
@media (max-width: 768px) {
  #aceite .section-general-inner {
    text-align: center; 
	  padding: 0px 30px 0px;
  }

   #aceite .section-general-text { order: 1; }
  #aceite .section-general-media { order: 2; }
  #aceite .section-centrado-inner { order: 3; } 
	
 }

  #aceite .section-centrado-actions {
    display: flex;
    justify-content: center;
    padding: 30px;
    margin-top: 12px;
  }

  #aceite .section-centrado-actions .btn-solid {
    margin: 0 auto;        /* botón centrado */
  }

  #aceite .section-centrado-actions .btn-solid-izq {
    margin: 0 auto;        /* botón iz */
  }


.section-press-feature {
  padding: 1px 0;
  background-color: #fff;
}


.section-press-feature .press-feature-text {
  flex: 0 0 50%;
  text-align: center;
}

/* Botones dentro de la ficha: en línea y centrados */
.section-press-feature .section-destino-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  margin-top: 16px;
  padding: 0;
}

/* Quitar márgenes propios de los botones dentro de esta sección */
.section-press-feature .section-destino-actions .btn-outline,
.section-press-feature .section-destino-actions .btn-solid {
  margin: 0;
}

   .section-press-feature .press-feature-text {
    text-align: left;
  }

  .section-press-feature .section-destino-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }


/* Contenedores de imagen con parallax: recortan el contenido */
.section-general-media,
.press-feature-media {
  position: relative;
  overflow: hidden;
}

/* =======================================
   SECCIÓN HABITACIONES · PLANTILLA
   ======================================= */

.section-press-feature {
  padding: 60px 0;
  background-color: #fff;
}

.section-press-feature .press-feature-inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 50px;   /* mismo aire que el resto de secciones */
    padding-right: 50px;
    display: flex;
    align-items: center;
    gap: 60px;            /* puedes subir/bajar este valor si quieres más o menos hueco entre imagen y texto */
  }

/* columnas 50 / 50 */
  .section-press-feature .press-feature-text {
    flex: 1 1 0;          /* columnas simétricas */
  text-align: center;
	   position: relative;
  overflow: hidden;

}

/* Botones en línea y centrados en esta sección */
.section-press-feature .section-destino-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  margin-top: 16px;
  padding: 0;
}

/* Quitamos márgenes propios de los botones dentro de esta sección */
.section-press-feature .section-destino-actions .btn-outline,
.section-press-feature .section-destino-actions .btn-solid {
  margin: 0;
}

/* RESPONSIVE: en pantallas más pequeñas apilamos en columna */
@media (max-width: 768px) {
  .section-press-feature .press-feature-inner {
    flex-direction: column;
    padding: 0 30px;
    gap: 32px;
  }

  .section-press-feature .press-feature-text {
    flex: 0 0 auto;
    width: 100%;
  }

  .section-press-feature .press-feature-text {
    text-align: left;
  }

  .section-press-feature .section-destino-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
	.section-centrado-eyebrow {
  margin-bottom: 26px;
	 text-align: center;}
		
		.section-eyebrow {
  margin-bottom: 26px;
	 text-align: left;

}
}
/* AJUSTE FINO FICHA HABITACIÓN: centrar totalmente */
@media (min-width: 769px) {
  .section-press-feature .press-feature-inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;   /* mismo aire que el resto de secciones */
    padding-right: 30px;
    display: flex;
    align-items: center;
    gap: 60px;            /* puedes subir/bajar este valor si quieres más o menos hueco entre imagen y texto */
  }

  .section-press-feature .press-feature-text {
    flex: 1 1 0;          /* columnas simétricas */
  }
}
/* ===========================
   HABITACIÓN FEATURE · IMAGEN
   =========================== */

/* Marco de la imagen del feature:
   misma proporción en todas las fotos */
.section-press-feature .press-feature-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;      /* ajusta el ratio si quieres: 3 / 2, 16 / 9, etc. */
}

/* El swiper ocupa todo el marco */
.section-press-feature .press-feature-swiper {
  width: 100%;
  height: 100%;
}

/* Las imágenes rellenan el marco y se recortan si hace falta */
.section-press-feature .press-feature-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ENTORNO: CARRUSEL VERTICAL */
.section-press-feature.section-press-feature--entorno .press-feature-media {
  aspect-ratio: 3 / 4;   /* vertical */
}
@media (min-width: 769px) {
  .section-press-feature.section-press-feature--entorno .press-feature-media {
    aspect-ratio: 3 / 4;   /* vertical */
    max-width: 420px;
  }
}


/* =========================================================
   PRENSA · AJUSTES ESPECÍFICOS DE PÁGINA
   ========================================================= */

#nada{
  height: 20px;
  padding: 0;
}

#Logo .section-centrado-inner{
  padding-top: 0;
  padding-bottom: 0;
}

#Prensa .section-centrado-inner{
  max-width: 1200px;
  padding: 0 30px;
  text-align: center;
}

#Prensa .section-general-title{
  margin-bottom: 18px;
}

#Prensa .section-general-body{
  max-width: 1040px;
  margin: 0 auto;
}

#Prensa .section-general-body p:last-child{
  margin-bottom: 0;
}

#Prensa .section-centrado-inner{
  max-width: 1200px;
  padding: 0 30px;
}

#Prensa .section-centrado-actions{
  padding-top: 25px;
}

/* =========================================================
   PRENSA · TARJETAS
   ========================================================= */

.press-card{
  --press-bg: #323741;
  --press-fg: #ffffff;
  --press-pad-x: 48px;
  --press-logo-maxw: 160px;
}

.press-card .press-media{
  position: relative;
  overflow: hidden;
}

/* Neutraliza el overlay genérico de habitaciones en esta página */
.press-card .press-overlay{
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
  padding: 0;
  background: transparent;
  opacity: 1;
}

.press-card:hover .press-overlay,
.press-card:focus-within .press-overlay{
  background: transparent;
  opacity: 1;
}

/* Caja base */
.press-card .press-box{
  position: absolute;
  inset: 0;
  background: var(--press-bg);
  color: var(--press-fg);
  font-family: "Aribau Grotesk Light";
  text-align: center;
  z-index: 1;
  transition: opacity 220ms ease;
}

/* Logo arriba */
.press-card .press-box__top{
  position: absolute;
  top: 40px;
  left: var(--press-pad-x);
  right: var(--press-pad-x);
  display: flex;
  justify-content: center;
}

.press-card .press-box__logo{
  width: min(var(--press-logo-maxw), 100%);
  max-width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Texto centrado vertical y horizontalmente */
.press-card .press-box__mid{
  position: absolute;
  top: 50%;
  left: var(--press-pad-x);
  right: var(--press-pad-x);
  transform: translateY(-50%);
}

.press-card .press-box__quote{
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  font-family: "Aribau Grotesk Light";
  font-weight: 200;
}

/* Botón fijo abajo */
.press-card .press-box__bottom{
  position: absolute;
  left: var(--press-pad-x);
  right: var(--press-pad-x);
  bottom: 36px;
  display: flex;
  justify-content: center;
}

.press-card .press-box__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  border: 0.7px solid #fff;
  background-color: transparent;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  font-family: "Aribau Grotesk Light";
  font-weight: 300;
  white-space: nowrap;
}

/* Hover image */
.press-card .card-img.is-hover{
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 0;
  width: calc(100% - 20px);
  height: calc(100% - 10px);
  object-fit: contain;
  object-position: center top;
  opacity: 0;
  z-index: 2;
  transition: opacity 220ms ease;
}

/* Swap en hover */
.press-card:hover .press-box,
.press-card:focus-within .press-box{
  opacity: 0;
}

.press-card:hover .card-img.is-hover,
.press-card:focus-within .card-img.is-hover{
  opacity: 1;
}

/* =========================================================
   PRENSA · TABLET
   ========================================================= */

@media (min-width: 769px) and (max-width: 1024px){
  #Prensa .section-centrado-inner,
  #Prensa .section-centrado-inner{
    padding-left: 24px;
    padding-right: 24px;
  }

  .press-card{
    --press-pad-x: 24px;
    --press-logo-maxw: 150px;
  }

  .press-card .press-box__quote{
    font-size: 14px;
    line-height: 1.2;
  }

  .press-card .press-box__bottom{
    bottom: 30px;
  }

  .press-card .press-box__cta{
    padding: 10px 14px;
    font-size: 8px;
    letter-spacing: 0.12em;
  }
}

/* =========================================================
   PRENSA · MÓVIL
   ========================================================= */

@media (max-width: 768px){
  #nada{
    height: 10px;
  }

  /* Más aire lateral en la introducción */
  #Prensa .section-centrado-inner{
    padding: 0 30px;
    box-sizing: border-box;
  }

  #Prensa .section-general-body{
    padding: 0 30px;
    box-sizing: border-box;
  }

  /* Tarjetas con 10px entre ellas y 10px a los lados */
  #Prensa .section-centrado-inner{
    padding: 0 30px;
    box-sizing: border-box;
  }

  #Prensa .press-grid{
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }

  #Prensa .press-card,
  #Prensa .press-media{
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }

  .press-card{
    --press-pad-x: 24px;
    --press-logo-maxw: 230px;
  }

  /* Caja gris un poco más estrecha */
  .press-card .press-box{
    top: 0;
    bottom: 0;
    left: 12px;
    right: 12px;
  }

  /* Logo más abajo y más grande */
  .press-card .press-box__top{
    top: 28px;
    left: var(--press-pad-x);
    right: var(--press-pad-x);
  }

  .press-card .press-box__logo{
    max-width: 85%;
	  padding-top:30px;
  }

  /* Texto más grande */
  .press-card .press-box__mid{
    left: var(--press-pad-x);
    right: var(--press-pad-x);
  }

  .press-card .press-box__quote{
    font-size: 20px;
    line-height: 1.16;
	  padding: 0 30px;
  }

  /* Botón más arriba */
  .press-card .press-box__bottom{
    left: var(--press-pad-x);
    right: var(--press-pad-x);
    bottom: 40px;
  }

  .press-card .press-box__cta{
    padding: 20px 20px;
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  /* Imagen hover alineada con la nueva anchura */
  .press-card .card-img.is-hover{
    top: 10px;
    left: 22px;
    right: 22px;
    bottom: 10px;
    width: calc(100% - 44px);
    height: calc(100% - 20px);
  }
}
