/* Base Styles from HTML */
:root {
    --amaya-primary: #ff1654;
    --amaya-secondary: #ff6b9d;
    --amaya-accent: #ffd93d;
    --amaya-bg-dark: #0a0e27;
    --amaya-bg-light: #1a1d3a;
}

/* Ensure widgets handle their own font family */
.amaya-hero,
.amaya-info-banner,
.amaya-section-title,
.amaya-events-container,
.amaya-gallery-section,
.amaya-cta-section {
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

.amaya-hero h1,
.amaya-section-title h2,
.amaya-event-card h3,
.amaya-cta-section h2 {
    font-family: 'Playfair Display', serif;
}

/* --- UTILITY CLASSES FOR PRESETS --- */

/* Dark Solid */
.amaya-bg-dark {
    background-color: var(--amaya-bg-dark) !important;
}

/* Hero Style */
.amaya-bg-hero {
    position: relative;
    background: linear-gradient(135deg, #1a1d3a 0%, #0a0e27 100%) !important;
    overflow: hidden;
}

.amaya-bg-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23ff1654" opacity="0.1" x="100" y="100" width="200" height="200"/><circle fill="%23ffd93d" opacity="0.1" cx="800" cy="300" r="150"/><rect fill="%23ff1654" opacity="0.08" x="600" y="500" width="300" height="150"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

/* Ensure content sits above geometric shapes */
.amaya-bg-hero>.elementor-container,
.amaya-bg-hero>.elementor-widget-wrap {
    position: relative;
    z-index: 1;
}

/* Info Banner Style */
.amaya-bg-info {
    background: linear-gradient(90deg, #1a1d3a 0%, #2a1a3a 100%) !important;
    border-top: 2px solid rgba(255, 22, 84, 0.3);
    border-bottom: 2px solid rgba(255, 22, 84, 0.3);
}

/* Card Style */
.amaya-bg-card {
    background: linear-gradient(135deg, #1a1d3a 0%, #0f1229 100%) !important;
    border: 2px solid rgba(255, 22, 84, 0.2);
    /* No border-radius forced here to allow container settings */
}

/* Gallery Style */
.amaya-bg-gallery {
    background: linear-gradient(180deg, #0a0e27 0%, #1a1d3a 100%) !important;
}

/* --- WIDGET STYLES (Retaining specific widget styling) --- */

/* Hero Section */
.amaya-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* Using the same style as utility */
    background: linear-gradient(135deg, #1a1d3a 0%, #0a0e27 100%);
    color: #ffffff;
}

.amaya-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23ff1654" opacity="0.1" x="100" y="100" width="200" height="200"/><circle fill="%23ffd93d" opacity="0.1" cx="800" cy="300" r="150"/><rect fill="%23ff1654" opacity="0.08" x="600" y="500" width="300" height="150"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.amaya-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.amaya-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff1654 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.amaya-hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: #ffd93d;
    margin-bottom: 2rem;
    font-weight: 300;
    text-transform: uppercase;
}

.amaya-hero-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Info Banner */
.amaya-info-banner {
    background: linear-gradient(90deg, #1a1d3a 0%, #2a1a3a 100%);
    padding: 3rem 20px;
    text-align: center;
    border-top: 2px solid rgba(255, 22, 84, 0.3);
    border-bottom: 2px solid rgba(255, 22, 84, 0.3);
    color: #ff6b9d;
}

.amaya-info-banner p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #ff6b9d;
    line-height: 1.8;
}

/* Section Title */
.amaya-section-title {
    text-align: center;
    padding: 5rem 20px 3rem;
    background-color: var(--amaya-bg-dark);
}

.amaya-section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.amaya-section-title .subtitle {
    color: #ff1654;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

/* Events Grid */
.amaya-events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem 20px 5rem;
    background-color: var(--amaya-bg-dark);
    max-width: 1200px;
    margin: 0 auto;
}

.amaya-event-card {
    background: linear-gradient(135deg, #1a1d3a 0%, #0f1229 100%);
    border: 2px solid rgba(255, 22, 84, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.amaya-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff1654 0%, #ffd93d 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.amaya-event-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 22, 84, 0.6);
    box-shadow: 0 20px 40px rgba(255, 22, 84, 0.2);
}

.amaya-event-card:hover::before {
    transform: scaleX(1);
}

.amaya-event-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff1654 0%, #ff6b9d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.amaya-event-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.amaya-event-card h4 {
    font-size: 0.9rem;
    color: #ff6b9d;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
}

.amaya-event-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amaya-event-card li {
    padding: 0.6rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.amaya-event-card li::before {
    content: '▹';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.amaya-event-card .amaya-btn-card {
    display: inline-block;
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--amaya-primary);
    color: var(--amaya-primary);
    border-radius: 50px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.amaya-event-card .amaya-btn-card:hover {
    background: var(--amaya-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 22, 84, 0.3);
}

/* Gallery Section */
.amaya-gallery-section {
    background: linear-gradient(180deg, #0a0e27 0%, #1a1d3a 100%);
    padding: 5rem 20px;
}

/* Wrapper grid */
.amaya-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.amaya-gallery-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, #2a1a3a 0%, #1a1d3a 100%);
    background-size: cover;
    background-position: center;
}

.amaya-gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 22, 84, 0.7) 0%, rgba(255, 217, 61, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.amaya-gallery-item:hover::before {
    opacity: 1;
}

.amaya-gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 22, 84, 0.3);
}

/* CTA Section */
.amaya-cta-section {
    background: linear-gradient(135deg, #1a1d3a 0%, #2a1a3a 100%);
    padding: 5rem 20px;
    text-align: center;
    color: white;
}

.amaya-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.amaya-cta-section p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.amaya-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.amaya-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.amaya-cta-form-container {
    max-width: 600px;
    margin: 2rem auto 0;
    text-align: left;
}

.amaya-inline-form .amaya-form-group input,
.amaya-inline-form .amaya-form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.amaya-inline-form .amaya-form-group input::placeholder,
.amaya-inline-form .amaya-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.amaya-form-row {
    display: flex;
    gap: 1.5rem;
}

.amaya-form-row .amaya-form-group {
    flex: 1;
}

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

.amaya-btn-primary {
    background: linear-gradient(135deg, #ff1654 0%, #ff6b9d 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 22, 84, 0.3);
}

.amaya-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 22, 84, 0.5);
    color: #ffffff;
}

.amaya-btn-secondary {
    background: transparent;
    color: #ff1654;
    border: 2px solid #ff1654;
}

.amaya-btn-secondary:hover {
    background: rgba(255, 22, 84, 0.1);
    transform: translateY(-3px);
    color: #ff1654;
}

/* Responsive */
@media (max-width: 768px) {
    .amaya-hero h1 {
        font-size: 2.5rem;
    }

    .amaya-hero-subtitle {
        font-size: 1rem;
    }

    .amaya-hero-description {
        font-size: 1rem;
    }

    .amaya-events-container {
        grid-template-columns: 1fr;
    }

    .amaya-section-title h2 {
        font-size: 2rem;
    }

    .amaya-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .amaya-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* --- MODAL STYLES --- */
#amaya-booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.amaya-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(5px);
}

.amaya-modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1d3a 0%, #0f1229 100%);
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 22, 84, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    animation: amayaFadeIn 0.3s ease;
}

@keyframes amayaFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.amaya-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: #ff6b9d;
    cursor: pointer;
    transition: color 0.3s;
}

.amaya-modal-close:hover {
    color: #ff1654;
}

.amaya-modal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-align: center;
}

.amaya-modal-content h4 {
    font-size: 1rem;
    color: #ff6b9d;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.amaya-form-group {
    margin-bottom: 1.5rem;
}

.amaya-form-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.amaya-form-group input,
.amaya-form-group select,
.amaya-form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.amaya-form-group input:focus,
.amaya-form-group select:focus,
.amaya-form-group textarea:focus {
    outline: none;
    border-color: #ff1654;
    background: rgba(255, 255, 255, 0.1);
}

.amaya-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ff1654 0%, #ff6b9d 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.amaya-submit-btn:hover {
    transform: translateY(-3px);
}

.amaya-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

#amaya-form-message {
    margin-top: 1rem;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 0.9rem;
    display: none;
}

