@charset "UTF-8";
/* =============================================================
   ACEITE.CSS · Cortijo Bablou
   Estilos específicos de aceite.html
   Sustituye al secciones.css (referencia rota)
   ============================================================= */


/* =========================================================
   FRANJA CTA CON IMAGEN
   ========================================================= */

.section-full-bleed-short {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.section-full-bleed-bg {
  position: absolute;
  inset: 0;
  background-color: var(--verde-oscuro);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-full-bleed-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.section-full-bleed-short::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
}

.section-full-bleed-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: var(--container-width);
  height: 100%;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

.section-full-bleed-short .hero-text {
  position: static;
  transform: none;
  margin: 0 auto;
}

.section-franja-text-white {
  display: block;
  margin: 0 0 12px;
  color: #fff;
  font-family: "Retro Voice", serif;
  font-size: 40px;
  line-height: 1.1;
}

#imagen {
  position: relative;
  overflow: hidden;
}

#imagen .section-full-bleed-bg,
#imagen .section-full-bleed-img {
  position: absolute;
  inset: 0;
}

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

@media (min-width: 769px) and (max-width: 1200px) {
  .header-inner {
    padding: 14px 24px;
  }

  .nav-left,
  .nav-right {
    column-gap: 30px;
    letter-spacing: 0.14em;
  }

  .main-nav ul {
    gap: 18px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-general-inner {
    grid-template-areas:
      "text media"
      "actions actions";
  }

  .section-general-actions {
    flex-wrap: nowrap;
  }

  .section-general-actions .btn-outline,
  .section-general-actions .btn-solid {
    padding: 15px 22px;
    white-space: nowrap;
  }
}

/* =========================================================
   MÃVIL
   ========================================================= */

@media (max-width: 1000px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
    width: 100%;
  }

  .header-inner {
    min-height: auto;
    padding: 12px 16px;
  }

  .header-logo {
    display: none;
  }

  .mobile-header-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 12px;
  }

  .mobile-header-top .lang-switcher {
    justify-self: flex-start;
    color: #fff;
  }

  .mobile-logo {
    justify-self: center;
  }

  .mobile-logo img {
    height: 100px;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.5px;
    background-color: #fff;
    border-radius: 999px;
    transition: transform 0.22s ease, opacity 0.22s ease, top 0.22s ease, bottom 0.22s ease;
  }

  .nav-toggle span:nth-child(1) {
    top: 0;
  }

  .nav-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-toggle span:nth-child(3) {
    bottom: 0;
  }

  .nav-toggle.is-active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 88px;
  }

  .hero-inner {
    padding: 110px 20px calc(100px + env(safe-area-inset-bottom));
  }

  .hero-text {
    margin-bottom: 32px;
    padding: 10px;
  }

  .hero-text h1 {
    font-size: 22px;
    letter-spacing: 0.08em;
  }

  .mobile-menu.is-open {
    display: flex;
    flex-direction: column;
    padding-top: 120px;
    padding-bottom: calc(100px + 50px + 24px + env(safe-area-inset-bottom));
  }

  .mobile-menu.is-open .mobile-nav {
    flex: 1;
    width: 100%;
    padding: 0 24px;
  }

  .mobile-menu.is-open .mobile-menu-reserva {
    position: fixed;
    left: 50%;
    bottom: calc(100px + env(safe-area-inset-bottom));
    z-index: 1100;
    width: calc((100vw - 40px) * 0.7);
    max-width: 680px;
    margin: 0;
    transform: translateX(-50%);
  }

  .mobile-menu.is-open ~ .hero .booking-bar {
    opacity: 0;
    pointer-events: none;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-bar {
    max-width: 70%;
  }

  .booking-field,
  .booking-btn-desktop {
    display: none;
  }

  .booking-btn-mobile {
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }

  .section-general,
  .section-general-verde,
  .section-centrado {
    padding: 60px 0;
  }

  .section-general-inner,
  .section-centrado-inner {
    padding: 0 30px;
  }

  .section-general-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .section-general-text,
  .section-general-media,
  .section-general-actions {
    width: 100%;
  }

  .section-general-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-general-actions .btn-outline,
  .section-general-actions .btn-solid {
    align-self: flex-start;
    white-space: nowrap;
  }

  .section-centrado-inner {
    padding: 0;
  }

  .section-centrado {
    padding: 30px;
  }

  .section-centrado-actions {
    flex-wrap: wrap;
    justify-content: center;
    padding: 25px 0 0;
  }

  .habitaciones-grid {
    grid-template-columns: 1fr;
    padding: 50px 0 0;
  }

  .carrusel-slider {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
  }

  #Aceite .section-general-inner {
    text-align: center;
    padding: 0 30px;
  }

  #Aceite .section-general-text {
    order: 1;
  }

  #Aceite .section-general-media {
    order: 2;
  }

  #Aceite .section-centrado-inner {
    order: 3;
  }

  #Aceite .section-centrado-actions {
    padding: 30px;
  }

  #Aceite .section-general-title-secondary {
    font-size: 26px;
  }

  .section-full-bleed-inner {
    padding: 30px;
  }

  .section-franja-text-white {
    font-size: 30px;
  }
}
.hero-text h1 {
  margin: 0;
  font-family: "Retro Voice", serif;
	text-transform: none;
  letter-spacing: 0.03em;
  line-height: 1.3;
  font-size: 60px;
	font-weight: 100;
}

