/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    color: #5D4037;
    background-color: #FAF9F6;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Tipografías */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.btn-galeria-completa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #8D6E63 0%, #6D4C41 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(109, 76, 65, 0.3);
}

.btn-galeria-completa:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(109, 76, 65, 0.4);
}

.titulo-seccion {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #6D4C41;
    position: relative;
font-family: 'Pinyon Script', cursive;
}

.titulo-seccion::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #D7CCC8;
}

/* Sección 1: Portada */
.seccion-portada {
    height: 100vh;
    width: 100%;
    background-image: url("../img/fondo.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enllassos {
    text-decoration: none;
}

.textjustificat {
    text-align: justify;
    padding-top: 10px;
}

.filtro-portada {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(93, 64, 55, 0.3);
    backdrop-filter: blur(2px);
}

.contenido-portada {
    text-align: center;
    z-index: 2;
    color: white;
    padding: 20px;
    animation: aparecer 1.5s ease-out;
}

@keyframes aparecer {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.nombres {
    font-family: 'Pinyon Script', cursive;
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.fecha {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px;
    font-family: 'Pinyon Script', cursive;
    font-size: 1.8rem;
    margin-top: 20px;
}

.dia {
    font-size: 4rem;
    font-weight: bold;
    font-family: 'Pinyon Script', cursive;

}

.mes, .anio {
    font-size: 1.8rem;
    font-weight: 300;
    font-family: 'Pinyon Script', cursive;

}

.flecha-abajo {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: flotar 2s infinite ease-in-out;
}

@keyframes flotar {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.flecha-abajo i {
    font-size: 2rem;
    color: white;
    opacity: 0.8;
}

/* Sección 2: Nuestra Historia */
.seccion-historia {
    padding: 40px 20px;
    background-color: #FFF;
}

#fotojunts {
    width: 100%;;
}

.contenedor-historia {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.texto-historia {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.texto-historia h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #795548;
}

.texto-historia p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5D4037;
}

.foto-historia {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.marco-foto {
    width: 350px;
    height: 450px;
    border: 15px solid #F5F5F5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    overflow: hidden;
}

.marco-foto2 {
    width: 350px;
    height: 450px;
    border: 15px solid #F5F5F5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    overflow: hidden;
}

.imagen-historia {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.imagen-historia:hover {
    transform: scale(1.05);
}

/* Sección 3: Frase Destacada */
.seccion-frase {
    padding: 40px 20px;
    text-align: center;
    background-image: url("../img/pluma.jpg");
    background-size: cover;
    background-position: center;
}



.contenedor-frase {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.comillas {
    font-size: 1rem;
    color: #6D4C41;
    margin-bottom: 10px;
}

.texto-frase {
    font-family: 'Pinyon Script', cursive;
    font-size: 3rem;
    color: #6D4C41;
    margin-bottom: 20px;
    line-height: 1.3;
}

.autor-frase {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: #8D6E63;
}

.autor-frase2 {
    padding-top: 10px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: #8D6E63;
    text-align: center;
}

/* Sección 4: Actividades del Evento */
.seccion-actividades {
    padding: 40px 20px;
    background-color: #FFF;
}

.tabla-actividades {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.celda-actividad {
    text-align: center;
    padding: 30px 20px;
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #F5F5F5;
}

.celda-actividad:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icono-actividad {
    font-size: 3rem;
    color: #A1887F;
    margin-bottom: 20px;
}

.celda-actividad h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #5D4037;
}

.hora {
    font-weight: bold;
    color: #8D6E63;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.celda-actividad p {
    color: #795548;
    line-height: 1.6;
}

/* Sección 5: Galería Colaborativa */
.seccion-galeria {
    padding: 40px 20px;
    background-color: #F5F5F5;
}

.subtitulo-galeria {
    text-align: center;
    font-size: 1.2rem;
    color: #8D6E63;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contenedor-galeria {
    max-width: 1000px;
    margin: 0 auto 50px;
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.area-subida {
    border: 2px dashed #D7CCC8;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
    transition: border-color 0.3s ease;
}

.area-subida:hover {
    border-color: #A1887F;
}

.instrucciones-subida {
    margin-bottom: 20px;
}

.instrucciones-subida i {
    font-size: 3rem;
    color: #BCAAA4;
    margin-bottom: 15px;
}

.instrucciones-subida p {
    color: #8D6E63;
    margin-bottom: 5px;
}

.formato-info {
    font-size: 0.9rem;
    color: #A1887F;
}

.btn-subir {
    background-color: #8D6E63;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.btn-subir:hover {
    background-color: #795548;
}

.vista-previa {
    min-height: 150px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    color: #A1887F;
}

.controles-galeria {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-galeria {
    background-color: #BCAAA4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Raleway', sans-serif;
}

.btn-galeria:hover {
    background-color: #A1887F;
}

.galeria-fotos {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.fotos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.fotos-header h3 {
    font-size: 1.8rem;
    color: #5D4037;
}

.filtros {
    display: flex;
    gap: 15px;
}

.filtro {
    padding: 5px 15px;
    border-radius: 20px;
    background-color: #F5F5F5;
    color: #8D6E63;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filtro:hover, .filtro.activo {
    background-color: #8D6E63;
    color: white;
}

.grid-fotos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    min-height: 200px;
}

.mensaje-vacio {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #BCAAA4;
}

.mensaje-vacio i {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Sección 6: Mapa e Información */
.seccion-mapa {
    padding: 40px 20px;
    background-color: #FFF;
}

.contenedor-mapa {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.info-ubicaciones {
    flex: 1;
    min-width: 300px;
}

.ubicacion {
    background-color: #F5F5F5;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #8D6E63;
}

.ubicacion h3 {
    color: #5D4037;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ubicacion p {
    color: #795548;
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn-mapa {
    display: inline-block;
    background-color: #8D6E63;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn-mapa:hover {
    background-color: #795548;
}

.mapa-embed {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-color: #F5F5F5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8D6E63;
}

.mapa-placeholder {
    text-align: center;
}

.mapa-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

/* Sección 7: Confirmación de Asistencia */
.seccion-confirmacion {
    padding: 40px 20px;
    background-color: #F5F5F5;
}

.form-confirmacion {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.grupo-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.grupo-form input, .grupo-form select, .grupo-form textarea {
    flex: 1;
    min-width: 250px;
    padding: 15px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: #5D4037;
    background-color: #FAF9F6;
}

.grupo-form input:focus, .grupo-form select:focus, .grupo-form textarea:focus {
    outline: none;
    border-color: #8D6E63;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #5D4037;
}

.checkbox input {
    width: auto;
    min-width: auto;
}

.btn-confirmar {
    display: block;
    width: 100%;
    background-color: #8D6E63;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    margin-top: 20px;
}

.btn-confirmar:hover {
    background-color: #795548;
}

.mensaje-exito {
    max-width: 800px;
    margin: 30px auto 0;
    background-color: #E8F5E9;
    color: #2E7D32;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.mensaje-exito i {
    font-size: 2rem;
    margin-bottom: 10px;
}


/* Sección 9: Footer */
.footer {
    background-color: #5D4037;
    color: #D7CCC8;
    padding: 50px 20px;
    text-align: center;
}

.contenido-footer {
    max-width: 800px;
    margin: 0 auto;
}

.hashtag {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #EFEBE9;
}

.hashtag i {
    margin-right: 10px;
}

.agradecimiento {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #EFEBE9;
}

.fecha-footer {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #D7CCC8;
    text-decoration: none;
}

.iconos-footer {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.iconos-footer a {
    color: #D7CCC8;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.iconos-footer a:hover {
    color: #EFEBE9;
}

/* Responsive - CORREGIDO */
@media (max-width: 768px) {
    .nombres {
        font-size: 3.5rem;
    }
    
    .seccion-portada {
        background-attachment: scroll; /* Cambiado de fixed a scroll */
        background-position: center;
    }
    
    .fecha {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .texto-historia.izquierda, .texto-historia.derecha {
        order: 2;
    }
    
    .foto-historia {
        order: 1;
    }
    
    .contenedor-historia {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

.texto-historia {
        display: flex;
        flex-direction: column;
    }
    
    .marco-foto {
        margin-bottom: 15px;
        order: -1; /* La imagen siempre arriba */
    }

   #fotojunts {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .texto-frase {
        font-size: 2.2rem;
    }
    
    .fotos-header {
        justify-content: center;
    }
    
    .grupo-form {
        flex-direction: column;
    }
    
    .grupo-form input, .grupo-form select, .grupo-form textarea {
        min-width: 100%;
    }
    .texto-historia h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .texto-historia p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* ===== BARRA DE NAVEGACIÓN FIJA ===== */
.navbar-fija {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(93, 64, 55, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 2px solid #D7CCC8;
    transition: all 0.3s ease;
}

.nav-contenedor {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-botones {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-boton {
    background: transparent;
    border: 2px solid #EFEBE9;
    color: #EFEBE9;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-boton:hover {
    color: #5D4037;
    border-color: #EFEBE9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 235, 233, 0.3);
}

.nav-boton:active {
    transform: translateY(0);
}

/* Contador */
.nav-contador {
    display: flex;
    gap: 20px;
    background: rgba(239, 235, 233, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(215, 204, 200, 0.3);
}

.contador-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 55px;
}

.contador-item span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #EFEBE9;
    line-height: 1;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.contador-label {
    font-size: 0.7rem;
    color: #D7CCC8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Ajuste para el contenido (evitar que quede oculto bajo la barra fija) */
body {
    padding-top: 0px;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-contenedor {
        flex-direction: column;
        gap: 12px;
    }
    
    .nav-botones {
        justify-content: center;
        width: 100%;
    }
    
    .nav-boton {
        flex: 1 1 auto;
        text-align: center;
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .nav-contador {
        width: 100%;
        justify-content: center;
    }
    
    body {
        padding-top: 0px;
    }
}

@media (max-width: 576px) {
    .nav-botones {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-boton {
        width: 100%;
    }
    
    .contador-item span:first-child {
        font-size: 1.4rem;
    }
    
    body {
        padding-top: 0px;
    }
}
/* ===== REPRODUCTOR DE AUDIO FLOTANTE ===== */
.audio-flotante {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}

.btn-audio {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8D6E63 0%, #6D4C41 100%);
    border: 3px solid #EFEBE9;
    color: #EFEBE9;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(93, 64, 55, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: pulso-suave 2s infinite ease-in-out;
}

.btn-audio:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(93, 64, 55, 0.6);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.btn-audio.activo {
    background: linear-gradient(135deg, #6D4C41 0%, #5D4037 100%);
    color: #FFFFFF;
    border-color: #FFFFFF;
}

@keyframes pulso-suave {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(93, 64, 55, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(93, 64, 55, 0.7);
    }
}

/* Ajuste responsive */
@media (max-width: 768px) {
    .audio-flotante {
        bottom: 20px;
        left: 20px;
    }
    
    .btn-audio {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}


/* ===== BOTONES DE CONTACTO FLOTANTES ===== */

.contactos-extra {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    gap: 12px;
}

.contacto-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8D6E63 0%, #6D4C41 100%);
    border: 3px solid #EFEBE9;
    color: #EFEBE9;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(93, 64, 55, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: pulso-suave 2s infinite ease-in-out;
}

.contacto-btn span {
    font-size: 0.65rem;
    margin-top: 4px;
}

.contacto-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(93, 64, 55, 0.6);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.contacto-btn:active {
    background: linear-gradient(135deg, #6D4C41 0%, #5D4037 100%);
    border-color: #FFFFFF;
    color: #FFFFFF;
}


@media (max-width: 768px) {
    
    .contacto-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .contacto-btn span {
        font-size: 0.6rem;
    }

.fecha-footer {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #D7CCC8;
    text-decoration: none;
}
}


/* =========================
   POPUP MINIJUEGO
========================= */
.popup-minijuego-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.popup-minijuego-overlay.activo {
    opacity: 1;
    visibility: visible;
}

.popup-minijuego-box {
    position: relative;
    width: 100%;
    max-width: 430px;
    background: #fffaf7;
    border-radius: 22px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
    border: 2px solid #efebe9;
}

.popup-minijuego-box h2 {
    margin: 0 0 12px;
    font-family: 'Playfair Display', serif;
    color: #6D4C41;
    font-size: 1.8rem;
}

.popup-minijuego-box p {
    margin: 8px 0;
    color: #5d4037;
    font-family: 'Raleway', sans-serif;
    line-height: 1.5;
}

.popup-minijuego-botones {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 22px;
}

.popup-minijuego-btn {
    border: none;
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.popup-minijuego-btn:hover {
    transform: translateY(-2px);
}

.popup-minijuego-btn-jugar {
    background: linear-gradient(135deg, #8D6E63 0%, #6D4C41 100%);
    color: #fff;
}

.popup-minijuego-btn-cerrar {
    background: #efebe9;
    color: #6D4C41;
}

.popup-minijuego-cerrar {
    position: absolute;
    top: 10px;
    right: 14px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: #8D6E63;
    cursor: pointer;
    line-height: 1;
}


