@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Variables de Diseño (Design System) */
:root {
    /* Colores HSL - Inspirados en la Selva Alta de Jaén */
    --color-primary-hsl: 152, 60%, 11%;     /* #0b2e1c - Verde Bosque Oscuro */
    --color-secondary-hsl: 151, 56%, 20%;   /* #164e32 - Verde Follaje */
    --color-accent-hsl: 23, 89%, 54%;       /* #f26422 - Naranja Heliconia / Gallito de las Rocas */
    --color-accent-light-hsl: 43, 100%, 50%; /* #ffb703 - Oro Tropical / Flor de Café */
    --color-bg-light-hsl: 135, 20%, 96%;    /* #f3f7f4 - Blanco Hueso Selvático (tinte verde sutil) */
    --color-bg-card-hsl: 0, 0%, 100%;       /* #ffffff - Blanco */
    --color-text-dark-hsl: 152, 40%, 12%;   /* #122119 - Texto Principal Verde Muy Oscuro */
    --color-text-light-hsl: 151, 20%, 42%;  /* #567c69 - Texto Secundario Verde Suave */
    --color-border-hsl: 150, 24%, 90%;      /* #e1ebe6 - Bordes */
    --color-cacao-hsl: 24, 45%, 22%;        /* #51301f - Cacao Selvático / Chocolate Profundo */

    /* Colores directos */
    --color-primary: hsl(var(--color-primary-hsl));
    --color-secondary: hsl(var(--color-secondary-hsl));
    --color-accent: hsl(var(--color-accent-hsl));
    --color-accent-light: hsl(var(--color-accent-light-hsl));
    --color-cacao: hsl(var(--color-cacao-hsl));
    --color-bg-light: hsl(var(--color-bg-light-hsl));
    --color-bg-card: hsl(var(--color-bg-card-hsl));
    --color-text-dark: hsl(var(--color-text-dark-hsl));
    --color-text-light: hsl(var(--color-text-light-hsl));
    --color-border: hsl(var(--color-border-hsl));

    /* Degradados Premium */
    --gradient-luxury: linear-gradient(135deg, hsl(23, 89%, 54%) 0%, hsl(43, 100%, 50%) 100%);
    --gradient-cacao: linear-gradient(135deg, hsl(24, 45%, 22%) 0%, hsl(23, 89%, 54%) 100%);
    --gradient-dark: linear-gradient(135deg, hsl(152, 60%, 11%) 0%, hsl(151, 56%, 20%) 100%);
    --gradient-dark-overlay: linear-gradient(to bottom, rgba(11, 46, 28, 0.45) 0%, rgba(11, 46, 28, 0.9) 100%);
    --gradient-light-overlay: linear-gradient(to bottom, rgba(243, 247, 244, 0) 0%, rgba(243, 247, 244, 1) 100%);

    /* Fuentes */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Estructuras */
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Transiciones */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;

    /* Sombras */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(11, 46, 28, 0.08), 0 4px 6px -2px rgba(11, 46, 28, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(11, 46, 28, 0.12), 0 10px 10px -5px rgba(11, 46, 28, 0.06);
    --shadow-glow: 0 10px 30px -10px rgba(242, 100, 34, 0.4);
}

/* Reset de Estilos */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Tipografía y Elementos de Texto */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-primary);
}

h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.25rem; font-weight: 700; position: relative; }
h3 { font-size: 1.5rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--color-text-light); }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }

/* Contenedores */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section:not(.section-dark):not(#featured-rooms):not(#welcome-intro) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 100 100' fill='none' stroke='%23164e32' stroke-opacity='0.018' stroke-width='0.75'%3E%3Cpath d='M30 20 C35 25, 38 35, 35 45 C32 55, 20 60, 15 58 C22 55, 25 45, 25 35 Z' /%3E%3Cpath d='M35 45 C40 48, 45 52, 50 58 C42 56, 38 52, 35 45 Z' /%3E%3Cpath d='M15 58 L35 45' /%3E%3Cpath d='M70 60 C75 65, 78 75, 75 85 C72 95, 60 100, 55 98 C62 95, 65 85, 65 75 Z' /%3E%3Cpath d='M75 85 C80 88, 85 92, 90 98 C82 96, 78 92, 75 85 Z' /%3E%3Cpath d='M55 98 L75 85' /%3E%3C/svg%3E");
}

