:root {
    --bg-color: #f8fafc;
    /* Slate 50 - Snow White */
    --text-color: #1e293b;
    /* Slate 800 - Contrast Text */
    --primary-color: #0ea5e9;
    /* Sky 500 - Vivid Blue */
    --accent-color: #d97706;
    /* Amber 600 - Warm Wood */
    --glass-bg: rgba(255, 255, 255, 0.65);
    /* White Frost */
    --glass-border: rgba(255, 255, 255, 0.6);
    --font-main: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
    color-scheme: light;
}

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

html {
    scroll-behavior: smooth;
}

/* Background Slideshow */
.background-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Better for mobile than 100vh */
    z-index: -1;
    overflow: hidden;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: bgFade 24s infinite;
}

.bg-slide:nth-child(1) {
    animation-delay: 0s;
    background-color: #e2e8f0;
    /* Fallback color */
}

.bg-slide:nth-child(2) {
    animation-delay: 8s;
}

.bg-slide:nth-child(3) {
    animation-delay: 16s;
}

@keyframes bgFade {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    43% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: transparent;
    /* Handled by slider */
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
    /* White title on impactful images */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

h2.section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;

    /* Glass pill style for legibility */
    display: table;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.5rem 2.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

/* Header */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 2rem;
    background: rgba(15, 23, 42, 0.98);
    /* Dark Slate - Almost solid */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-premium {
    height: 65px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.logo-premium:hover {
    transform: scale(1.02);
}

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

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-color);
}

.nav-instagram {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.insta-icon {
    width: 18px;
    height: 18px;
}

/* Hero Section - Split Layout */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: transparent;
    /* Show body background */
}

.hero-container {
    display: flex;
    align-items: stretch;
    /* Stretch children to same height */
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    gap: 4rem;
    flex-wrap: wrap;
}

/* Hero Content (Left) */
.hero-content {
    flex: 1;
    min-width: 300px;
    z-index: 1;
    text-align: left;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically inside the stretched box */
    color: var(--text-color);
    min-height: 500px;
    /* Base height to match slider */
}

.hero-content h1 {
    font-size: 2.5rem;
    /* Slightly smaller to fit frame better */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1e293b;
    text-shadow: none;
    /* No shadow needed with background */
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #334155;
    font-weight: 500;
    text-shadow: none;
}

/* Hero Slider (Right - Contained) */
.hero-slider-container {
    flex: 1;
    min-width: 300px;
    height: auto;
    /* Allow stretching */
    min-height: 500px;
    /* Match content box minimum */
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: #fff;
    border: 8px solid #fff;
}

/* Adjust slider to be inside the container */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    animation: slideShow 15s infinite;
}

/* Stagger animations for 3 slides */
.hero-slide:nth-child(1) {
    background-image: url('assets/images/solaris.jpg');
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    background-image: url('assets/images/serenum.jpg');
    animation-delay: 5s;
}

.hero-slide:nth-child(3) {
    background-image: url('assets/images/primus.jpg');
    animation-delay: 10s;
}

@keyframes slideShow {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    10% {
        opacity: 1;
        transform: scale(1);
    }

    /* Fade in and zoom out */
    33% {
        opacity: 1;
        transform: scale(1);
    }

    /* Hold */
    43% {
        opacity: 0;
        transform: scale(1);
    }

    /* Fade out */
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all var(--transition-speed);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.4);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: #0284c7;
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.5);
}

/* Airbnb Badge in Split Hero */
.airbnb-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #64748b;
    text-shadow: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.airbnb-brand {
    color: #ff5a5f;
    filter: none;
}

.hero-note {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
    color: #64748b;
}

.scroll-link {
    color: var(--primary-color);
}