#amaya-form-message.success {
    background: rgba(0, 255, 0, 0.1);
    color: #4caf50;
    border: 1px solid #4caf50;
}

#amaya-form-message.error {
    background: rgba(255, 0, 0, 0.1);
    color: #f44336;
    border: 1px solid #f44336;
}

/* --- UPDATED HERO WIDGET STYLES (Slideshow & Content) --- */

.amaya-hero-wrapper {
    position: relative;
    color: #f1f5f9;
    min-height: 80vh;
    /* Taller hero */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}

/* Slideshow Background */
.amaya-hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.amaya-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: kenburns 24s infinite;
    /* 6s per image * 4 images */
}

.amaya-slide-item.default-bg {
    background: linear-gradient(135deg, #1a1d3a 0%, #0a0e27 100%);
    opacity: 1;
    animation: none;
}

.amaya-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    /* Dark overlay */
    z-index: 1;
}

@keyframes kenburns {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    1.5% {
        opacity: 1;
    }

    23.5% {
        opacity: 1;
    }

    25% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Content Container */
.hero-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    align-items: center;
    /* Vertically center items in the row */
    position: relative;
    z-index: 2;
    /* Content above background */
}

.hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
    /* Ensure alignment */

    /* Center Content Vertically */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content .logo {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #e2e8f0;
    text-transform: uppercase;
    background: none;
    -webkit-text-fill-color: #e2e8f0;
}