.section-dark {
    background: var(--gradient-dark);
    color: white;
}

.section-dark h2, .section-dark h3, .section-dark p {
    color: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-transform: capitalize;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-luxury);
    margin: 0.75rem auto 0 auto;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
}

/* Botones Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-luxury);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-outline-gold:hover {
    background-color: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}

.btn-cacao {
    background: var(--gradient-cacao);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-cacao:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(81, 48, 31, 0.4);
}

.btn-outline-cacao {
    background-color: transparent;
    color: var(--color-cacao);
    border: 2px solid var(--color-cacao);
}

.btn-outline-cacao:hover {
    background-color: var(--color-cacao);
    color: white;
    transform: translateY(-2px);
}

.btn-light {
    background-color: white;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background-color: var(--color-bg-light);
    transform: translateY(-2px);
}

/* Clases de Utilidad de Cacao */
.bg-cacao {
    background-color: var(--color-cacao) !important;
}

.text-cacao {
    color: var(--color-cacao) !important;
}

.border-cacao {
    border-color: var(--color-cacao) !important;
}

/* Navegación y Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: transparent;
    transition: var(--transition-smooth);
    padding: 1.25rem 0;
}

.navbar.scrolled {
    position: fixed;
    background-color: rgba(11, 46, 28, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 0.6rem 1.25rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.navbar-brand:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.navbar-brand img {
    height: 85px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.navbar.scrolled .navbar-brand {
    padding: 0.4rem 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-brand img {
    height: 60px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.25rem;
}

.navbar-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 0.25rem 0;
}

.navbar-link:hover, .navbar-link.active {
    color: var(--color-accent-light);
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-luxury);
    transition: var(--transition-fast);
}

.navbar-link:hover::after, .navbar-link.active::after {
    width: 100%;
}

.navbar.scrolled .navbar-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Selector de Idioma Premium */
.lang-selector {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 0.5rem;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 0.35rem 0.6rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0.1rem 0.4rem;
    border-radius: 12px;
    transition: var(--transition-fast);
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
}

.lang-btn:hover {
    color: var(--color-accent-light);
}

.lang-btn.active {
    color: #ffffff;
    background-color: var(--color-accent);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.25);
    user-select: none;
}

.navbar.scrolled .lang-selector {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}


/* Menú hamburguesa para móvil */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.navbar-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    transition: var(--transition-fast);
}

/* Slider de Portada (Hero Section) */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-primary);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 7.5s ease-out;
}

.slide.active .slide-bg {
    transform: scale(1.08); /* Efecto Ken Burns */
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark-overlay);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.3s;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: white;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.8s ease 0.5s;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 700px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.7s;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.8s ease 0.9s;
}

/* Disparar animaciones de texto del slide activo */
.slide.active .hero-subtitle,
.slide.active .hero-title,
.slide.active .hero-desc,
.slide.active .hero-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Controles del Slider */
.slider-control {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.75rem;
    z-index: 5;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background-color: var(--color-accent-light);
    transform: scale(1.2);
}

/* Quick Booking Bar */
.booking-bar {
    position: relative;
    z-index: 10;
    margin-top: -4rem; /* Flota sobre el slider */
    margin-bottom: 3rem;
}