.section-full-bleed {
  position: relative;
  min-height: 100vh;   /* para que ocupe todo el alto de la pantalla  min-height: 100vh;*/
  width: 100%;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.section-full-bleed-short {
  position: relative;
  height: 50vh;   /* para que ocupe todo el alto de la pantalla  min-height: 100vh;*/
  width: 100%;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

/* Fondo a sangre */
.section-full-bleed-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
	 background-color: var(--verde-oscuro);
}

/* Capa oscura para leer mejor el texto */
.section-full-bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
	  z-index: 1;
}
/* Imagen de fondo usando <img> */
.section-full-bleed-img {
  width: 100%;
  height: 140%;
  top: -20%;
  object-fit: cover;      /* recorta como si fuera background-size: cover */
  display: block;
  object-position: center bottom;
}
/* Contenido centrado dentro de la imagen */
.section-full-bleed-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;  /* centra verticalmente el texto */
height: 100%;
  align-items: center;    /* centrado vertical */
  text-align: center;
  z-index: 1;
  min-height: calc(100vh - var(--header-height));
  padding: calc(20px + var(--header-height)) 40px 40px;
  display: flex;
 }
.section-full-bleed-short .section-full-bleed-inner {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: center;  /* centra verticalmente */
  align-items: center;      /* centra horizontalmente */
  text-align: center;

  height: 100%;     /* Ã°Å¸ââ° ocupa el 100% de la franja corta */
  min-height: 0;    /* Ã°Å¸ââ° anula el min-height de 100vh */
  padding: 40px;    /* Ã°Å¸ââ° sin sumar la altura del header */
}

.section-full-bleed .hero-text {
  position: static;
  top: auto;
  left: auto;
  transform: none;
  margin: 0 auto;
}
/* CABECERAS INTERIORES */
#Aceite {
  position: relative;
  height: 65vh;
  min-height: 0;
  overflow: hidden;
}
#Aceite .section-full-bleed-bg{
 position: absolute;
  top: -2px;   /* evita que asome la franja negra arriba */
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
#Aceite .section-full-bleed-img{
  position: absolute;
  left: 0;
  bottom: 0;
  top: auto;
  width: 100%;
  height: calc(100% + 2px); /* cubre completamente el borde superior */
  object-fit: cover;
  object-position: center bottom;
  transform-origin: center bottom;
}
#Aceite .section-full-bleed-inner{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-width: none;
  margin: 0;
  padding: 0px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#Aceite .hero-text{
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;   /* esto coloca el subtÃ­tulo debajo */
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

#Aceite .hero-title,
#Aceite .hero-text h1{
  margin: 0;
  padding: 10px;
	max-width: 600px;
}
/* TÃÂ­tulo en blanco usando tu tipografÃÂ­a */
.section-general-title-white {
  color: #fff;
	padding-top: 250px;
}

/* Texto blanco ya lo tienes como .section-general-body-white */

/* VersiÃÂ³n mÃÂ³vil: mantiene 20px de padding lateral */
@media (max-width: 768px) {
  .section-full-bleed-inner {
    min-height: calc(100vh - var(--header-height));
    padding: calc(20px + var(--header-height)) 10px 10px;
  
}

#Aceite .section-full-bleed-inner{
  max-width: none;
  margin: 0;
  padding: 0px 30px;
}

#Aceite .hero-title,
#Aceite .hero-text h1{
  margin: 0;
  padding: 10px;
	max-width: 600px;
}}
