/*
Theme Name: Arakuku
Theme URI: https://arakuku.com.ar
Author: Arakuku
Description: Tema WordPress editable por bloques para cabañas y turismo experiencial
Version: 1.0
*/

:root {
  --color-primario: #28361C;
  --color-secundario: #d9c9a3;
  --color-texto: #28361C;

  --fuente-titulos: 'Playfair Display', serif;
  --fuente-texto: 'Lato', sans-serif;
}

/* ==========================
   PASO 1 · ESTILOS GENERALES
   ========================== */

/* Texto general */
html {
  overflow-x: hidden;
}

body {
  font-family: var(--fuente-texto);
  font-weight: 300;
  color: var(--color-texto);
  background-color: #fbf9f4;
}

/* Párrafos y listas */
.contenido p,
.contenido li,
.contenido ul,
.contenido ol {
  font-family: var(--fuente-texto);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.015em;
  max-width: 62ch;
}

/* Centra la caja de párrafos que tengan alineación centrada */
.contenido p.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

/* Títulos */
.contenido h1,
.contenido h2,
.contenido h3,
.contenido h4,
.contenido h5,
.contenido h6 {
  font-family: var(--fuente-titulos);
  color: #2b2b2b;
}

.contenido h1,
.contenido h2 {
  font-weight: 400;
  letter-spacing: -0.02em;
}

.contenido h3,
.contenido h4 {
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ==========================
   PASO 2 · HEADER Y FOOTER BASE
   ========================== */

.site-header, .site-footer {
  padding: 20px;
  background: #fbf9f4;
}

/* OVERRIDE FOOTER */
.site-footer {
  padding: 0 !important;
  background: var(--color-primario) !important;
  margin-top: 80px;
}

/* HEADER · STICKY Y REFINO DESKTOP */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.site-main {
  padding-top: 0;
}

/* respiración vertical */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 3px;
  padding-bottom: 3px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* El menú ocupa el espacio flexible */
.main-nav {
  margin-left: auto;
}

/* CONTROL DEFINITIVO LOGO HEADER *//* 
   FIX LOGO MOBILE
   El logo en mobile ahora es más pequeño
   para que no empuje el menú hamburguesa fuera
*/

/* ================================
   DESKTOP - Logo tamaño actual
   ================================ */

.site-logo img {
  max-height: 60px; /* Tu tamaño actual en desktop */
  width: auto;
  display: block;
}

/* ================================
   MOBILE - Logo PEQUEÑO
   ================================ */

@media (max-width: 768px) {
  .site-logo img {
    max-height: 40px; /* MÁS PEQUEÑO EN MOBILE */
    width: auto;
  }
}

/* ================================
   AJUSTE DEL HEADER EN MOBILE
   Para que todo quepa sin desbordarse
   ================================ */

@media (max-width: 768px) {
  .header-inner {
    padding: 10px 16px; /* Menos padding */
    gap: 12px; /* Menos espacio entre elementos */
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    font-size: 24px; /* Botón un poco más pequeño */
    padding: 8px;
    flex-shrink: 0; /* No se encoge */
  }

  .site-logo {
    flex-shrink: 0; /* El logo tampoco se encoge */
    flex-grow: 0; /* Ocupa solo lo que necesita */
  }

  .btn-reservar {
    display: none; /* Ocultar botón Reservar en mobile */
    margin-left: 0;
  }
}

/* ==========================
   PASO 3.1 · CONTENEDOR BASE
   ========================== */

.contenido {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-texto);
}

/* Full width real para bloques Gutenberg */
.contenido .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* ==========================
   PASO 3.2 · RITMO VERTICAL
   ========================== */

/* Espacio base entre bloques */
.contenido > * {
  margin-bottom: 60px;
}

/* Secciones importantes respiran más */
.contenido > .wp-block-group,
.contenido > .wp-block-columns {
  margin-bottom: 70px;
}

/* Hero o bloque full width separa bien del contenido */
.contenido > .alignfull {
  margin-bottom: 80px;
}

/* Evitar doble margen al final */
.contenido > *:last-child {
  margin-bottom: 0;
}

/* ==========================
   PASO 3.3 · TIPOGRAFÍA (TAMAÑOS)
   ========================== */