.hero-content .tagline {
    font-size: 1.8rem;
    color: #cbd5e1;
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-content .btn {
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
    text-transform: uppercase;
}

.hero-content .btn-primary {
    background-color: #c2410c;
    color: white;
}

.hero-content .btn-primary:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
}

.hero-content .btn-secondary {
    background-color: transparent;
    color: #cbd5e1;
    border: 1px solid #475569;
}

.hero-content .btn-secondary:hover {
    background-color: #1e293b;
    border-color: #64748b;
    transform: translateY(-2px);
}

/* Features List */
.features p {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

/* Horarios Section */
.horarios-section {
    flex: 1;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.2);
    /* 20% opacity */
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.horarios-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #334155;
}

.horarios-header i {
    font-size: 1.8rem;
    color: #f59e0b;
    margin-right: 15px;
}

.horarios-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0;
}

.horarios-list {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
    transition: all 0.3s ease;
}

.horario-item:last-child {
    border-bottom: none;
}

/* Highlight Today Style */
.horario-item.is-today {
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 6px;
    padding: 16px 12px;
    border-bottom: none;
    margin-top: 5px;
    margin-bottom: 5px;
}

.today-tag {
    color: #3b82f6;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 5px;
}

.horario-item .dia {
    font-weight: 600;
    color: #e2e8f0;
    font-size: 1.1rem;
}

.horario-item .horas {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.horario-item .horas.abierto {
    color: #10b981;
}

.horario-item .horas.cerrado {
    color: #ef4444;
}

.horario-item .horas i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.horario-destacado {
    background-color: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    padding: 12px 18px;
    margin-top: 10px;
    border-left: 4px solid #f59e0b;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* Allow content to wrap */
}

/* Instagram Link in Horarios */
.horario-instagram-link {
    color: #e1306c;
    font-weight: 600;
    text-decoration: none;
    margin-left: 10px;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.horario-instagram-link:hover {
    text-decoration: underline;
    color: #ff6b9d;
}

@media (max-width: 480px) {
    .horario-instagram-link {
        margin-left: 30px;
        /* Indent slightly if it wraps completely */
        margin-top: 5px;
        width: 100%;
        display: block;
    }
}

.horario-destacado i {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-right: 12px;
}

.horario-destacado p {
    color: #fbbf24;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.horario-nota {
    font-size: 0.9rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .horarios-section {
        width: 100%;
    }

    .hero-content .logo {
        font-size: 2.8rem;
    }

    .hero-content .tagline {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .horario-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .horario-item .horas {
        align-self: flex-end;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .hero-content .btn {
        width: 100%;
        text-align: center;
    }
}

/* FontAwesome Protection */
.amaya-hero-wrapper i.fas,
.amaya-hero-wrapper i.far,
.amaya-hero-wrapper i.fab {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.amaya-hero-wrapper i.fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.amaya-hero-wrapper i.far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
}

.amaya-hero-wrapper i.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* --- HISTORY WIDGET STYLES --- */

.amaya-history-widget {
    background-color: var(--amaya-bg-dark);
    color: #e2e8f0;
    font-family: 'Montserrat', sans-serif;
}

.history-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 4rem 20px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.history-section.reverse {
    flex-direction: row-reverse;
}

.history-content {
    flex: 1;
    min-width: 300px;
}

.history-content.full-width {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.history-image {
    flex: 1;
    min-width: 300px;
}

.history-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.history-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.history-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--amaya-primary);
}

.history-content.full-width .history-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.history-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.history-text p {
    margin-bottom: 1.5rem;
}

/* Alma Section */
.history-alma-section {
    padding: 5rem 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--amaya-bg-dark) 0%, #1a1d3a 100%);
}

.alma-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
}

.alma-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.alma-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.alma-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.alma-link:hover {
    transform: translateY(-10px);
}

.alma-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--amaya-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.alma-link:hover .alma-image {
    box-shadow: 0 15px 30px rgba(255, 22, 84, 0.2);
    border-color: var(--amaya-accent);
}

.alma-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alma-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.alma-arrow {
    font-size: 1.5rem;
    color: var(--amaya-primary);
    transition: transform 0.3s ease;
    display: inline-block;
}

.alma-link:hover .alma-arrow {
    transform: translateX(10px);
    color: var(--amaya-accent);
}

@media (max-width: 768px) {
    .history-section {
        flex-direction: column;
        text-align: center;
    }

    .history-section.reverse {
        flex-direction: column;
    }

    .history-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .alma-grid {
        gap: 2rem;
    }
}

/* Sección de Frase Inspiracional en History Widget */
.history-quote-section {
    padding: 5rem 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--amaya-bg-dark) 0%, #1a1d3a 100%);
}

