:root {
    /* Colors - Nature inspired & Elegant */
    --clr-white: #FEFDF9;
    --clr-beige-light: #F8F5F2;
    --clr-beige-warm: #EAE3DB;
    --clr-green-soft: #9BA68C;
    --clr-green-dark: #2F3B2E;
    --clr-text-main: #2C362A;
    --clr-text-light: #5A6A58;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography styles */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--clr-green-dark);
}

h1 {
    font-size: clamp(2.8rem, 8vw, 4.8rem);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    margin-bottom: var(--space-md);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

p {
    margin-bottom: var(--space-md);
    text-align: left;
}

.subtitle {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-green-soft);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.text-center { text-align: center !important; }
.text-center p { text-align: center !important; }
.max-w-m { max-width: 600px; }
.mx-auto { margin-inline: auto; }
.mb-4 { margin-bottom: var(--space-lg); }
.mt-2 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-xl); }
.mt-6 { margin-top: 4rem; }
.mb-4 { margin-bottom: var(--space-xl); }

.flex-center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    list-style: none;
    padding: 0;
}

.pt-4 { padding-top: var(--space-lg); }

.border-top { border-top: 1px solid var(--clr-beige-dark); }

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .flex-center {
        gap: var(--space-md);
    }
}

/* Buttons & Links */
a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1.1rem 2.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.btn-primary {
    background-color: var(--clr-green-dark);
    color: var(--clr-white);
    box-shadow: 0 6px 20px rgba(47, 59, 46, 0.15);
}

.btn-primary:hover {
    background-color: var(--clr-green-soft);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(47, 59, 46, 0.25);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1EBE5D 0%, #0F796D 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}


.link-btn {
    font-family: var(--font-heading);
    color: var(--clr-green-soft);
    font-style: italic;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.link-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.link-btn:hover::after {
    width: 100%;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.padding-section {
    padding: var(--space-xxl) 0;
}

#el-hostal {
    padding-top: var(--space-lg);
}

.bg-secondary {
    background-color: var(--clr-beige-light);
}

/* Header */
header#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem 0;
}

header#header.scrolled,
body:not(.home-page) header#header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--clr-white);
    transition: color 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: -0.01em;
}

header#header.scrolled .logo,
body:not(.home-page) header#header .logo {
    color: var(--clr-green-dark);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--clr-white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

header#header.scrolled .nav-links a,
body:not(.home-page) header#header .nav-links a {
    color: var(--clr-text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Navigation & Submenus */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--clr-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 999;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 4rem 1.5rem 2rem 1.5rem;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--clr-green-dark);
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--clr-green-soft);
}

/* Mobile Submenu Acordeón */
.mobile-dropdown {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-dropdown-trigger {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--clr-green-dark);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    user-select: none;
    transition: color 0.3s ease;
    width: 100%;
}

.mobile-dropdown-trigger svg {
    transition: transform 0.4s ease;
    width: 22px;
    height: 22px;
    stroke: var(--clr-green-soft);
    stroke-width: 2.5;
}

.mobile-dropdown.open .mobile-dropdown-trigger svg {
    transform: rotate(180deg);
    stroke: var(--clr-green-dark);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin 0.3s ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    margin-top: 0;
    background-color: var(--clr-beige-light);
    border-radius: 16px;
    padding: 0 1rem;
}

.mobile-dropdown.open .mobile-dropdown-content {
    max-height: 300px;
    opacity: 1;
    margin-top: 0.8rem;
    padding: 1.2rem 1rem;
    border: 1px solid rgba(155, 166, 140, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.mobile-dropdown-content a {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--clr-text-main);
    padding: 0.3rem 0;
    width: 100%;
}

.mobile-dropdown-content a:hover {
    color: var(--clr-green-soft);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 20px;
    position: relative;
}

@media (max-width: 992px) {
    .mobile-menu-btn { display: flex; }
    .nav-links { display: none; }
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--clr-white);
    position: absolute;
    transition: all 0.3s ease;
}

header#header.scrolled .mobile-menu-btn span {
    background-color: var(--clr-green-dark);
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 9px; }
.mobile-menu-btn span:nth-child(3) { top: 18px; }

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg); top: 9px; background-color: var(--clr-green-dark); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg); top: 9px; background-color: var(--clr-green-dark); }

/* Dropdown Styles - Premium Look */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    cursor: pointer;
    display: inline-block;
}

/* Bridge */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    display: none;
}

