@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --white: #FFFFFF;
    --white-baner: rgba(245,245,245,.9);
    --orange: #F5BA48;
    --green: #4BF548;
    --black:  rgb(2,2,21);
}
*{
    margin: 0;
    padding: 0;
}
html {
  scroll-behavior: smooth;
}
body{
    background-color: black;
    overflow-x: hidden;
    max-width: 100vw;
    min-height: 100vh;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.footer{
    display: flex;
    align-items: center;
    width:100%;
    position: fixed;
    bottom: 1px;
    background-color: rgba(15, 15, 15, .3);
    font-size: 15px;
    margin: auto auto;
    padding: 5px 5px;
    z-index: 999;
}
.footer__redes{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    margin-left: auto;
}
.footer__redes a{
    margin: auto;
    color: white;
    transition: linear .3;
}
.footer__redes .fa-facebook-square:hover,
.footer__redes .fa-twitter:hover{
    color: #007bff;
}
.footer__redes .fa-instagram:hover{
    color:  #ffc107;
}
.footer__link{
    color: rgb(241,241, 241);

}
.footer__link a{
    color: rgb(221,221, 221);
}
 #panorama {
        width: 100vw;
        height: 100vh;
        z-index: -100;
    }
.cargado{
    z-index: 100 !important;
}
.custom-hotspot {
    display: block;
    height: 30px;
    width: 30px;
    /* El hotspot base queda fijo en la posición */
}

.custom-hotspot .pulse {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.7), rgba(255,255,255,0.2));
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 10px rgba(255,255,255,0.7), 0 0 20px rgba(255,255,255,0.4);
    transition: box-shadow 0.3s ease;
    animation: pulse 2s infinite;
    transform-origin: center center;
}

.custom-hotspot:hover .pulse {
    cursor: pointer;
    
    box-shadow: 0 0 15px rgba(0, 200, 255, 0.9), 0 0 30px rgba(0, 200, 255, 0.6);
    transition: .5s linear;
    opacity: .5;
}
.custom-hotspot--desactive{
  display: none;
}

.custom-exit {
              
    width: 20px;
    height: 20px;

}



.custom-exit::before{
    width: 100%;
    height: 100%;
    content: "⬆️";

    background: transparent; /* gris semitransparente como pulse */
    border-radius: 50%;       
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 10px rgba(255,255,255,0.7), 0 0 20px rgba(255,255,255,0.4);
    font-size: 24px;          
    color: rgba(255, 255, 255, 0.6); 
    animation: pulse 2s infinite; 
}
.custom-exit:hover {
    transition: .5s linear;
    opacity: .5;
    
}
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(120, 120, 120, 0.7), 0 0 20px rgba(100, 100, 100, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(150, 150, 150, 0.9), 0 0 40px rgba(130, 130, 130, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(120, 120, 120, 0.7), 0 0 20px rgba(100, 100, 100, 0.4);
    }
}

.a{
    display: inline-block;
    width: auto;
    text-decoration: none;
    margin: auto auto;
}



@media(max-width:768px){    
    .footer{
        height: 53px;
    }
}
@media(max-width:568px){
    .footer{
        height: 33px;
    }
    .footer__link{
        font-size: .65rem;

    }
}



/* === Extra pequeño: Celulares chicos (≤ 480px) === */
@media (max-width: 480px) {
 
}

/* === Pequeño: Celulares medianos (481px – 768px) === */
@media (min-width: 481px) and (max-width: 768px) {

}

/* === Mediano: Tablets (769px – 1024px) === */
@media (min-width: 769px) and (max-width: 1024px) {

}

/* === Grande: Laptops (1025px – 1440px) === */
@media (min-width: 1025px) and (max-width: 1440px) {

}

/* === Extra grande: Monitores grandes (1441px+) === */
@media (min-width: 1441px) {
 
}
