
/* Pantalla 2 */

.pantalla2 {
    height: 100dvh;
    scroll-snap-align: start;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: #ee7752; */
}
.pantalla2 h2{
    display: flex;
    

}

.head1 {
    width: 100%;
    height: 100px;
    background-color:#ee7752 ;
    display: flex;
    justify-content: center;
}
.perfil{
    display: flex;
    flex-direction: column;
    background-image: url("../media/01perfil.png"); 
    background-repeat: no-repeat;
    background-size: contain; /* o 'contain' según el caso */
    background-position: center;  
    width: 50%;
    height: 50%;
    align-items: center;

}
.perfil2{
    display: flex;
    background-color: #ee765200;
    width: 30%;
    height: 32%;

}
.perfil:hover{
    background-image: url("../media/02perfil.png");
}
.i2{
    background-color: #ee7752;
    width: 10%;
    height: 10%;
    border-radius: 5em;
}
.i2:hover{
    background-color: #ff3c00;
}

#personalInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ee7752;
    color: white;
    width: 50%;
    height: 50%;
    border-radius: 1em;
    padding: 0.5em;
    overflow: hidden;

}

.ContactoDiv {
    position: absolute;
    top: 0;
    left: 0;
    display: none; /* Inicialmente oculto */
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.contactoDivInt {
    position: fixed;
    width: 55%; /* Tamaño final */
    height: 50%; /* Tamaño final */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.158);
    background-color: rgba(255, 255, 255, 0.082);
    backdrop-filter: blur(30px);
    border-radius: 1em;
    transform-origin: top right;
    transition: all 0.5s ease, opacity 0.5s ease; /* Añadimos opacity a la transición */
    opacity: 1; /* Opacidad por defecto cuando está visible */
}

.contactoDivInt.hidden {
    opacity: 0; /* Opacidad 0 cuando está oculto */
    pointer-events: none;
}

.closeImg{
    width: 25px;
    top: 5em;
    left:5em;
    transition: 0.3s ease;
    cursor: pointer;
    z-index: 3;
}

.closeImg:hover{
    animation-name: close;
    animation-timing-function: ease-in-out;
    animation-duration: 0.3s;
}
@keyframes close {
    50%{
        transform: scale(1.4)
    }
    100%{ transform:scale(1) rotate(180deg); 
    }  
}
.closeImg:active{
    transform: scale(0.7);
}
.contactoDivInt2 {
    display: flex;
    flex-direction: column;  
    justify-content: center; 
    align-items: center;     
}

.contactoDivInt2 h3 {
    text-align: center;    
    font-size: 30px;
}

.contactoDivInt2 p {
    text-align: center;      
    font-size: 20px;
}
.whatsUp {
    display: flex;
    justify-content: center; 
    align-items: center;     
    width: 40%;           
    padding: 20px;          
    height: 100%;           
}