.dropdown:hover::after {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(245,245,240,0.98) 100%);
    backdrop-filter: blur(20px);
    min-width: 210px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 15px;
    padding: 1rem 0;
    margin-top: 12px;
    border: 1px solid rgba(144, 156, 112, 0.2);
    animation: dropdownSlide 0.3s ease-out;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-content a {
    color: var(--clr-text-main) !important;
    padding: 10px 25px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-family: var(--font-main);
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-content a:hover {
    background-color: rgba(144, 156, 112, 0.08);
    color: var(--clr-green-dark) !important;
    padding-left: 30px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Secondary Pages Margin */
.secondary-page-main {
    margin-top: 0 !important;
    padding-top: var(--space-xl) !important;
}

/* Carousel & Space Details */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
    animation: fadeEffect 0.8s;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(5px);
    color: var(--clr-green-dark);
    padding: 1.2rem;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: white;
    color: var(--clr-green-soft);
}

.carousel-btn.prev { left: 20px; border-radius: 50%; }
.carousel-btn.next { right: 20px; border-radius: 50%; }

@keyframes fadeEffect {
    from { opacity: 0; }
    to { opacity: 1; }
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.detail-item {
    background: var(--clr-white);
    padding: 2.2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(47, 59, 46, 0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease, border-color 0.4s ease;
}

.detail-item:hover {
    transform: translateY(-4px);
    background-color: #D8E4D0;
    box-shadow: 0 18px 40px rgba(47, 59, 46, 0.08);
    border-color: rgba(155, 166, 140, 0.5);
}

.detail-item h4 {
    color: var(--clr-green-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
}

.detail-item h4 .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(155, 166, 140, 0.15);
    color: var(--clr-green-dark);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .carousel-container {
        height: 350px;
    }
    .details-grid {
        gap: 1.5rem;
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .padding-section {
        padding: var(--space-xl) 0;
    }
    
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--clr-white);
    transition: all 0.3s;
}

header#header.scrolled .mobile-menu-btn span,
.mobile-menu-btn.active span {
    background-color: var(--clr-green-dark);
}

.mobile-menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--clr-beige-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 999;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--clr-green-dark);
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--clr-white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(44, 54, 42, 0.8) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--space-md);
    max-width: 800px;
}

.hero-content p {
    text-align: center !important;
}

.hero-content h1 {
    color: var(--clr-white);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
}

/* Summary Section */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.summary-card h3 {
    color: var(--clr-green-soft);
    margin-bottom: 1rem;
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.split-layout.reverse .split-text {
    order: 2;
}
.split-layout.reverse .split-image {
    order: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    object-fit: cover;
    aspect-ratio: 4/5;
}

#nuestra-historia .split-image img {
    aspect-ratio: auto;
    object-fit: contain;
}

/* Amenities List */
.amenities-list {
    list-style: none;
    margin-top: 1.5rem;
}

.amenities-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--clr-text-light);
    font-weight: 500;
}

.amenities-list .icon {
    font-style: normal;
    color: var(--clr-green-soft);
    font-weight: bold;
}

/* Menu / Gastronomía & Restaurante Redesign */
.gastronomia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.gastro-card {
    background: var(--clr-white);
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(47, 59, 46, 0.08);
    box-shadow: 0 4px 15px rgba(47, 59, 46, 0.04);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.gastro-card:hover {
    transform: translateY(-4px);
    border-color: rgba(155, 166, 140, 0.5);
    box-shadow: 0 10px 25px rgba(47, 59, 46, 0.08);
    background-color: #F6FAF4;
}

.gastro-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.gastro-card-header h4 {
    font-size: 1.05rem;
    margin-bottom: 0;
    color: var(--clr-green-dark);
}

.gastro-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(155, 166, 140, 0.18);
    color: var(--clr-green-dark);
    flex-shrink: 0;
}

.gastro-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--clr-text-light);
    margin-bottom: 0;
}

/* Restaurante Info Box */
.restaurante-info-box {
    background: var(--clr-beige-light);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(47, 59, 46, 0.08);
}

.restaurante-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--clr-text-main);
}

.restaurante-info-item svg {
    color: var(--clr-green-soft);
    flex-shrink: 0;
}

.phone-link {
    color: var(--clr-green-dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--clr-green-soft);
    text-decoration: underline;
}

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

.btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
}

/* Activities */
.activities {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.activity h4 {
    margin-bottom: 0.5rem;
}

/* Zona Turística Cards */
.zona-turistica .intro {
    margin-bottom: var(--space-xl);
}

.zona-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-green-dark);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-lg);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--clr-beige-dark);
}

#nuestros-espacios {
    scroll-margin-top: 100px;
}

