@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
*{
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}
body{
    position: relative;
    font-family: 'Roboto', sans-serif;
}
@media screen and (max-width: 1400px) {
    html,body{
        font-size: 12px;
    }   
}
/* Perfil */
.perfil{
    height: 100vh;
    padding: 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
}
.perfil-img-container{
    background-color: green;
    height: 25rem;
    width: 25rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
}
    .perfil-img{
        height: 160%;
        width: 160%;
        object-fit: cover;
        object-position: -15rem -10rem;
    }

.perfil-texto-container{
    text-align: center;
}
    .perfil-texto-container h1{
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }
    .perfil-texto-container h2{
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .perfil-texto{
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .btn{
        color: #fff;
        cursor: pointer;
        font-size: 1.5rem;
        background: linear-gradient(to right, #f2984a, #f2c84c);
        background-color: #f2994a;
        padding: 0.5rem 1rem;
        border-radius: 0.2rem;
        border: none;
        box-shadow: 0 0 2px #000;
    }
    .btn-secondary{
        color: #fff;
        cursor: pointer;
        font-size: 1.5rem;
        background-color: #333;
        padding: 0.5rem 1rem;
        border-radius: 0.2rem;
        border: none;
        box-shadow: 0 0 2px #000;
    }
    .btn:hover{
        background: #f2994a;
        transform: translateY(5%);
        transition-duration: 0.2s;
    }
    .btn-secondary:hover{
        transform: translateY(5%);
        transition-duration: 0.2s;
    }
    .btn a,.btn-secondary a{
        text-decoration: none;
        color: unset;
    }
/* Perfil Responsive */
@media screen and (max-width: 800px) {
    .perfil{
        height: unset;
    }
    .perfil-img-container{
        height: 15rem;
        width: 15rem;
    }
    .perfil-img{
        height: 160%;
        width: 160%;
        object-position: -9rem -7rem;
    }
    .perfil-texto-container{
        width: 100%;
    }
}
/* Fin Perfil */

/* SERVICIOS */
.servicios{
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .servicios_lista{
        /* background-color:orange; */
        padding: 1rem;
        width: 100%;
    }
    .servicios_item{
        font-size: 1.3rem;
        margin: 0.5rem;
        background-color: #ff800055;
        cursor: pointer;
        box-shadow: 0 0 3px #000;
        transition: all 0.5s;
    }
    .servicios_item:hover{
        background-color: #ff80008b;
    }
    .servicios_item_titulo{
        padding: 1rem;
        text-align: center;
    }

    .servicios_item_contenido-container{
        background-color: #fff;
        box-shadow: 0 0 1px #000;
        padding: 0.5rem;
        display: none;
    }
    
    .servicios_item_contenido{
        transition: all 0.5s;
        background-color: #fff;
        height: 0;
        overflow: hidden;
        font-size: 1.3rem;
    }
        .servicios_item_contenido--selected{
            display: flex;
            align-items: center;
            height: 7rem;
            padding: 1rem;
        }
        .servicios_item_contenido ul li{
            list-style: disc;
            margin: 1rem;
            margin-left: 2rem;
        }
        .servicios_item_contenido img{
            max-width: 100%;
            padding: 1rem;
            display: block;
            margin: auto;
        }


/* SERVICIOS RESPONSIVE */
@media screen and (max-width: 800px) {
    .servicios{
        width: 100%;
    }
    .servicios_item_contenido--selected{
        height: scroll-height;
    }
    
}

/* FIN DE SERVICIOS */

/* GALERIA */
.galeria{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 35rem 50rem 35rem 50rem 35rem 35rem;
    padding: 0 5rem;
    gap: 1rem;
    padding-bottom: 3rem;
}
    .galeria-img-container{
        /* background: linear-gradient(to right, #4ca1af, #c4e0e5); */
    }
        .galeria-img{
            height: 100%;
            width: 100%;
            object-fit: cover;
            opacity: 80%;
        }
        .galeria-img:hover{
            opacity: 100%;
            transform: scale(1.035);
            transition-duration: 1s;
        }
.gi-span-1{
    grid-column: span 1;
}
.gi-span-2{
    grid-column: span 2;
}
.gi-span-3{
    grid-column: span 3;
}

/* GALERIA RESPONSIVE */
@media screen and (max-width: 800px) {
    .galeria{
        grid-template-columns: 1fr;
        grid-template-rows: unset;
        grid-auto-rows: 20rem;
        padding: 1rem;
    }
        .galeria-img-container{
        grid-column:unset;
        }
            .galeria-img{
                opacity: unset;
            }
            .galeria-img:hover{
                opacity: unset;
            }
}
/* FIN GALERIA */

/* SOBRE-MI */
.sobre-mi-container{
    padding: 3rem;
    padding-top: 0;
    text-align: center;
}

/* COMENTARIOS */


.comentarios-responsive{
    display: none;
}
.comentarios{
    display: flex;
    justify-content: space-evenly;
}
.comentarios-tarjeta{
    width: 25rem;
    box-shadow: 0px 0px 1px #000;
    padding: 1rem;
    border-radius: 1rem;
    margin: 1rem;
    display: flex;
    flex-direction: column;
}
.user-rating{
    text-align: left;
    margin-bottom: 1rem;
}
.star{
    color: orange;
    font-size: 2rem;
}
.comentarios-descripcion{
    padding: 0.5rem;
    flex-grow: 1;
}
.comentarios-autor{
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.comentarios-botones{
    display: flex;
    justify-content: center;
    padding: 1rem;
}
.comentarios-botones_btn{
    font-size: 1.2rem;
    margin: 0 0.5rem;
    padding: 0.5rem;
    background-color: orange;
    border: unset;
    cursor: pointer;
    border-radius: 0.4rem;
}
.comentarios-botones_btn:hover{
    background-color: #f2c84c;
}

/* COMENTARIOS RESPONSIVE */
@media screen and (max-width: 800px){

    .comentarios-responsive{
        display: unset;
    }
    .comentarios-screen{
        display: none;
    }

    .comentarios-container{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .comentarios{
        flex-direction: column;
        transition-duration:1s;
        align-items: center;
        justify-content: center;
    }
    .comentarios-tarjeta{
        width: 90%;
    }
    .desaparecer{
        opacity: 0;
    }

}

/* FIN DE COMENTARIOS */


/* CONTACTO */
.informacionDeContacto{
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    border: 1px solid #0003;
    margin-bottom: 5rem;
}
    .IDC_top{
        width: 100%;
        display: flex;
    }
    .IDC_formulario{
        padding: 0.5rem;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        width: 50%;
    }
        .field{
            padding: 1rem;
            display: flex;
            flex-direction: column;
        }
            .field input{
                border: none;
                border-bottom: 1px solid #ff8000;
                padding: 0.2rem;
            }
            .field input:active,
            .field input:hover,
            .field input:focus{
                outline: none;
            }

        .IDC_formulario .submit-button{
            background: #ffa50099;
            cursor: pointer;
            height: 2rem;
            width: 80%;
            margin: auto;
            border: none;
            box-shadow: 0 0 3px #000;
        }
    
    .IDC_contacto{
            background: #ffa50099;
            border: 1px solid #000;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 50%;
            padding: 1rem;
        }
            .IDC_contacto div{
                padding: 0.5rem;
            }

    .IDC_mapa{
        width: 100%;
        padding: 2rem;
    }
        .IDC_iframe{
            width: 100%;
            height: 15rem;
        }
/* CONTACTO RESPONSIVE */
@media screen and (max-width: 800px){

    .IDC_top{
        flex-direction: column;
    }
    .IDC_formulario{
        padding: 1rem;
        width: 100%;
        order: 2;
    }
    .IDC_contacto{
        width: 100%;
        order: 1;
    }

}
/* FIN DE CONTACTO */

/* OTROS */
.separador{
    padding: 3rem;
    text-align: center;
    font-size: 2rem;
    color: #000;
}

/* FIN OTROS */
.float{
    padding: 6px;
    position: fixed;
    width: 70px;
    height: 70px;
    background-color: #25d366;
    bottom: 40px;
    right: 40px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 3px #999 ;
    z-index: 999;
}

.fa-whatsapp{
    font-size: 57px;
}
.float:hover{
    background-color: #2aea71;
}
/* ANIMACIONES */
.deslizarIzquierda{
    animation-name: deslizarIzquierda;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
}
.aparecer{
    animation-name: aparecer;
    animation-duration: 0.8s;
}
@keyframes deslizarIzquierda {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes aparecer {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 100;
    }
}



/* informacion de contacto-formulario y maps */

.informaciondeContacto{
    display: flex;
    justify-content: space-around;
}

.caja2{
    border: 30px;
    color: black;
    font-family: 'Courier New', Courier, monospace;
    text-align:center;
}

/* Modal */
#modal, #modal2{
    display: none;
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1000;
    background-color: #0009;
    justify-content: center;
    align-items: center;
}
.modal-content{
    height: 30%;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: 0px 0px 1px #000;
}
#modal p{
    color: #000;
    font-size: 2rem;
    margin-bottom: 2rem;
}
#modal2 p{
    color: #000;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.modal-button-container{
    display: flex;
}
#modal button{
    padding: 0.5rem 3rem;
}
#modal2 button{
    padding: 0.5rem 3rem;
    margin: 1rem;
}