/* Párrafos y listas */
.contenido p,
.contenido ul,
.contenido ol {
  font-size: 1.2rem;
  line-height: 1.5;
}

/* H1 — Título principal */
.contenido h1 {
  font-size: 4.1rem;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--color-primario);
}

/* H2 — Secciones */
.contenido h2 {
  font-size: 3.1rem;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--color-primario);
}

/* H3 — Sub-secciones */
.contenido h3 {
  font-size: 2.4rem;
  line-height: 1.35;
  margin-bottom: 16px;
  color: var(--color-primario);
}

/* H4 — Detalles / cards */
.contenido h4 {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--color-primario);
}

/* ==========================
   PASO 3.4 · LINKS Y BOTONES
   ========================== */

/* ---------- LINKS ---------- */

.contenido a {
  color: var(--color-primario);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s ease;
}

/* Hover moderno: aparece el subrayado */
.contenido a:hover {
  color: var(--color-secundario);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- BOTONES ---------- */

/* Botón principal (Gutenberg) */
.contenido .wp-block-button__link:not(.btn) {
  background-color: transparent;
  color: var(--color-primario);
  font-weight: 300;
  padding: 0;
  text-decoration: none;
  text-underline-offset: 3px;
  display: inline-block;
}

/* Hover del botón */
.contenido .wp-block-button__link:hover {
  color: var(--color-secundario);
  text-decoration: none;
}

/* ==========================
   PASO 3.5 · LISTAS Y CARDS
   ========================== */

.contenido ul,
.contenido ol {
  padding-left: 20px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.contenido li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* viñetas más suaves */
.contenido ul {
  list-style-type: disc;
}

/* Cards */
.contenido .wp-block-group.is-style-card {
  background-color: #f8f8f8;
  padding: 32px;
  border-radius: 8px;
}

/* títulos dentro de cards */
.contenido .wp-block-group.is-style-card h3,
.contenido .wp-block-group.is-style-card h4 {
  margin-top: 0;
}

/* ==========================
   PASO 3.6 · DECORACIÓN BASE
   ========================== */

/* Bloques destacados (grupos) */
.contenido .wp-block-group {
  background-color: transparent;
}

/* Fondos suaves para secciones que lo necesiten */
.contenido .has-background {
  padding: 40px;
}

/* Separadores sutiles */
hr {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin: 48px 0;
}

/* ==========================
   CAPA VISUAL · SECCIONES
   ========================== */

.contenido .seccion-protagonista {
  margin-bottom: 85px;
  background-color: #f7f7f5;
  padding: 64px 56px;
  border-radius: 20px;
}

/* Ajuste cuando es full width */
.contenido .seccion-protagonista.alignfull {
  border-radius: 0;
}

.contenido .seccion-neutra {
  margin-bottom: 68px;
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.contenido .seccion-cta {
  margin-top: 96px;
  margin-bottom: 96px;
  text-align: center;
  background-color: var(--color-primario);
  color: #ffffff;
  padding: 72px 56px;
  border-radius: 24px;
}

.contenido .seccion-cta h2,
.contenido .seccion-cta p {
  color: #ffffff;
}

.contenido .seccion-cta .wp-block-button__link {
  background-color: #ffffff;
  color: var(--color-primario);
}

/* Ficha de cabaña como card */
.contenido .ficha-cabana {
  background-color: #ffffff;
  padding: 48px;
  border-radius: 16px;
}

/* Galería respira */
.contenido .ficha-cabana .wp-block-gallery {
  margin-bottom: 32px;
}

/* ==========================
   HERO · HOME Y BANNER
   ========================== */

.contenido .hero {
  background: none;
  padding: 0;
  border-radius: 0;
}

.contenido header.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* overlay universal */
.wp-block-cover.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38); /* intensidad */
  z-index: 1;
}

.contenido header.hero .wp-block-cover__background {
  background-color: rgba(0,0,0,0.35);
}

/* Asegura que el contenido quede encima */
.wp-block-cover.hero .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
}

/* título hero */
.contenido header.hero h1,
.contenido header.hero h2 {
  font-size: 3rem;
  line-height: 1.1;
  max-width: 16ch;
  margin-bottom: 16px;
}

