@charset "UTF-8";
/* =============================================================
   MAIN.CSS · Cortijo Bablou
   Estilos comunes a TODAS las páginas.
   ============================================================= */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --arena-claro:   #e8e5de;
  --verde-claro:   #e3eae6;
  --verde-oscuro:  #718473;
  --plomo:         #515a6b;
  --gris-oscuro:   #323741;
  --arena-oscuro:  #a39382;
  --verde-medio:   #afb8af;
  --arena-medio:   #ccc7bf;
  --crema:         #f8f5f0;
  --texto:         #303642;
  --texto-body:    #3c3b3a;
  --texto-gris:    #8b8f96;
  --verde-booking: rgba(112, 131, 116, 0.8);
  --header-bg:     rgba(113, 132, 115, 0.90);
  --font-display:  "Retro Voice", serif;
  --font-body:     "Aribau Grotesk Light", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-ui:  11px;
  --letter-ui:     0.18em;
  --container-max: 1200px;
  --header-height: 100px;
  --section-pad:   80px;
}

/* ── RESET BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--texto-body); background-color: #fff; }
a    { color: inherit; text-decoration: none; }
img  { max-width: 100%; display: block; }
ul   { list-style: none; margin: 0; padding: 0; }

/* ── UTILIDADES ─────────────────────────────────────────────── */
.container   { max-width: var(--container-max); margin: 0 auto; padding: 0 40px; }
.white       { color: #fff; text-decoration: none; }
.desktop-only { display: flex; }
.mobile-only  { display: none; }
.linea-gris  { border: 0; border-top: 1px solid #d4d4d4; margin: 0 auto; width: 100%; display: block; }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  background-color: var(--header-bg);
  border-bottom: 0.5px solid rgba(255,255,255,0.2);
  position: fixed; top: 0; left: 0; right: 0; width: 100%;
  z-index: 1000;
  transition: transform .4s ease, background-color .3s ease, box-shadow .3s ease;
  will-change: transform;
}
.site-header.is-scrolled { background-color: var(--header-bg); box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.site-header.is-hidden   { transform: translateY(-100%); }

.header-inner {
  max-width: var(--container-max); margin: 0 auto;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; min-height: var(--header-height); z-index: 2;
}
.header-logo { left: 50%; top: 50%; transform: translate(-5%, 0%); }
.header-logo img { height: 100px; }

.nav-left, .nav-right {
  align-items: center; column-gap: 40px;
  font-size: var(--font-size-ui); text-transform: uppercase; letter-spacing: var(--letter-ui);
}
.nav-left { flex: 1; }
.nav-right { flex: 1; justify-content: flex-end; }

.main-nav ul { display: flex; column-gap: 24px; }
.main-nav a  { color: #fff; text-transform: uppercase; letter-spacing: var(--letter-ui); font-size: var(--font-size-ui); }
.main-nav a:hover { color: var(--gris-oscuro); }

.lang-switcher { display: flex; align-items: center; column-gap: 6px; font-size: var(--font-size-ui); text-transform: uppercase; letter-spacing: var(--letter-ui); }
.lang-switcher a         { opacity: .5; }
.lang-switcher a.is-active { opacity: 1; }
.lang-switcher span      { opacity: 1; }

.btn-reserva {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0.5px solid #fff; padding: 9px 24px;
  font-size: var(--font-size-ui); text-transform: uppercase; letter-spacing: var(--letter-ui);
  background-color: transparent; color: #fff;
  transition: background-color .2s ease, color .2s ease;
}
.btn-reserva:hover { background-color: #fff; color: var(--gris-oscuro); }

/* ── HEADER TABLET (769–1200px) ─────────────────────────────── */
@media (min-width: 769px) and (max-width: 1200px) {
  .header-inner { padding: 14px 24px; }
  .nav-left, .nav-right { column-gap: 30px; letter-spacing: .14em; }
  .main-nav ul { column-gap: 18px; }
}

/* ── HEADER MÓVIL (<1000px) ─────────────────────────────────── */
.nav-toggle { display: none; }

@media (max-width: 1000px) {
  .desktop-only { display: none; }
  .mobile-only  { display: block; width: 100%; }
  .header-inner { padding: 12px 16px; min-height: auto; }
  .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; font-size: var(--font-size-ui); 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; border: none; background: transparent; padding: 0; cursor: pointer;
  }
  .nav-toggle span {
    position: absolute; left: 0; width: 100%; height: 0.5px;
    background-color: #fff; border-radius: 999px;
    transition: transform .22s ease, opacity .22s ease, top .22s ease, bottom .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) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

  .mobile-header-bottom { margin-top: 8px; display: flex; justify-content: center; }
  .mobile-header-bottom .btn-reserva { padding-left: 32px; padding-right: 32px; }
}

/* ── MENÚ OVERLAY MÓVIL ─────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0;
  background-color: var(--header-bg); color: #fff;
  z-index: 30; display: none;
}
.mobile-menu.is-open { display: block; }

.mobile-nav {
  max-width: var(--container-max); margin: 0 auto;
  padding: 96px 24px 32px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  row-gap: 32px; text-align: center;
}
.mobile-nav ul { display: flex; flex-direction: column; row-gap: 32px; font-size: 15px; letter-spacing: .12em; text-transform: uppercase; }
.mobile-nav a  { color: inherit; text-transform: uppercase; letter-spacing: var(--letter-ui); font-size: var(--font-size-ui); }
.mobile-nav a:hover { color: var(--gris-oscuro); }
.mobile-nav a.btn-buscar.mobile-menu-reserva { background-color: #fff; color: var(--verde-oscuro); }

@media (max-width: 768px) {
  .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;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    row-gap: 32px; text-align: center;
  }
  .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) * .70); max-width: 680px; transform: translateX(-50%);
  }
  .mobile-menu.is-open ~ .hero .booking-bar { opacity: 0; pointer-events: none; }
}

/* ── BOOKING BAR ────────────────────────────────────────────── */
.booking-bar {
  position: relative; width: 100%; max-width: 680px; margin: 0 auto; padding: 0;
  color: #fff; background-color: var(--verde-booking);
  border: 0.5px solid rgba(255,255,255,.35); box-shadow: 0 5px 10px rgba(0,0,0,.30);
}
.booking-form { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; align-items: stretch; }
.booking-field {
  position: relative; padding: 9px 11px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background-color: var(--verde-booking); border: 0.5px solid rgba(255,255,255,.35);
}
.booking-field label  { font-size: 10px; text-align: left; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 4px; opacity: .85; }
.booking-field input,
.booking-field select { background: transparent; border: none; padding: 0; height: auto; font-size: var(--font-size-ui); font-family: inherit; color: #fff; }
.booking-field input::placeholder { color: rgba(255,255,255,.75); }
.booking-field select  { appearance: none; }
.booking-submit { display: flex; align-items: stretch; padding: 0; background-color: #fff; }
.booking-submit:hover  { background-color: rgba(112,131,116,1); color: #fff; }
.btn-buscar {
  width: 100%; min-height: 50px; border: none; border-radius: 0;
  background-color: #fff; color: var(--gris-oscuro);
  text-transform: uppercase; letter-spacing: .16em; font-size: var(--font-size-ui); font-weight: 200;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background-color .2s ease, color .2s ease;
}
.btn-buscar:hover { color: var(--verde-oscuro); }
.booking-btn-desktop { display: inline-flex; }
.booking-btn-mobile  { display: none; }

@media (min-width: 769px) and (max-width: 1024px) {
  .booking-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .booking-form  { grid-template-columns: 1fr; }
  .booking-bar   { max-width: 70%; }
  .booking-field,
  .booking-btn-desktop { display: none; }
  .booking-btn-mobile  { display: inline-flex; width: 100%; justify-content: center; }
}

/* ── HERO BASE ──────────────────────────────────────────────── */
.hero { position: relative; height: 100vh; overflow: hidden; background-color: #fff; }
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.hero-video-wrapper::after {
  content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.35); z-index: 1;
}
.hero-video iframe {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 100vw; height: 56.25vw; min-width: 177.78vh; min-height: 100vh;
}
.hero-fallback-image { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; z-index: 0; }
.hero-video.show-fallback iframe { display: none; }
.hero-video.show-fallback .hero-fallback-image { opacity: 1; }
.hero-inner {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--container-max); height: 100%;
  padding: 130px 40px 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  text-align: center; z-index: 5;
}
.hero-text {
  max-width: 900px; margin: 0 auto 60px; color: #fff;
  position: absolute; left: 50%; top: 55%; transform: translate(-50%,-50%);
  text-align: center; z-index: 2;
}
.hero-title { margin: 0 0 .25em; }
.hero-title h1, .hero-text h1 {
  margin: 0; font-family: var(--font-display); font-size: 60px; font-weight: 100;
  line-height: 1.3; letter-spacing: .03em; text-transform: none;
}
.hero-subtitle { margin: 0; text-transform: uppercase; }

/* Hero full-bleed (páginas interiores) */
.section-full-bleed, .section-full-bleed-short {
  position: relative; width: 100%; overflow: hidden; color: #fff; text-align: center;
}
.section-full-bleed { min-height: 100vh; }
.section-full-bleed-short { height: 65vh; min-height: 0; }
.section-full-bleed::before, .section-full-bleed-short::before {
  content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(0,0,0,.35);
}
.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 .hero-text,
.section-full-bleed-short .hero-text { position: static; transform: none; margin: 0 auto; padding: 0; }
.section-full-bleed-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; min-height: 0; margin: 0; padding: 0 80px; text-align: center;
}

/* Hero responsive */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-text h1, .hero-title h1 { font-size: 48px; letter-spacing: .06em; }
}
@media (max-width: 768px) {
  .hero { height: 100vh; }
  .hero-inner { padding: 110px 20px calc(100px + env(safe-area-inset-bottom)); }
  .hero-text  { margin-bottom: 32px; padding: 10px; }
  .hero-text h1, .hero-title h1 { font-size: 45px; letter-spacing: .08em; }
  .hero-subtitle { padding: 0 40px; }
  .section-full-bleed-inner { padding: 0 30px; }
  .section-full-bleed-short { height: 50vh; }
}

/* ── PRELOADER ───────────────────────────────────────────────── */
#preloader { position: absolute; inset: 0; background-color: #fff; display: flex; align-items: center; justify-content: center; z-index: 10; transition: opacity .4s ease, visibility .4s ease; }
#preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; row-gap: 16px; }
.preloader-logo  { height: 170px; }
.preloader-spinner { width: 60px; height: 60px; border-radius: 50%; border: 2px solid rgba(255,255,255,.2); border-top-color: var(--gris-oscuro); animation: spin .9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── BOTONES ─────────────────────────────────────────────────── */
.btn-outline, .btn-solid {
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0; padding: 15px 30px; font-size: var(--font-size-ui); letter-spacing: .15em; text-transform: uppercase;
  cursor: pointer; transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn-outline { border: 0.7px solid var(--texto); background-color: transparent; color: var(--texto); }
.btn-outline:hover { background-color: var(--texto); color: #fff; }
.btn-outline--white { border-color: #fff; color: #fff; }
.btn-outline--white:hover { background-color: #fff; color: var(--texto); }
.btn-solid { border: 0.7px solid var(--texto); background-color: var(--texto); color: #fff; }
.btn-solid:hover { background-color: transparent; color: var(--texto); }
.btn-solid-white { border-color: #fff; background-color: #fff; color: var(--texto); }
.btn-solid-white:hover { border-color: var(--texto); background-color: var(--texto); color: #fff; }

@media (max-width: 768px) {
  .btn-outline, .btn-solid { padding: 14px 24px; }
}

/* ── SECCIONES ───────────────────────────────────────────────── */
.section-general, .section-general-verde, .section-general-crema, .section-centrado { padding: var(--section-pad) 0; }
.section-general            { background-color: #fff; }
.section-general-verde      { background-color: var(--verde-oscuro); }
.section-general-crema      { background-color: var(--crema); }
.section-general-gris       { padding: var(--section-pad) 0; background-color: var(--verde-oscuro); }
.section-general-verde-claro { padding: var(--section-pad) 0; background-color: var(--verde-medio); }
.section-centrado           { background-color: var(--crema); }
.section-centrado-white     { padding: 30px 0; background-color: #fff; }

.section-general-inner, .section-centrado-inner, .section-franja-inner {
  box-sizing: border-box; max-width: var(--container-max); margin: 0 auto; padding: 0 30px;
}
.section-general-inner {
  display: grid; grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  grid-template-areas: "text media" "actions media";
  align-items: stretch; column-gap: 60px; row-gap: 20px;
}
.section-general--reverse .section-general-inner {
  grid-template-columns: minmax(0,1fr) minmax(0,1.2fr);
  grid-template-areas: "media text" "media actions";
}
.section-centrado-inner { text-align: center; }
.section-general-text    { grid-area: text; }
.section-general-actions { grid-area: actions; display: flex; flex-wrap: wrap; gap: 12px; align-self: end; }
.section-general-media   { grid-area: media; display: flex; align-self: stretch; align-items: flex-start; justify-content: center; overflow: hidden; }
.section-general-media img { display: block; width: 100%; height: auto; max-height: 100%; object-fit: cover; }
.section-centrado-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px; margin-top: 12px; padding: 25px 40px; }

/* Eyebrow */
.section-eyebrow, .section-eyebrow--light, .section-eyebrow-white, .section-centrado-eyebrow {
  margin: 0 0 18px; font-size: var(--font-size-ui); letter-spacing: .15em; text-transform: uppercase;
}
.section-eyebrow, .section-centrado-eyebrow { color: var(--texto-gris); }
.section-eyebrow--light, .section-eyebrow-white { color: #fff; }
.section-eyebrow-xl { margin: 0 0 18px; font-size: 16px; text-transform: uppercase; letter-spacing: .15em; color: var(--texto-gris); }
.section-general-body .section-eyebrow-sub { margin: 25px 0 5px; font-size: var(--font-size-ui); text-transform: uppercase; letter-spacing: .15em; color: var(--texto-gris); }

/* Títulos */
.section-general-title, .section-general-title--light { margin: 0 0 26px; font-family: var(--font-display); font-size: 40px; line-height: 1.1; letter-spacing: .02em; }
.section-general-title       { color: var(--texto); }
.section-general-title--light { color: #fff; }
.section-general-title-m     { margin: 0 0 26px; font-family: var(--font-display); font-size: 30px; line-height: 1.1; letter-spacing: .02em; color: var(--texto); }

/* Cuerpo */
.section-general-body, .section-general-body-white { font-size: 14px; line-height: 1.5; }
.section-general-body       { color: var(--texto); }
.section-general-body-white { color: #fff; }
.section-general-body p, .section-general-body-white p { margin: 0 0 14px; }
.section-general-extra { margin: 12px 0 50px; font-size: 40px; line-height: 1; color: var(--texto); font-family: var(--font-display); text-align: center; }

/* Franja */
.section-franja { padding: 0 30px; background-color: #fff; }
.section-franja-inner { text-align: center; }
.section-franja-text { margin: 40px 0; color: var(--texto); font-family: var(--font-display); font-size: 30px; line-height: 1.1; }
.section-franja-text-white { display: block; margin: 0 0 12px; color: #fff; font-family: var(--font-display); font-size: 40px; line-height: 1.1; }

/* Franja imagen sangre */
.section-franja-imagen { position: relative; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); overflow: hidden; }
.section-franja-imagen__img { display: block; width: 100%; height: 420px; object-fit: cover; }
.section-franja-imagen__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 20px; }
.section-franja-imagen__eyebrow { font-size: 14px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px; color: #fff; }
.section-franja-imagen__title { font-size: 28px; line-height: 1.2; color: #fff; }

/* Sección full-bleed corta (CTA) */
.section-full-bleed-short-cta { position: relative; width: 100%; height: 60vh; overflow: hidden; color: #fff; text-align: center; }

/* Secciones — tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .section-general, .section-general-verde, .section-general-crema,
  .section-general-gris, .section-centrado { padding: 70px 0; }
  .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; }
}

/* Secciones — móvil */
@media (max-width: 768px) {
   .section-general-crema, .section-general-gris, .section-general-verde-claro, .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; padding-top: 10px; }
  .section-general-actions .btn-outline, .section-general-actions .btn-solid { align-self: flex-start; white-space: nowrap; }
  .section-centrado { padding: 30px; }
  .section-centrado-actions { flex-wrap: wrap; justify-content: center; padding: 35px 0; }
  .section-franja-imagen__img  { height: 180px; }
  .section-franja-imagen__title { font-size: 22px; }
  .section-franja-text-white   { font-size: 34px; }
  .section-franja-text         { font-size: 24px; }
  .section-franja              { padding: 0 30px; }
}

/* ── CARRUSEL ────────────────────────────────────────────────── */
.carrusel-slider { max-width: 1180px; margin: 60px auto 0; padding: 0 30px; }
.carrusel-swiper { width: 100%; overflow: hidden; }
.carrusel-slide  { position: relative; overflow: hidden; }
.carrusel-slide::before { content: ""; display: block; padding-top: 56.25%; }
.carrusel-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.carrusel-progress-bar { position: absolute; bottom: 0; left: 0; width: 0; max-width: 100%; height: 3px; background-color: #5f7660; transition: all 0s linear; }
.carrusel-swiper .swiper-slide-active .carrusel-progress-bar { width: 100%; transition-duration: 5000ms; }
.carrusel-pagination-wrapper { margin-top: 48px; text-align: center; }
.carrusel-pagination { display: inline-block; }
.carrusel-pagination .swiper-pagination-bullet { width: 6px; height: 6px; margin: 0 4px !important; border: 1px solid #5f7660; border-radius: 0; background-color: transparent; opacity: 1; cursor: pointer; }
.carrusel-pagination .swiper-pagination-bullet-active { background-color: #5f7660; }

@media (max-width: 768px) {
  .carrusel-slider { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); padding: 0; overflow: hidden; }
}

/* ── FAQ ACORDEÓN ────────────────────────────────────────────── */
.faq-accordion { width: 100%; border-top: 1px solid rgba(255,255,255,.5); }
.faq-item      { border-bottom: 1px solid rgba(255,255,255,.5); }
.faq-toggle    { display: none; }
.faq-header    { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; cursor: pointer; }
.faq-question  { color: #fff; font-size: var(--font-size-ui); letter-spacing: var(--letter-ui); text-transform: uppercase; }
.faq-icon      { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; inset: 0; top: 50%; height: 1px; background-color: #fff; transform: translateY(-50%); }
.faq-icon::after { transform: translateY(-50%) rotate(90deg); }
.faq-content   { max-height: 0; overflow: hidden; opacity: 0; padding-right: 10px; transition: max-height .3s ease, opacity .3s ease, padding-bottom .3s ease; }
.faq-content p { margin: 0 0 16px; color: #fff; font-size: 14px; line-height: 1.5; }
.faq-toggle:checked + .faq-header + .faq-content { max-height: 320px; opacity: 1; padding-bottom: 18px; }
.faq-toggle:checked + .faq-header .faq-icon::after { opacity: 0; }

/* ── MAPA CONTACTO ───────────────────────────────────────────── */
.section-mapa-contacto { background-color: var(--crema); height: 500px; padding: 0; margin: 0; }
.section-mapa-contacto .mapa-contacto-inner { height: 100%; }
.section-mapa-contacto iframe { width: 100%; height: 100%; display: block; border: 0; }

/* ── FORMULARIO CONTACTO ─────────────────────────────────────── */
.section-contacto .contacto-inner { max-width: 520px; margin: 0 auto; text-align: left; }
.section-contacto .contacto-eyebrow { text-align: center; margin-bottom: 8px; letter-spacing: .2em; font-size: var(--font-size-ui); }
.section-contacto .contacto-title   { font-family: var(--font-display); text-align: center; font-size: 32px; margin-bottom: 20px; }
.section-contacto .contacto-title-s { font-family: var(--font-display); text-align: center; font-size: 24px; margin-bottom: 20px; }
.section-contacto .contacto-intro   { text-align: center; font-size: 14px; line-height: 1.7; margin-bottom: 40px; }
.section-contacto .contacto-intro a { text-decoration: underline; }
.section-contacto .form-group       { margin-bottom: 22px; }
.section-contacto .form-group label { display: block; font-size: var(--font-size-ui); text-transform: uppercase; letter-spacing: .16em; margin-bottom: 6px; }
.section-contacto .form-group input[type="text"],
.section-contacto .form-group input[type="email"],
.section-contacto .form-group input[type="tel"],
.section-contacto .form-group textarea { width: 100%; border: none; border-bottom: 1px solid var(--gris-oscuro); padding: 8px 0; background: transparent; font-size: 13px; }
.section-contacto .form-group textarea { resize: vertical; min-height: 80px; }
.section-contacto .form-group input:focus, .section-contacto .form-group textarea:focus { outline: none; border-bottom-color: #999; }
.section-contacto .form-group--checkbox { margin-top: 10px; margin-bottom: 24px; }
.section-contacto .checkbox-label { display: inline-flex; align-items: center; font-size: 12px; gap: 8px; }
.section-contacto .checkbox-label input[type="checkbox"] { width: 14px; height: 14px; }
.section-contacto .contact-form-submit { margin-top: 40px; display: block; width: 100%; padding: 12px 0; font-size: var(--font-size-ui); text-transform: uppercase; letter-spacing: var(--letter-ui); }

@media (max-width: 768px) {
  .section-contacto .contacto-inner { padding: 0 30px; }
}

/* ── BRAND LOGO ──────────────────────────────────────────────── */
.brand-logo img { display: block; margin: 0 auto 8px; height: 140px; }

/* ── OVERRIDES POR SECCIÓN ───────────────────────────────────── */
#elcortijo .section-general-body { max-width: 900px; margin: 0 auto; }
#jaimas.section-general          { padding-bottom: 24px; }
#carromato.section-general       { padding-top: 44px; }
