/* ====================================
   HERO MUSEO - Estilos Principales
   ==================================== */

:root {
    --color-primary: #dbd262;
    --color-secondary: #919396;
    --color-dark: #262222;
    --overlay-opacity: 0.3;
}

.hero-museo-container {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

/* Overlay con opacidad dinámica */
.hero-museo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, var(--overlay-opacity));
    z-index: 1;
}

/* Contenido principal */
.hero-museo-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 80px;
    gap: 80px;
    min-height: inherit;
}

/* Wrapper de texto */
.hero-museo-text-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
}

/* Título */
.hero-museo-title {
    font-family: 'Arial Black', 'Arial Bold', sans-serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--color-dark);
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Subtítulo */
.hero-museo-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-dark);
    margin: 0 0 30px 0;
    max-width: 500px;
}

/* Botón */
.hero-museo-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-dark);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--color-dark);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-museo-button:hover {
    background-color: var(--color-primary);
    color: var(--color-dark);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Logo/Elemento gráfico */
.hero-museo-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.hero-museo-logo img {
    width: 300px;
    height: auto;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Elementos decorativos */
.hero-museo-decorative-elements {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-museo-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-museo-dot-primary {
    background-color: var(--color-primary);
    width: 60px;
    height: 60px;
    opacity: 1;
}

.hero-museo-dot:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 1024px) {
    .hero-museo-container {
        min-height: 500px;
    }

    .hero-museo-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 40px;
    }

    .hero-museo-title {
        font-size: 48px;
    }

    .hero-museo-subtitle {
        max-width: 100%;
    }

    .hero-museo-logo {
        min-height: 250px;
    }

    .hero-museo-decorative-elements {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-museo-container {
        min-height: 400px;
    }

    .hero-museo-content {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 20px;
    }

    .hero-museo-title {
        font-size: 36px;
    }

    .hero-museo-subtitle {
        font-size: 16px;
    }

    .hero-museo-button {
        padding: 12px 30px;
        font-size: 12px;
    }

    .hero-museo-logo {
        min-height: 200px;
    }

    .hero-museo-logo img {
        width: 200px;
    }

    .hero-museo-dot {
        width: 30px;
        height: 30px;
    }

    .hero-museo-dot-primary {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-museo-container {
        min-height: 300px;
        background-attachment: scroll;
    }

    .hero-museo-content {
        padding: 15px;
    }

    .hero-museo-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-museo-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-museo-button {
        padding: 10px 20px;
        font-size: 11px;
    }

    .hero-museo-logo img {
        width: 150px;
    }

    .hero-museo-decorative-elements {
        display: none;
    }
}

/* ====================================
   EFECTOS ESPECIALES
   ==================================== */

/* Animación de entrada */
.hero-museo-container {
    animation: fadeInUp 0.8s ease;
}

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

/* Efecto de parallax suave */
@media (prefers-reduced-motion: no-preference) {
    .hero-museo-container {
        background-attachment: fixed;
    }
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
    .hero-museo-logo img,
    .hero-museo-button,
    .hero-museo-dot {
        animation: none;
        transition: none;
    }
}

/* Modo oscuro */
@media (prefers-color-scheme: dark) {
    .hero-museo-container {
        --overlay-opacity: 0.5;
    }
}