/* texto hero */
.contenido header.hero p {
  font-size: 1.1rem;
  max-width: 38ch;
  margin-bottom: 24px;
}

/* botón hero */
.contenido header.hero .wp-block-button__link {
  padding: 14px 32px;
  font-size: 0.95rem;
}

/* ==========================
   CARDS HOME · ESTILO BASE
   ========================== */

.wp-block-columns {
  gap: 0;
}

.contenido .card-home{
  height: 100%;
  display: flex;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-home .wp-block-cover__inner-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 24px;
  padding-top: 0px;
}

/* Título */
.contenido .card-home h3 {
  margin-bottom: 4px;
  margin-left: 15px;
  color: #fff;
  font-size: clamp(32px, 2.7vw, 56px);
  line-height: 0.9;
}

/* Texto */
body .contenido .card-home p { /* Aumentada especificidad para evitar !important */
  flex-grow: 1;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
  margin-left: 15px;
  margin-right: 25px;
}

/* Hover sutil */
.contenido .card-home:hover,
.contenido .card-home2:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Botón dentro de card home */
.contenido .card-home .wp-block-button__link {
  margin-top: 5px;
  margin-bottom: 10px;
  align-self: flex-start;
  color: #fff;
  margin-left: 15px;
}

/* ===== CARD HOME 2 ===== */
.contenido .card-home2 h3 {
  margin-top: 90%;
  margin-bottom: 4px;
  color: #fff;
  font-size: 4rem;
  line-height: 0.9;
}

.contenido .card-home2 p {
  flex-grow: 1;
  font-size: 1rem;
}

.contenido .card-home2 .wp-block-button__link {
  margin-top: 5px;
  margin-bottom: 10px; /* Corregido xp a px */
  align-self: flex-start;
  color: #fff;
}

/* ==========================
   TÓPICOS DE DECISIÓN
   ========================== */

.contenido .topicos-decision {
  background-color: #f7f7f5;
  padding: 48px 40px;
  border-radius: 20px;
  text-align: center;
}

.contenido .topicos-decision img {
  width: 40px;
  height: auto;
  margin-bottom: 16px;
}

.contenido .topicos-decision h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.contenido .topicos-decision p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

/* ==========================
   EXPERIENCIA / ACTIVIDAD
   ========================== */

.contenido .experiencia-actividad {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contenido .experiencia-actividad img {
  border-radius: 12px;
  margin-bottom: 24px;
}

.contenido .experiencia-actividad h3 {
  margin-top: 0;
  margin-bottom: 16px;
}

.contenido .experiencia-actividad p {
  flex-grow: 1;
}

.contenido .experiencia-actividad .wp-block-button__link {
  margin-top: 24px;
  align-self: flex-start;
}

/* ==========================
   CAJITA VERDE INICIO
   ========================== */

.box-verde {
  background-color: #2f5c4fd6; /* Corregido sintaxis inválida */
  padding: 60px 40px;
  max-width: 600px;
  margin: 0 auto;
  color: white;
}

/* ==========================
   HEADER NAVEGACIÓN
   ========================== */

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-family: var(--fuente-texto);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-texto);
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--color-secundario);
}

.main-nav .current-menu-item > a {
  color: var(--color-primario);
  border-bottom: 2px solid var(--color-primario);
  padding-bottom: 4px;
}

/* ==========================
   SISTEMA DE BOTONES
   ========================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fuente-texto);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--link {
  color: var(--color-primario);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px;
}

.btn--link:hover {
  opacity: 0.65;
}

.btn--arrow span:last-child {
  transition: transform 0.3s ease;
}

.btn--arrow:hover span:last-child {
  transform: translateX(4px);
}

.btn--solid {
  background: var(--color-primario);
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
}

.btn--solid:hover {
  opacity: 0.85;
}

.btn--light {
  color: white;
  border-bottom: 1px solid rgba(0,0,0,0.4);
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.btn-reservar {
  background-color: var(--color-primario);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 20px;
  text-decoration: none;
  font-family: var(--fuente-texto);
  text-transform: uppercase;
  font-weight: 400;
  margin-left: 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-reservar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* ==========================
   RESPONSIVE Y MENÚ MOBILE
   ========================== */

