@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');



body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}


.layout {
display: flex;
flex-direction: column;
height: 100vh;
}



.contenedor {
    position: relative;
    width: 100%;
    height: 75%;
    overflow:hidden; /* Evita el scroll en el contenedor */
    /* background: linear-gradient(135deg, #e5fff9, #acb8ff); */
    background: linear-gradient(130deg, #e5fff9, #f8fff9,#ccf4ff,  #acb8ff);
}     



.imagen {
    display: none;
    position: absolute;
    width: 150px; /* Ajusta el tamaño de la imagen según tus necesidades */
    border-radius: 10px; /* Ajusta el valor para redondear los bordes */
    transform: scale(0);
    transition: transform 0.3s ease-in-out; /* Efecto de entrada y salida */
}

.imagen.mostrar {
    display: block;
    transform: scale(1);
}

/* Botones en la parte superior izquierda */
.botones-superior-izquierda {
position: absolute;
top: 20px; /* Separar un poco más de la esquina superior */
left: 20px; /* Separar un poco más de la esquina izquierda */
display: flex;
gap: 10px;
}



.logo img {
    width: 100px; /* Ajustar el tamaño del logo */
    height: auto; /* Ajustar el tamaño del logo */
}



/* Botón circular */
.boton-circular {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 60px;
    background-color: #033F85; /* Azul claro */
    border: none;
    border-radius: 50px;
    cursor: pointer;
    z-index: 10; /* Asegura que el botón esté al frente */
    font-size: 30px; /* Tamaño de fuente */
    color: white; /* Color del texto */
    display: flex;
    align-items: center;
    justify-content: center;
}

.boton-circular:hover {
    background-color: #002e5a; /* Azul oscuro */
}


/* Media query para dispositivos móviles */
@media (max-width: 600px) {


    .imagen {
    width: 120px; /* Ajusta el tamaño de la imagen para móviles */
    border-radius: 5px; /* Ajusta el valor para redondear los bordes en móviles*/
    }
    .boton-circular {
        width: 100px; /* Tamaño más pequeño para móviles */
        height: 50px; /* Tamaño más pequeño para móviles */
        font-size: 14px; /* Tamaño de fuente más pequeño */
    }

    .contenedor{
        touch-action: none;
    }
}

 /* Media query para tablets */
@media (min-width: 601px) and (max-width: 1024px) {
    .boton-circular {
      width: 90px; /* Tamaño intermedio para tablets */
      height: 45px; /* Tamaño intermedio para tablets */
      font-size: 15px; /* Tamaño de fuente intermedio */
    }   

    .contenedor{
        touch-action: none;
    }
}

.mobile-legend {
    display: none; /* Oculto por defecto */
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    /* background-color:#c1b370; */
    color: #00008B;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Raleway'; /* Fuente llamativa */
    z-index: 1000;
}

/* Mostrar solo en dispositivos móviles */
@media (max-width: 768px) {
    .mobile-legend {
        display: block;
    }
    .contenedor{
        position: relative;
    }
}