.history-quote-section .quote-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.history-quote-section .quote-icon {
    color: var(--amaya-primary);
    opacity: 0.6;
}

.history-quote-section .quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    line-height: 1.4;
    color: #fff;
    background: linear-gradient(to right, white, #ff6b9d, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.history-quote-section .quote-line {
    width: 80px;
    height: 3px;
    background: var(--amaya-primary);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .history-quote-section .quote-text {
        font-size: 1.8rem;
    }
}

/* Ajuste para la frase dentro de la sección Alma */
.history-alma-section .quote-content {
    margin: 3rem auto;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.history-alma-section .quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-style: italic;
    line-height: 1.4;
    color: #fff;
    background: linear-gradient(to right, white, #ff6b9d, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.history-alma-section .quote-line {
    width: 60px;
    height: 2px;
    background: var(--amaya-primary);
}

@media (max-width: 768px) {
    .history-alma-section .quote-text {
        font-size: 1.6rem;
    }
}

/* Amaya Biography Widget Styles */
.amaya-bio-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.amaya-bio-container.bio-reverse {
    flex-direction: row-reverse;
}

.bio-image-wrapper {
    flex: 0 0 350px;
    position: relative;
    z-index: 1;
}

.bio-image-inner {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bio-image-inner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.amaya-bio-container:hover .bio-image-inner img {
    transform: scale(1.05);
}

.bio-image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--amaya-primary) 0%, transparent 100%);
    z-index: 0;
    opacity: 0.3;
    border-radius: 10px;
}

.bio-content {
    flex: 1;
}

.bio-name {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, white, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bio-role {
    color: var(--amaya-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.bio-text {
    color: #e2e8f0;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.bio-socials {
    display: flex;
    gap: 1.5rem;
}

.bio-social-link {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bio-social-link:hover {
    color: var(--amaya-primary);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--amaya-primary);
}

@media (max-width: 991px) {

    .amaya-bio-container,
    .amaya-bio-container.bio-reverse {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .bio-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
    }

    .bio-name {
        font-size: 2.5rem;
    }
}

/* Amaya Minimal Hero Styles */
.amaya-minimal-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1d3a 0%, #0a0e27 100%);
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23ff1654" opacity="0.1" x="100" y="100" width="200" height="200"/><circle fill="%23ffd93d" opacity="0.1" cx="800" cy="300" r="150"/><rect fill="%23ff1654" opacity="0.08" x="600" y="500" width="300" height="150"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.amaya-minimal-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.amaya-minimal-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.amaya-minimal-hero .hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: #ffd93d;
    margin-bottom: 2rem;
    font-weight: 300;
    text-transform: uppercase;
}

.amaya-minimal-hero .hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .amaya-minimal-hero .hero-title {
        font-size: 2.5rem;
    }

    .amaya-minimal-hero .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .amaya-minimal-hero .hero-description {
        font-size: 1rem;
    }
}

/* --- RENTAL HERO WIDGET STYLES --- */

.amaya-rental-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #0a0e27;
    /* Fallback */
}