/* Botón hamburguesa (oculto en desktop) */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-texto);
}

@media (max-width: 768px) {
  /* Contenedor general */
  .contenido {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Secciones grandes */
  .contenido .seccion-protagonista,
  .contenido .seccion-cta {
    padding: 40px 24px;
    margin-bottom: 64px;
  }

  /* Cards */
  .contenido .ficha-cabana,
  .contenido .experiencia-actividad {
    padding: 28px;
    border-radius: 14px;
  }

  /* Eliminamos padding, radius y margin para unificar las cards en mobile y evitar separación */
  .contenido .card-home,
  .contenido .card-home2 {
    padding: 0 !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
  }

  /* En Gutenberg, las columnas tienen un margin o gap inferior en mobile. Lo quitamos. */
  .wp-block-column.card-home,
  .wp-block-column.card-home2 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

.contenido .card-home h3 {
    font-size: clamp(22px, 6vw, 32px) !important;
    line-height: 1 !important;
    margin-bottom: 6px !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
  }

  body .contenido .card-home p {
    font-size: clamp(13px, 3.5vw, 15px) !important;
    line-height: 1.45 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 10px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .contenido .card-home .wp-block-button__link {
    margin-left: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-size: 12px !important;
  }

  /* ========================================================
     CAMBIO DE IMAGEN EN MOBILE (IMAGEN APAISADA)
     ========================================================
     1. En Gutenberg, selecciona el bloque Cover de esta card.
     2. En Ajustes > Avanzado, añádele la clase:  imagen-mobile-1
     3. Reemplaza la URL a continuación con la ruta de tu imagen.
     ======================================================== */
  .card-home.imagen-mobile-1 .wp-block-cover__image-background {
    display: none !important; /* Oculta la imagen original de desktop */
  }
  .card-home.imagen-mobile-1 .wp-block-cover {
    background-image: url(https://arakuku.com.ar/demian-web/wp-content/uploads/2026/05/Cabanasmobi-1.jpg) !important;
    background-size: cover;
    background-position: center;
  }
  .card-home.imagen-mobile-2 .wp-block-cover__image-background {
    display: none !important; /* Oculta la imagen original de desktop */
  }
  .card-home.imagen-mobile-2 .wp-block-cover {
    background-image: url(https://arakuku.com.ar/demian-web/wp-content/uploads/2026/05/clubhousemobi-1.jpg) !important;
    background-size: cover;
    background-position: center;
  }
	  .card-home.imagen-mobile-3 .wp-block-cover__image-background {
    display: none !important; /* Oculta la imagen original de desktop */
  }
  .card-home.imagen-mobile-3 .wp-block-cover {
    background-image: url(https://arakuku.com.ar/demian-web/wp-content/uploads/2026/05/exploramobi-1.jpg) !important;
    background-size: cover;
    background-position: center;
  }
/* Cards mobile con altura suficiente para título, texto y CTA */
  .card-home .wp-block-cover {
    min-height: 52vh !important;
    height: 52vh !important;
  }

  .card-home .wp-block-cover__inner-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    height: 100% !important;
    padding: 0 20px 24px 20px !important;
    padding-top: 0 !important;
    box-sizing: border-box !important;
  }	

  /* Tópicos */
  .contenido .topicos-decision {
    padding: 28px 20px;
  }

  /* Galerías */
  .contenido .wp-block-gallery {
    margin-bottom: 24px;
  }

  /* Tipografía */
  .contenido h1 {
    font-size: 2rem;
    line-height: 1.25;
  }
  .contenido h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .contenido h3 {
    font-size: 1.3rem;
  }
  .contenido p {
    font-size: 1rem;
  }
  .contenido header.hero h1,
  .contenido header.hero h2 {
    font-size: 2.2rem;
  }

  /* Botones */
  .contenido .wp-block-button__link {
    padding: 14px 22px;
  }

  /* Mostrar hamburguesa */
  .menu-toggle {
    display: block;
  }

  /* Menú horizontal a vertical */
.main-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 999;
  flex-direction: column;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.main-nav ul {
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.main-nav li {
  border-top: 1px solid rgba(0,0,0,0.06);
  width: 100%;
}

.main-nav a {
  padding: 16px 24px;
  display: block;
}

.main-nav.is-open {
  display: flex !important;
}
/* Contenedor principal del slider */
.elegant-slider-wrapper {
    position: relative;
    width: 100%;
    height: 600px; /* Puedes ajustar la altura según tus necesidades */
    border-radius: 0; /* Bordes redondeados elegantes */
    overflow: hidden;
    box-shadow: 0 0px 0px rgba(0,0,0,0.15); /* Sombra suave para dar profundidad */
}
.elegant-slider {
    width: 100%;
    height: 100%;
    position: relative;
}
/* Estilos individuales de cada foto */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    /* Transición suave de opacidad y zoom ligero */
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.05); 
    z-index: 1;
}
.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* Oscurecimiento sutil en la parte inferior para resaltar los controles */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}
/* =========================================
   CONTROLES: Flechas y Puntos
   ========================================= */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 3;
    pointer-events: none;
}
.nav-btn {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px); /* Efecto vidrio (Glassmorphism) */
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}
.nav-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    transform: scale(1.1);
}
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 3;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    border: none;
}
.dot.active {
    background: white;
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
/* Responsivo */
@media (max-width: 800px) {
    .elegant-slider-wrapper {
        height: 400px;
    }
}
.ark-title--white h1,
.ark-title--white h2,
.ark-title--white h3 {
  color: #ffffff !important;
}
}
/* ==========================
   FOOTER
   ========================== */