/* Content Sections */
.content-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.white-glass {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 3rem;
    /* Add padding for box feel */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* History Section */
.history-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2rem 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.history-card p {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.8;
    font-weight: 500;
}

/* Equipment Section */
.equipment-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--text-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.equipment-content {
    display: none;
    animation: fadeInUp 0.5s ease forwards;
}

.equipment-content.active {
    display: block;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.equip-category {
    background: #ffffff;
    /* Fondo sólido para máxima legibilidad */
    padding: 1.8rem;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.equip-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.equip-category h4 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #0369a1;
    /* Azul más oscuro para el título */
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.equip-category svg {
    color: #0ea5e9;
}

.equip-category ul {
    list-style: none;
    padding: 0;
}

.equip-category li {
    font-size: 0.95rem;
    /* Un poco más grande */
    margin-bottom: 0.8rem;
    color: #1e293b;
    /* Texto casi negro para mejor contraste */
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.4;
    font-weight: 500;
}

.equip-category li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: bold;
    font-size: 0.8rem;
}

.equip-category.not-available {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.equip-category.not-available h4 {
    color: #475569;
}

.equip-category.not-available li {
    color: #64748b;
    text-decoration: line-through;
    /* Tachado suave para indicar no disponible */
    opacity: 0.7;
}

.equip-category.not-available li::before {
    content: '✕';
    color: #94a3b8;
    text-decoration: none;
    display: inline-block;
}

/* Domes Grid */
.domes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dome-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.dome-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
}

.dome-img {
    width: 100%;
    height: 400px;
    /* Increased height to show more of the photo surroundings */
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.dome-card:hover .dome-img {
    transform: scale(1.05);
}

.dome-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dome-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1.5rem;
}

.capacity {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.description {
    font-size: 0.95rem;
    color: #475569;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.desc-full {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dome-card:hover .desc-full {
    display: inline;
    opacity: 1;
}

.description .desc-short::after {
    content: " ...";
    transition: opacity 0.3s ease;
}

.dome-card:hover .desc-short::after {
    opacity: 0;
    position: absolute;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    opacity: 0.8;
    color: #1e293b;
    /* Darker text for visibility against white/snow */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
}

/* Reservation Form */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.form-group input {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 1rem;
    border-radius: 10px;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* Switch for Pets */
.checkbox-group {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 12px;
}

.reservation-form .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked+.slider {
    background-color: var(--primary-color);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

/* Gallery Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    background-color: #f8fafc;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 30px;
    width: 90%;
    max-width: 1200px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.close-modal {
    color: #64748b;
    position: absolute;
    right: 30px;
    top: 20px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--text-color);
}

/* Lightbox Specific Styles */
.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 85vh;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.lightbox-content img {
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.close-lightbox {
    color: white;
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.gallery-container {
    padding: 1rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    cursor: pointer;
    -webkit-transform: translateZ(0);
    /* Safari blink fix */
    transform: translateZ(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    opacity: 0;
    pointer-events: none;
    /* Let the click go through to the parent .gallery-item */
    transition: opacity 0.3s ease;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

/* Bento Layout Logic */
.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.item-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.item-small {
    grid-column: span 1;
    grid-row: span 1;
}

.item-wide {
    grid-column: span 2;
    grid-row: span 1;
}

/* Responsive Gallery */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .item-tall {
        grid-row: span 1;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .item-large,
    .item-medium,
    .item-tall,
    .item-small,
    .item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Reviews Section Slider */
.reviews-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 50px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: var(--text-color);
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.slider-arrow.prev {
    left: 0;
}

.slider-arrow.next {
    right: 0;
}

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

/* Mobile specific slider */
/* Seccion de Reseñas movida abajo para mejor control */

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--text-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.review-meta h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
}

.review-date {
    font-size: 0.9rem;
    color: #64748b;
}

.review-stars {
    color: #ff5a5f;
    /* Airbnb Red */
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: normal;
    /* Better readability */
    color: #334155;
    /* Darker Slate for better contrast */
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Ensure background of cards is solid white */
.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Mobile Reviews Overrides at the end of section */
@media (max-width: 768px) {
    #reviews {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .reviews-slider-container {
        position: relative;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        position: absolute;
        z-index: 20;
    }

    .slider-arrow.prev {
        left: 0.5rem;
    }

    .slider-arrow.next {
        right: 0.5rem;
    }

    .reviews-grid {
        display: flex !important;
        overflow: hidden !important;
        gap: 0 !important;
        padding: 0.5rem 3rem;
        width: 100%;
        box-sizing: border-box;
    }

    .review-card {
        min-width: calc(100% - 6rem) !important;
        max-width: calc(100% - 6rem) !important;
        flex-shrink: 0 !important;
        display: none;
        opacity: 0;
        height: auto !important;
        min-height: auto !important;
        padding: 1.5rem !important;
        overflow: visible !important;
        background: #fff !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        border-radius: 16px !important;
        box-sizing: border-box !important;
        margin: 0 auto;
    }

    .review-card.active {
        display: flex !important;
        flex-direction: column !important;
        opacity: 1 !important;
    }

    .review-header {
        margin-bottom: 0.8rem !important;
    }

    .review-stars {
        margin-bottom: 0.8rem !important;
        font-size: 1rem !important;
    }

    .review-text {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        white-space: normal !important;
        overflow: visible !important;
        height: auto !important;
        display: block !important;
        color: #334155 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .review-avatar {
        width: 42px !important;
        height: 42px !important;
        font-size: 1rem !important;
        flex-shrink: 0;
    }

    .review-meta h4 {
        font-size: 0.95rem !important;
    }

    .review-date {
        font-size: 0.8rem !important;
    }
}

/* Airbnb Button */
.airbnb-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #ff5a5f;
    /* Airbnb Red */
    color: white;
    font-weight: 600;
    border-radius: 10px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.airbnb-btn:hover {
    background-color: #e0484d;
    transform: translateY(-2px);
    color: white;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

/* Recommendations Section */
.recommendations-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.recommendations-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.12);
    border-radius: 24px;
    padding: 4rem 2rem;
    max-width: 800px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.recommendations-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(31, 38, 135, 0.18);
}

.recommendations-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 16px rgba(14, 165, 233, 0.3);
}

.recommendations-icon svg {
    width: 32px;
    height: 32px;
}

.recommendations-card p {
    font-size: 1.15rem;
    color: #334155;
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.guide-btn {
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Guide Modal Specifics */
.guide-modal-content {
    max-width: 1000px;
    height: 85vh;
    display: flex;
    flex-direction: column;
}

.guide-iframe-container {
    flex-grow: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #f1f5f9;
}

.guide-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.guide-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: #f1f5f9;
    z-index: 1;
}

.guide-fallback p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #475569;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    h1,
    .hero-content h1 {
        font-size: 1.8rem;
    }

    h2.section-title {
        font-size: 1.4rem;
        padding: 0.4rem 1.5rem;
    }

    .glass-header {
        padding: 1rem 1.5rem;
        height: auto;
    }

    nav {
        justify-content: space-between;
    }

    .menu-toggle {
        display: flex;
    }

    /* Transformations for "Active" hamburger */
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        gap: 2.5rem;
        z-index: 1000;
        margin: 0;
        padding: 0;
    }

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

    .nav-links a {
        font-size: 1.1rem;
        /* Reducido de 1.5rem */
        letter-spacing: 2px;
    }

    .nav-instagram .insta-icon {
        width: 24px;
        height: 24px;
    }

    .history-card {
        padding: 1.5rem;
    }

    .history-card p {
        font-size: 0.95rem;
    }

    .recommendations-card {
        padding: 2.5rem 1.5rem;
    }

    .recommendations-card p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .recommendations-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    /* Equipment Accordion for Mobile */
    .equipment-tabs {
        flex-direction: column;
        gap: 0.8rem;
    }

    .tab-btn {
        width: 100%;
        text-align: left;
        padding: 1.2rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .tab-btn::after {
        content: '+';
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }

    .tab-btn.active::after {
        content: '−';
        transform: rotate(180deg);
    }

    .tab-btn.active {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .equipment-content {
        margin-top: 0;
        /* Pegado al botón */
        border-radius: 0 0 20px 20px;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease-out, margin 0.4s ease;
    }

    .equipment-content.active {
        max-height: 5000px;
        /* Valor alto para permitir expansión */
        margin-bottom: 2rem;
        padding-top: 1rem;
    }
}

/* Footer & WhatsApp styles */
footer {
    padding: 3rem 2rem;
    background: rgba(15, 23, 42, 0.9);
    color: white;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #25d366 !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.whatsapp-link:hover {
    transform: scale(1.05);
}

.whatsapp-link svg {
    filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.3));
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulseWhatsApp 2s infinite;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
}


/* Momentos Nevados Section */
.momentos-upload-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Momentos Slider & Styles */

.momento-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.momento-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.momento-card {
    background: white;
    padding: 1rem 1rem 2.5rem 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    /* No rotation for slider mode */
    display: none;
    /* Hidden by default in slider */
    flex-direction: column;
    width: 100%;
    max-width: 320px;
}

.momento-card.active {
    display: flex;
    animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Removed grid and random rotation styles */


.momento-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #eee;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #eee;
}

.momento-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.momento-info {
    text-align: center;
    color: #334155;
}

.momento-text {
    font-family: 'Kaushan Script', cursive;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: #1e293b;
    word-break: break-word;
}

.momento-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.2rem;
}

.momento-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.momentos-form .form-row {
    display: flex;
    gap: 1rem;
}

.momentos-form .form-group {
    flex: 1;
}

.momento-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

.momento-message {
    background: #dcfce7;
    color: #166534;
}

.momento-message.error {
    background: #fee2e2;
    color: #991b1b;
}

@media (max-width: 768px) {
    .momentos-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .momento-card {
        transform: none !important;
        /* Remove rotation on mobile for cleaner layout */
    }
}

/* Momentos Nevados - Mobile Only & Spectacular */

/* Hide by default on desktop (Both section and nav link) */
#momentos,
.nav-highlight {
    display: none !important;
}

/* Nav Highlight Styling (Only visible on mobile) */
.nav-highlight {
    /* Base styles, will be shown via media query */
    color: #fff !important;
    background: linear-gradient(45deg, #ff5a5f, #d97706);
    padding: 0.5rem 1rem !important;
    border-radius: 20px;
    font-weight: 800 !important;
    box-shadow: 0 4px 15px rgba(255, 90, 95, 0.4);
    animation: pulseHighlight 2s infinite;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-highlight:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #e0484d, #b45309);
}

@keyframes pulseHighlight {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 90, 95, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 90, 95, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 90, 95, 0);
    }
}

@media (max-width: 768px) {

    /* Show on mobile */
    #momentos {
        display: block !important;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    /* Enhance section title on mobile to clearer contrast */
    #momentos .section-title {
        font-size: 2rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        margin-bottom: 1rem;
    }

    /* Make the nav link even bigger on mobile menu */
    .nav-highlight {
        display: flex !important;
        font-size: 1.3rem !important;
        padding: 0.8rem 1.5rem !important;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* 
.music-control-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #111;
    border: 2px solid #16a34a; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(22, 163, 74, 0.4);
    transition: all 0.3s ease;
}

.music-control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(22, 163, 74, 0.6);
}

.music-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.music-static-icon {
    font-size: 1.5rem;
    display: block;
    color: #16a34a;
}

.music-bars {
    display: none;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
}

.music-bars span {
    width: 3px;
    height: 4px;
    background: #4ade80;
    border-radius: 2px;
}

.music-control-btn.playing .music-static-icon {
    display: none;
}

.music-control-btn.playing .music-bars {
    display: flex;
}

.music-control-btn.playing .music-bars span {
    animation: bounceBar 0.5s ease-in-out infinite alternate;
}

.music-control-btn.playing .music-bars span:nth-child(1) { background: #16a34a; }
.music-control-btn.playing .music-bars span:nth-child(2) { background: #4ade80; animation-duration: 0.7s; }
.music-control-btn.playing .music-bars span:nth-child(3) { background: #22c55e; animation-duration: 0.4s; }
.music-control-btn.playing .music-bars span:nth-child(4) { background: #15803d; animation-duration: 0.6s; }

@keyframes bounceBar {
    from {
        height: 4px;
    }

    to {
        height: 20px;
    }
}

@media (max-width: 768px) {
    .music-control-btn {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
}
*/