
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: #1a1a1a; height: 100vh; display: flex; justify-content: center; align-items: center; font-family: sans-serif; overflow: hidden; }

    .map-container { position: relative; display: inline-block; }
    .map-image { display: block; max-width: 95vw; max-height: 95vh; border-radius: 12px; }


    .icono-extra {
        display: block;
        width: 100%;       /* Ocupa el 100% del contenedor hotspot2 */
        height: 100%;
        object-fit: contain;
        cursor: pointer;
        transition: transform 0.2s;

}
.icono-extra:hover {
    transform: scale(1.1);
}
    /* Estilo de las ondas */
.hotspot {
    position: absolute; width: 35px; height: 35px;
    background-color: transparent; cursor: pointer;
    transform: translate(-50%, -50%); z-index: 5;
    }
    .hotspot::after {
        content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        border: 3px solid rgba(255, 255, 255, 0.8);
        border-radius: 50%; animation: pulse 2s infinite;
    }

    .hotspot.visto {
        pointer-events: none; /* Desactiva los clics */
        opacity: 0.3;         /* Opcional: lo hace más transparente */
    }
    .hotspot.visto::after {
        display: none;        /* Elimina la animación de las ondas */
    }
    @keyframes pulse { 0% { transform: scale(0.3); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }

    /* Estilo del Modal */
    .modal-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.7); display: none;
        justify-content: center; align-items: center; z-index: 100;
    }
    .modal-content {
        background: white; padding: 25px; border-radius: 15px;
        width: 300px; text-align: center;
    }
    input[type="text"] { width: 100%; padding: 10px; margin: 15px 0; border: 1px solid #ccc; border-radius: 5px; }

    /* Estrellas */
    .stars { display: flex; flex-direction: row-reverse; justify-content: center; gap: 5px; margin-bottom: 20px; }
    .stars input { display: none; }
    .stars label { font-size: 25px; color: #ccc; cursor: pointer; }
    .stars input:checked ~ label, .stars label:hover, .stars label:hover ~ label { color: gold; }

    button { width: 100%; padding: 10px; background: #2ecc71; border: none; color: white; border-radius: 5px; cursor: pointer; font-weight: bold; }


.hotspot2 {
    position: absolute; 
    /* Ajusta el tamaño de este contenedor para definir el tamaño de la copa */
    width: 50vw; 
    
    max-width: 100px; 
    min-width: 30px;

    background-color: transparent; 
    transform: translate(-50%, -50%); 
    z-index: 5;
    display: none;
}

.oculta {
    display: none;
}