body {
    margin: 0;
    font-family: sans-serif;
}

#panorama {
    width: 100vw;
    height: 100vh;
}

/* 1. CLASE BASE: Define la fuente y el estilo general para todos los íconos */
.icono-material {
    font-family: 'Material Symbols Outlined' !important;
    font-size: 35px !important;
    /* Tamaño del ícono */
    color: white !important;
    /* Color del ícono */
    cursor: pointer;

    /* Un pequeño sombreado negro para que resalte en fondos claros */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);

    /* Centrado */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px !important;
    height: 40px !important;
}

/* 2. CLASES ESPECÍFICAS: Aquí llamas al ícono específico por su nombre */
.icono-auto::before {
    content: 'stat_1';
}

.icono-volver::before {
    content: 'arrow_back';
}

.assistant_navigation::before {
    content: 'assistant_navigation';
    /* Otro ícono */
}

/* Ícono de Información */
.info::before {
    content: 'info';
}

/* ============================================================== */
/* ESTILOS PARA EL CUADRO DE TEXTO (MODAL) DE INFORMACIÓN         */
/* ============================================================== */
#modal-empresa {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    /* Fondo oscurecido */
    z-index: 9999;
    /* Asegura que esté por encima del visor 360 */
    /* display: flex se activa desde Javascript al hacer clic */
    justify-content: center;
    align-items: center;
}

.modal-contenido {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 80%;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    text-align: center;
    animation: fadeIn 0.3s ease-out;
    /* Pequeña animación al abrir */
}

.modal-contenido h2 {
    margin-top: 0;
    color: #333;
}

.modal-contenido p {
    color: #555;
    line-height: 1.6;
}

/* Botón para cerrar (la 'X') */
.cerrar-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}

.cerrar-modal:hover {
    color: #e74c3c;
}

/* Animación suave para que el cuadro aparezca de golpe */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================== */
/* ESTILOS DE LA INFORMACIÓN DE LA EMPRESA DENTRO DEL MODAL       */
/* ============================================================== */
.info-empresa {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    text-align: left;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #f4f6f9;
    /* Fondo gris claro suave */
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 5px solid #2c3e50;
    /* Color corporativo oscuro */
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.info-item .material-symbols-outlined {
    color: #2c3e50;
    font-size: 30px;
}

.info-item strong {
    color: #111;
    font-size: 1.05em;
    display: block;
    margin-bottom: 3px;
}

.info-item div {
    color: #444;
    line-height: 1.5;
    font-size: 0.95em;
}

.info-item a {
    color: #2980b9;
    text-decoration: none;
    font-weight: 500;
}

.info-item a:hover {
    text-decoration: underline;
    color: #1a5276;
}