.booking-bar-wrapper {
    background: rgba(11, 46, 28, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.8fr 1.2fr auto;
    gap: 1.25rem;
    align-items: flex-end;
}

.booking-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-group label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.booking-input-wrapper {
    position: relative;
}

.booking-input-wrapper select,
.booking-input-wrapper input {
    width: 100%;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-sm);
    padding: 0 1rem;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.booking-input-wrapper select option {
    background-color: var(--color-primary);
    color: white;
}

.booking-input-wrapper select:focus,
.booking-input-wrapper input:focus {
    border-color: var(--color-accent-light);
    background: rgba(255, 255, 255, 0.12);
}

.booking-form-grid #btn-quick-book {
    height: 48px;
    margin-bottom: 0;
    padding: 0 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

/* Tarjetas de Habitación */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.room-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.room-card-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .room-card-img img {
    transform: scale(1.06);
}

.room-card-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--gradient-luxury);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.room-card-price {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background-color: rgba(11, 46, 28, 0.88);
    backdrop-filter: blur(4px);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.4rem 0.9rem;
    border-radius: var(--border-radius-sm);
}

.room-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-card-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    color: var(--color-primary) !important;
}

.room-card-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    color: var(--color-text-light) !important;
}

/* Modificadores para tarjetas con fondo oscuro (ej. Doble Ejecutiva) */
.room-card[style*="background-color"] .room-card-content h3 {
    color: white !important;
}

.room-card[style*="background-color"] .room-card-content p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.room-card[style*="background-color"] .room-amenity {
    color: rgba(255, 255, 255, 0.8) !important;
}

.room-card[style*="background-color"] .room-amenity i {
    color: var(--color-accent-light) !important;
}

.room-amenities {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    margin-bottom: 1.75rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
}

.room-amenity {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.room-amenity i {
    color: var(--color-accent);
    font-size: 1rem;
}

.room-card-actions {
    display: flex;
    gap: 1rem;
}

.room-card-actions .btn {
    flex: 1;
}

/* Feature/About Split sections */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-img-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}

.split-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-features {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.split-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
}

.split-feature-item i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(242, 100, 34, 0.15);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

/* Servicios Grid / Tabs */
.services-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.service-tab-btn {
    padding: 0.6rem 1.25rem;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.service-tab-btn.active, .service-tab-btn:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(242, 100, 34, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(242, 100, 34, 0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.service-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Modulo de Reservas (Wizard) */
.booking-wizard-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.booking-wizard-steps {
    display: flex;
    background-color: var(--color-primary);
    color: white;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: var(--transition-fast);
    position: relative;
}

.wizard-step.active {
    opacity: 1;
}

.wizard-step.completed {
    opacity: 0.85;
}

.wizard-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid transparent;
}

.wizard-step.active .wizard-step-num {
    background-color: var(--color-accent);
    border-color: white;
}

.wizard-step.completed .wizard-step-num {
    background-color: #10b981; /* Verde éxito */
    color: white;
}

.wizard-step-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wizard-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 16px;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.wizard-step.completed:not(:last-child)::after {
    background-color: #10b981;
}

.booking-wizard-content {
    padding: 3rem;
}

.wizard-panel {
    display: none;
}

.wizard-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.wizard-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    background-color: var(--color-bg-light);
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--color-accent);
    background-color: white;
}

/* Selección visual de Habitaciones en Wizard */
.wizard-rooms-select {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.room-select-card {
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    background-color: var(--color-bg-card);
}

.room-select-card:hover {
    border-color: rgba(242, 100, 34, 0.4);
}

.room-select-card.selected {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

.room-select-card-img {
    height: 140px;
    overflow: hidden;
}

.room-select-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-select-card-info {
    padding: 1rem;
}

.room-select-card-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.room-select-card-info .price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent);
}

/* Add-ons list */
.addons-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.addon-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 1.25rem;
    cursor: pointer;
    background-color: var(--color-bg-card);
    transition: var(--transition-fast);
}

.addon-card:hover {
    border-color: var(--color-accent);
}

.addon-card input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-accent);
    cursor: pointer;
}

.addon-card-text h4 {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.addon-card-text p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* Booking Summary Card */
.summary-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
}

.summary-ticket {
    background-color: var(--color-bg-light);
    border: 2px dashed var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
}