.zona-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.zona-card-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.zona-card {
    background: var(--clr-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(47, 59, 46, 0.05);
    border: 1px solid rgba(47, 59, 46, 0.07);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.zona-card-link:hover .zona-card,
.zona-card:hover {
    transform: translateY(-8px) scale(1.025);
    background-color: #D8E4D0;
    box-shadow: 0 20px 45px rgba(47, 59, 46, 0.14);
    border-color: rgba(155, 166, 140, 0.5);
}

.zona-card-img {
    height: 190px;
    overflow: hidden;
}

.zona-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.zona-card-img img.img-top {
    object-position: top;
}

.zona-card-link:hover .zona-card-img img,
.zona-card:hover .zona-card-img img {
    transform: scale(1.07);
}

.zona-card-body {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.zona-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--clr-green-dark);
}

.zona-card p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.zona-card .link-btn {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Contacto */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    background: var(--clr-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.contacto-info {
    padding: var(--space-lg);
    background-color: var(--clr-beige-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contacto-mapa {
    min-height: 400px;
    height: 100%;
}

/* Footer */
/* Footer */
.footer {
    background-color: var(--clr-green-dark);
    color: var(--clr-white);
    padding: var(--space-xxl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.footer-col h4 {
    color: var(--clr-white);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.footer-logo {
    color: var(--clr-white);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.brand-col p {
    color: rgba(254, 253, 249, 0.7);
    max-width: 350px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: rgba(254, 253, 249, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--clr-white);
    transform: translateX(5px);
}

.footer-social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(254, 253, 249, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-social-links a:hover {
    color: var(--clr-white);
}

.footer-contact-info p {
    color: rgba(254, 253, 249, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    text-align: left !important;
}

/* Subvención LEADER Footer Block */
.footer-subvencion {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.subvencion-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    max-width: 950px;
    margin: 0 auto;
}

.subvencion-logos {
    background-color: #FFFFFF;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.subvencion-logos img {
    max-width: 100%;
    height: auto;
    max-height: 75px;
    display: block;
    object-fit: contain;
}

.subvencion-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(254, 253, 249, 0.85);
    margin-bottom: 0;
    max-width: 900px;
    text-align: center !important;
}

.subvencion-text strong {
    color: var(--clr-white);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-md) 0;
}

.footer-bottom p {
    text-align: center !important;
    font-size: 0.85rem;
    color: rgba(254, 253, 249, 0.5);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .brand-col p, .footer-contact-info p {
        margin-inline: auto;
        text-align: center !important;
    }
    
    .footer-social-links a {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .brand-col p, .footer-contact-info p {
        margin-inline: auto;
        text-align: center !important;
    }
    
    .footer-social-links a {
        justify-content: center;
    }
}

/* Aesthetic Floating WhatsApp Widget */
.floating-whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

.floating-whatsapp-badge {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--clr-green-dark);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(37, 211, 102, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    white-space: nowrap;
}

.floating-whatsapp-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(37, 211, 102, 0.4);
    color: var(--clr-green-soft);
}

.floating-whatsapp-badge .online-dot {
    width: 9px;
    height: 9px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 9px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-whatsapp {
    pointer-events: auto;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45), 0 0 0 4px rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6), 0 0 0 5px rgba(255, 255, 255, 1);
    color: white;
}

.floating-whatsapp svg,
.btn-whatsapp svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
    fill-rule: evenodd;
    display: block;
}

.btn-whatsapp svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 640px) {
    .floating-whatsapp-container {
        bottom: 20px;
        right: 20px;
    }
    .floating-whatsapp-badge {
        display: none;
    }
    .floating-whatsapp {
        width: 54px;
        height: 54px;
    }
    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.2s;
}

/* Media Queries */
@media (max-width: 900px) {
    .split-layout, .split-layout.reverse {
        grid-template-columns: 1fr;
    }
    
    .split-layout.reverse .split-text {
        order: unset;
    }
    .split-layout.reverse .split-image {
        order: unset;
    }

    .contacto-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .padding-section {
        padding: var(--space-xl) 0;
    }
}

/* Próxima Apertura - Landing Page */
.proxima-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--clr-green-dark);
    color: var(--clr-white);
    position: relative;
    overflow-x: hidden;
}

.proxima-bg-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 27, 20, 0.85) 0%, rgba(47, 59, 46, 0.92) 50%, rgba(20, 27, 20, 0.96) 100%),
                url('images/hostal_hero_1775813493518.png') center/cover no-repeat;
    z-index: 0;
}

.proxima-main {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem 3rem;
    max-width: 860px;
    margin: 0 auto;
    flex-grow: 1;
}

.proxima-brand {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #F3E5D8;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.proxima-badge {
    display: inline-block;
    padding: 0.4rem 1.4rem;
    border: 1px solid rgba(212, 175, 55, 0.6);
    background: rgba(212, 175, 55, 0.08);
    color: #E8D099;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    border-radius: 30px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.proxima-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.proxima-slogan {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: rgba(254, 253, 249, 0.9);
    margin-bottom: 2rem;
    max-width: 720px;
    line-height: 1.6;
    font-weight: 300;
}

.proxima-desc-box {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
    max-width: 680px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.proxima-desc-box p {
    color: rgba(254, 253, 249, 0.95);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: center !important;
}

.proxima-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.btn-proxima-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-proxima-wa:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
}

.btn-proxima-wa svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.proxima-contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    font-size: 0.95rem;
    color: rgba(254, 253, 249, 0.85);
    margin-top: 0.5rem;
}

.proxima-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.proxima-contact-item a {
    color: #E8D099;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.proxima-contact-item a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.proxima-footer {
    position: relative;
    z-index: 1;
    width: 100%;
    background: rgba(18, 24, 18, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