.rental-hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.amaya-rental-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23ff1654" opacity="0.1" x="100" y="100" width="200" height="200"/><circle fill="%23ffd93d" opacity="0.1" cx="800" cy="300" r="150"/><rect fill="%23ff1654" opacity="0.08" x="600" y="500" width="300" height="150"/></svg>');
    opacity: 0.3;
}

.rental-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23ff1654" opacity="0.1" x="100" y="100" width="200" height="200"/><circle fill="%23ffd93d" opacity="0.1" cx="800" cy="300" r="150"/><rect fill="%23ff1654" opacity="0.08" x="600" y="500" width="300" height="150"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.rental-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.amaya-rental-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff1654 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rental-hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: #ffd93d;
    margin-bottom: 2rem;
    font-weight: 300;
}

.rental-hero-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.hero-thank-you {
    font-size: 1rem;
    color: #ff6b9d;
    max-width: 650px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem;
    background: rgba(255, 22, 84, 0.1);
    border-left: 4px solid #ff1654;
    border-radius: 8px;
    line-height: 1.7;
    font-style: italic;
}

/* Responsive Rental Hero */
@media (max-width: 768px) {
    .amaya-rental-hero {
        height: auto;
        min-height: 60vh;
        padding: 4rem 1rem;
    }

    .amaya-rental-hero h1 {
        font-size: 2.5rem;
    }

    .rental-hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .rental-hero-description {
        font-size: 1rem;
    }

    .hero-thank-you {
        font-size: 0.95rem;
        padding: 1.2rem 1.5rem;
    }
}

/* --- VENUE WIDGET NEW STYLES --- */

.amaya-venue-container {
    color: #ffffff;
}

/* Exclusive Section */
.exclusive-section {
    position: relative;
    padding: 5rem 20px;
    overflow: hidden;
    background: #0a0e27;
    /* Fallback */
}

.exclusive-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.exclusive-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.exclusive-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.exclusive-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.exclusive-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #ff1654 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* What Makes Us Unique */
.unique-section {
    background: linear-gradient(180deg, #1a1d3a 0%, #0a0e27 100%);
    padding: 5rem 20px;
    position: relative;
    overflow: hidden;
}

.unique-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 22, 84, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.unique-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.unique-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.unique-content .subtitle {
    color: #ff1654;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.unique-text {
    font-size: 1.3rem;
    color: #e0e0e0;
    line-height: 2;
    padding: 2.5rem;
    background: rgba(26, 29, 58, 0.6);
    border-radius: 15px;
    border: 2px solid rgba(255, 22, 84, 0.2);
    position: relative;
}

.unique-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 6rem;
    color: rgba(255, 22, 84, 0.3);
    font-family: 'Playfair Display', serif;
}

/* Section Title */
.section-title {
    text-align: center;
    padding: 5rem 20px 3rem;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-title .subtitle {
    color: #ff1654;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* Ideal Activities Section */
.ideal-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1d3a 100%);
    padding: 5rem 20px;
}

.ideal-content {
    max-width: 1100px;
    margin: 0 auto;
}