.ticket-header {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.ticket-header h4 {
    font-size: 1.25rem;
    color: var(--color-accent);
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.ticket-row-bold {
    font-weight: 700;
    color: var(--color-primary);
}

.ticket-total {
    border-top: 2px solid var(--color-primary);
    padding-top: 1.25rem;
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
}

.wizard-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}

/* Sección de Contacto */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 4rem;
}

.contact-info-card {
    background: var(--gradient-dark);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-card h3 {
    color: white;
    font-size: 1.75rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.contact-detail-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.contact-socials {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.contact-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-fast);
}

.contact-social-btn:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    margin-top: 4rem;
}

/* Pie de Página (Footer) */
.footer {
    background-color: #0b0f19;
    color: rgba(255, 255, 255, 0.65);
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col-about img {
    height: 80px;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    filter: brightness(0) invert(1);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a:hover {
    color: var(--color-accent-light);
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-list li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact-list li i {
    color: var(--color-accent-light);
    margin-top: 0.25rem;
}

.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    color: white;
    border-radius: var(--border-radius-sm);
    outline: none;
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    border-color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* Floating Action Widgets (WhatsApp, Booking, Airbnb) */
.floating-action-group {
    position: fixed;
    bottom: 5.5rem; /* Subido para no tapar los controles del slider */
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 99;
}

.floating-btn {
    width: 60px;
    height: 60px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
    text-decoration: none;
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    color: white;
}

.whatsapp-float {
    background-color: #25d366;
}

.booking-float {
    background-color: #003580;
    font-size: 1.6rem;
}

.airbnb-float {
    background-color: #FF5A5F;
}

/* Redes Sociales Flotantes (Izquierda) */
.floating-social-group {
    position: fixed;
    bottom: 5.5rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 99;
}

.social-btn {
    width: 46px;
    height: 46px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    text-decoration: none;
    cursor: pointer;
}

.social-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-btn {
    background-color: #1877F2;
}

.instagram-btn {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.tiktok-btn {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Redes Sociales del Footer */
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.footer-socials a:hover {
    background-color: var(--color-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Ajustes Responsivos para Widgets Flotantes */
@media (max-width: 768px) {
    .floating-action-group {
        bottom: 5rem;
        right: 1.25rem;
        gap: 0.6rem;
    }
    .floating-btn {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    .booking-float {
        font-size: 1.3rem;
    }
    .floating-social-group {
        bottom: 5rem;
        left: 1.25rem;
        gap: 0.6rem;
    }
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Testimonios Slider / Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-md);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    position: relative;
}

.testimonial-quote {
    font-size: 1.5rem;
    color: rgba(242, 100, 34, 0.15);
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
}

.testimonial-meta h4 {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.testimonial-meta span {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.stars {
    color: #f59e0b;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Media Queries (Responsive) */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    .split-grid { gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .navbar-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-primary);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-lg);
    }
    
    .navbar-nav.active {
        right: 0;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-actions {
        display: flex;
        gap: 0.5rem;
    }
    
    .navbar-actions .btn {
        display: none;
    }
    
    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title { font-size: 2.75rem; }
    .section { padding: 4rem 0; }
    .split-grid { grid-template-columns: 1fr; }
    .split-img-wrapper { height: 300px; }
    
    .booking-bar { margin-top: -2rem; }
    .booking-form-grid { grid-template-columns: 1fr; }
    
    .wizard-rooms-select { grid-template-columns: 1fr; }
    .addons-list { grid-template-columns: 1fr; }
    .summary-container { grid-template-columns: 1fr; }
    
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Ajustes del logo responsivo */
    .navbar-brand {
        padding: 0.4rem 0.9rem;
    }
    .navbar-brand img {
        height: 65px;
    }
    .navbar.scrolled .navbar-brand {
        padding: 0.3rem 0.8rem;
    }
    .navbar.scrolled .navbar-brand img {
        height: 50px;
    }
}
