:root {
        /* Page-only helper colors */
        --dark-color: #3F49AC;
        --light-blue: #888EC8;
        --white: #FFFFFF;
        --text-dark: #414141;
        --text-light: #FFFFFF;
        --orange-gradient: linear-gradient(90deg, #FF6640 100%, #FFCCBF 100%);
    }

    /* Page-specific resets */
    body { color: #000; background-color: var(--white); background-image: none; }

    /* Main content */
    .main-content {
        padding-top: 0; /* dejar que include.js maneje el offset del header */
        /* Fondo principal que debe iniciar donde termina el header */
        background-image: url('../images/9ca7ec_4100bbc9da204deca12be78c8f703e1b~mv2.webp');
        background-size: 100vw auto; /* ancho completo, alto proporcional */
        background-position: top center; /* que comience justo debajo del header */
        background-repeat: no-repeat;
        background-origin: content-box; /* posicionar respecto al contenido, no al padding */
        background-clip: content-box; /* no pintar debajo del padding-top */
    }

    /* Hero Section - fondo global en body */
    .hero-section {
        position: relative;
        min-height: 100vh;
        background: transparent;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .hero-section::before { display: none; }

    .hero-content {
        position: relative;
        z-index: 10;
        text-align: center;
        color: #000; /* texto negro */
        max-width: 50rem;
        padding: 0 1.25rem;
    }
    .hero-logo {
        width: 17.625rem;
        height: auto;
        /* Center horizontally: images are block-level in common.css, so use auto margins */
        display: block;
        margin: 0 auto 1.875rem;
        filter: drop-shadow(0 0.25rem 0.5rem rgba(0,0,0,0.3));
    }
    .hero-tagline {
        font-size: 1.25rem;
        margin-bottom: 1.875rem;
        opacity: 1;
        font-weight: 400;
        line-height: 1.5;
        color: #000;
    }
    .hero-title {
        font-size: 4.9rem;
        font-weight: 800;
        margin-bottom: 1.875rem;
        color: var(--wix-color-primary); /* mismo color que el header */
        letter-spacing: 0.02em;
        font-family: 'Raleway', sans-serif;
        line-height: 1.2;
        text-shadow: none;
        background: none;
    }
    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        opacity: 1;
        color: #000;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.9375rem;
        align-items: center;
        max-width: 25rem;
        margin: 0 auto 2.5rem;
    }
    .hero-button {
        background-color: var(--dark-color);
        color: white;
        padding: 0.9375rem 2.5rem;
        border: none;
        border-radius: 1.25rem;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.625rem;
        width: 100%;
        text-align: center;
        font-family: 'Raleway', sans-serif;
        letter-spacing: 0.05em;
    }
    .hero-button:hover {
        background-color: var(--light-blue);
        transform: translateY(-0.125rem);
        box-shadow: 0 0.375rem 1.25rem rgba(0,0,0,0.2);
    }
    .hero-button.primary { background-color: var(--dark-color); font-size: 1.1rem; }
    .hero-gift-text { font-size: 1.25rem; opacity: 0.9; line-height: 1.5; color: #000; }

    /* Gallery Section - fondo compartido y masonry responsive */
    .gallery-section { position: relative; background: transparent; padding: 0; overflow: hidden; }
.gallery-container { position: relative; width: 100%; max-width: 75rem; margin: 0 auto; height: 100%; padding: 2rem 1rem; }
    .pro-gallery { position: relative; width: 100%; height: 100%; padding: 0; }

    /* Masonry layout con columnas */
    .gallery-masonry { column-count: 5; column-gap: 1rem; }
.masonry-item { break-inside: avoid; margin-bottom: 1rem; border-radius: 0.5rem; overflow: hidden; box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.08); background: #fff; transition: transform 0.25s ease; }
.masonry-item:hover { transform: translateY(-0.125rem); }
.masonry-item img { width: 100%; height: auto; display: block; object-fit: cover; }

/* Info Sections: horarios, entradas, paquetes, gastronomía */
.ap-section { background: #fff; padding: 3rem 1.25rem; }
.ap-container { max-width: 75rem; margin: 0 auto; }
.section-title { font: var(--wix-font-heading); color: var(--wix-color-card-bg); text-align: center; margin: 0 0 1.25rem; }
.section-subtitle { text-align: center; color: #666; margin-bottom: 2rem; font: var(--wix-font-body); }
.notice { background: #fff8e1; border: 1px solid #ffe8a1; color: #73510d; padding: 0.75rem 1rem; border-radius: 0.5rem; text-align: center; margin: 0 auto 1.25rem; max-width: 36rem; }

/* Entradas table */
.pricing-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 0.75rem; overflow: hidden; box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.06); }
.pricing-table th, .pricing-table td { padding: 0.875rem 1rem; }
.pricing-table thead th { background: var(--wix-color-primary); color: #fff; text-align: left; font-weight: 700; }
.pricing-table tbody tr:nth-child(even) { background: #fafafa; }
.pricing-table td.price { text-align: right; font-weight: 700; color: var(--wix-color-card-bg); }

/* Paquetes */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); gap: 1rem; }
.card { background: #fff; border-radius: 0.75rem; padding: 1rem 1.125rem; box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.06); }
.card h4 { margin: 0 0 0.375rem; color: var(--wix-color-card-bg); font-weight: 700; }
.card p { margin: 0.125rem 0; color: #444; }
.card .price { margin-top: 0.5rem; font-weight: 800; color: var(--wix-color-primary); }

/* Gastronomía */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); gap: 0.75rem; }
.menu-item { background: #fff; border-radius: 0.75rem; padding: 0.875rem 1rem; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.06); }
.menu-item .name { font-weight: 600; color: #333; }
.menu-item .price { font-weight: 800; color: var(--wix-color-card-bg); }
.restaurant-note { margin-top: 0.75rem; text-align: center; color: #333; font-weight: 600; }

/* Footer is in common.css */

/* Dropdown arrow provided by common.css */

    /* Responsive Design */
    @media (max-width: 87.5em) {
        .gallery-masonry { column-count: 4; }
    }
    @media (max-width: 68.75em) {
        .gallery-masonry { column-count: 3; }
    }
    @media (max-width: 48em) {
        body { background-attachment: scroll; }
        .nav-toggle { display: inline-flex; }
        .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--wix-color-primary); padding: 0.75rem 1rem 1rem; box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15); }
        .main-nav.open { display: block; }
        .nav-menu { flex-direction: column; gap: 0.5rem; }
        .btn-primary { width: 100%; justify-content: center; margin-top: 0.5rem; }
        .dropdown-menu { position: static; transform: none; opacity: 1; visibility: hidden; background: transparent; box-shadow: none; margin-top: 0; min-width: 0; padding-left: 0.75rem; }
        .nav-item.open > .dropdown-menu { visibility: visible; }
        .hero-title { font-size: 2.5rem; }
        .hero-buttons { max-width: 18.75rem; }
        .gallery-masonry { column-count: 2; }
        .section-title { font-size: 2rem; }
    }
    @media (max-width: 30em) {
        body { background-attachment: scroll; }
        .hero-title { font-size: 2rem; }
        .hero-description { font-size: 1.1rem; }
        .hero-button { padding: 0.75rem 1.875rem; font-size: 0.9rem; }
        .gallery-masonry { column-count: 1; }
    }