.ideal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.ideal-content .subtitle {
    text-align: center;
    color: #ff1654;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

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

.activity-item {
    background: rgba(26, 29, 58, 0.5);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    border-left: 4px solid #ff1654;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.activity-item:hover {
    background: rgba(26, 29, 58, 0.8);
    transform: translateX(10px);
    border-left-color: #ffd93d;
}

.activity-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.activity-item span {
    color: #e0e0e0;
    font-size: 1.05rem;
}

/* Floor Plans Section */
.floorplans-section {
    background: linear-gradient(180deg, #1a1d3a 0%, #0a0e27 100%);
    padding: 5rem 20px;
}

.floorplans-content {
    max-width: 1200px;
    margin: 0 auto;
}

.floorplans-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.floorplans-content .subtitle {
    text-align: center;
    color: #ff1654;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

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

.floorplan-card {
    background: linear-gradient(135deg, #1a1d3a 0%, #0f1229 100%);
    border: 2px solid rgba(255, 22, 84, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.floorplan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 22, 84, 0.6);
    box-shadow: 0 20px 40px rgba(255, 22, 84, 0.2);
}

.floorplan-image {
    width: 100%;
    height: 350px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid rgba(255, 22, 84, 0.2);
}

.floorplan-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.floorplan-image .img-placeholder {
    font-size: 4rem;
    color: #ccc;
}

.floorplan-info {
    padding: 2rem;
}

.floorplan-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.floorplan-info p {
    color: #b0b0b0;
    line-height: 1.9;
    font-size: 1rem;
}

.floorplan-info strong {
    color: #ff6b9d;
    font-weight: 600;
}

/* Events Grid */
.events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.event-card {
    background: linear-gradient(135deg, #1a1d3a 0%, #0f1229 100%);
    border: 2px solid rgba(255, 22, 84, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff1654 0%, #ffd93d 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 22, 84, 0.6);
    box-shadow: 0 20px 40px rgba(255, 22, 84, 0.2);
}

.event-card:hover::before {
    transform: scaleX(1);
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff1654 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ff6b9d;
    letter-spacing: 2px;
    font-weight: 600;
}

.event-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.event-card li {
    padding: 0.6rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.event-card li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #ff1654;
    font-weight: bold;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(180deg, #0a0e27 0%, #1a1d3a 100%);
    padding: 5rem 20px;
}

.gallery-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, #2a1a3a 0%, #1a1d3a 100%);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 22, 84, 0.4) 0%, rgba(255, 217, 61, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1d3a 0%, #2a1a3a 100%);
    padding: 5rem 20px;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #ff1654 0%, #ff6b9d 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 22, 84, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 22, 84, 0.5);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #ff1654;
    border: 2px solid #ff1654;
}

.btn-secondary:hover {
    background: rgba(255, 22, 84, 0.1);
    transform: translateY(-3px);
    color: #ff1654;
}

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

    .exclusive-content h2,
    .unique-content h2,
    .section-title h2,
    .ideal-content h2,
    .floorplans-content h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .unique-text {
        font-size: 1.1rem;
        padding: 2rem 1.5rem;
    }

    .activities-grid,
    .floorplans-grid,
    .events-container {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ── LA OBRA DE AMAYA WIDGET ── */
.amaya-obra-container {
    --magenta: #FF1A7A;
    --gold: #C9A84C;
    --dark: #0A0A0F;
    --surface: #13131C;
    --text: #D8D6CE;
    --muted: #6B6970;
}

.obra-intro {
    max-width: 780px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.obra-intro__label {
    font-family: 'Lato', sans-serif;
    font-size: .7rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--magenta);
    margin-bottom: 1.5rem;
}

.obra-intro__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 2.5rem;
}

.obra-intro__rule {
    width: 48px;
    height: 1px;
    background: var(--magenta);
    margin: 0 auto 2.5rem;
}

.obra-intro__quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.85;
    color: rgba(216, 214, 206, .7);
    margin-bottom: 1.2rem;
}

.obra-intro__cite {
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
}

.obra-intro__body {
    margin-top: 2.5rem;
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(216, 214, 206, .6);
}

.disciplines {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 2rem 6rem;
}

.disc-item {
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.disc-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.disc-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.8rem 0;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    cursor: pointer;
    text-align: left;
}

.disc-trigger__num {
    font-family: 'Playfair Display', serif;
    font-size: .8rem;
    color: var(--magenta);
    min-width: 28px;
    opacity: .8;
}

.disc-trigger__name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: #fff;
    flex: 1;
    transition: color .25s;
}

.disc-trigger__icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: .85rem;
    flex-shrink: 0;
    transition: border-color .25s, color .25s, transform .35s;
}

.disc-item.open .disc-trigger__name {
    color: var(--magenta);
}

.disc-item.open .disc-trigger__icon {
    border-color: var(--magenta);
    color: var(--magenta);
    transform: rotate(45deg);
}

.disc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out, padding 0.35s ease-in-out, opacity 0.3s;
    opacity: 0;
    padding: 0 0 0 3.4rem;
    pointer-events: none;
}

.disc-item.open .disc-body {
    max-height: 1000px !important;
    opacity: 1 !important;
    padding: 0 0 2.5rem 3.4rem !important;
    pointer-events: auto !important;
}

.disc-body__text {
    font-size: .98rem;
    line-height: 1.9;
    color: rgba(216, 214, 206, .62);
    max-width: 640px;
    margin-bottom: 1.6rem;
}

.disc-body__quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: .97rem;
    line-height: 1.85;
    color: rgba(216, 214, 206, .78);
    padding-left: 1.4rem;
    border-left: 1px solid var(--gold);
    max-width: 600px;
    margin-bottom: 1rem;
}

.disc-body__cite {
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    padding-left: 1.4rem;
}

.disc-body__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.6rem;
}

.tag {
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: .3rem .85rem;
}