.site-footer {
  background-color: var(--color-primario);
  color: #e8dfc8;
  padding: 0;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Columna marca */
.footer-logo {
  max-height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--fuente-texto);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(232, 223, 200, 0.65);
  margin: 0;
  max-width: 26ch;
}

/* Labels de sección */
.footer-label {
  display: block;
  font-family: var(--fuente-texto);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 223, 200, 0.45);
  margin-bottom: 18px;
}

/* Teléfono */
.footer-telefono {
  display: block;
  font-family: var(--fuente-titulos);
  font-size: 1.25rem;
  font-weight: 400;
  color: #e8dfc8;
  text-decoration: none;
  margin-bottom: 14px;
  transition: opacity 0.2s ease;
}

.footer-telefono:hover {
  opacity: 0.7;
}

/* WhatsApp */
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fuente-texto);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(232, 223, 200, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-wa:hover {
  color: #e8dfc8;
}

/* Navegación */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-family: var(--fuente-texto);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(232, 223, 200, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
}

.footer-nav a:hover {
  color: #e8dfc8;
}

/* Barra inferior */
.footer-bottom {
  border-top: 1px solid rgba(232, 223, 200, 0.12);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
}

.footer-bottom p {
  font-family: var(--fuente-texto);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(232, 223, 200, 0.35);
  margin: 0;
  letter-spacing: 0.04em;
}

/* Footer responsive */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 24px 36px;
  }

  .footer-bottom {
    padding: 18px 24px;
  }

  .footer-logo {
    max-height: 30px;
  }

  .footer-telefono {
    font-size: 1.1rem;
  }
}
/* ====================================
   BOTÓN RESERVAR - DESKTOP Y MOBILE
   ==================================== */

/* DESKTOP - Botón visible a la derecha del header */
.btn-reservar {
  background-color: var(--color-primario);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 20px;
  text-decoration: none;
  font-family: var(--fuente-texto);
  text-transform: uppercase;
  font-weight: 400;
  margin-left: 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.btn-reservar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* MOBILE - Botón oculto en desktop */
.btn-reservar-mobile {
  display: none;
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
  /* Desktop: ocultar botón de desktop */
  .btn-reservar {
    display: none;
  }

  /* Mobile: mostrar botón dentro del menú */
  .btn-reservar-mobile {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: var(--color-primario);
    color: white !important;
    text-align: left;
    text-decoration: none;
    font-weight: 400;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: var(--fuente-texto);
  }

  .btn-reservar-mobile:hover {
    text-decoration: underline;
    text-decoration-color: var(--color-secundario);
    color: var(--color-secundario);
  }
}