:root{
    --black: black; 
    --white: white; 
}

.nav{
    padding: 0 5%; 
    background-color: var(--black);
    margin-bottom: 50px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.center-h{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav__img{
    width: 150px;
    object-fit: cover; 
    margin: 15px 0; 
}

.nav__button{
    border: 2px solid var(--black); 
    padding: 10px 15px; 
    background-color: transparent;
    color: var(--white); 
}


.nav__button:hover{
    border: 2px solid var(--white);
    border-radius: 8px;
    transition: 0.5s all ease-in-out;
}

.footer{
    margin-top: 80px; 
    background-color: var(--black);
    color: var(--white); 
    padding: 70px 40px 50px; 
}

.footer p{
    margin: 0; 
}

.footer__containerImg{
    margin: 20px 0 15px; 
}

.footer__containerImg-img{
    width: 150px; 
}

.footer__created{
    margin-top: 35px; 
    border-radius: 15px;
}

.footer__created-title{
    font-size: 40px;
    font-weight: 700;
    font-family: 'Nerko One', cursive !important;
    margin: 20px 0 !important;
}

.footer__created-word{
    font-family: 'Nerko One', cursive !important;
    font-size: 20px; 
    color: white; 
}

.footer__created-subtitle{
    font-size: 20px; 
    margin: 30px 0 !important; 
    font-weight: 700 !important;
}

.footer__created-iframe{
    width: 100%; 
    height: 300px;
}

@media(min-width: 780px){
    .footer__created-iframe{
        width: 60%;
        height: 400px;
    }
}

.footer__created-btnPage{
    margin-top: 15px; 
    text-decoration: none; 
    width: 180px; 
    padding: 10px 20px; 
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 700;
    font-size: 16px; 
    border-radius: 8px; 
}

.footer__created-btnPage:hover{
    color: var(--black);
    background-color: var(--white);
}

@media(min-width: 780px){
    .footer__created{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 10px; 
    }
    .footer__created-title{
        grid-column:1/3; 
    }
}

@media(min-width: 1050px){
    .footer__created-data{
        display: flex;
        justify-content: center;
        gap: 30px; 
    }
}

/* Control de usuarios  */

.admin-user{
    width: 85%; 
    margin: 20px auto;  
}

.form-add-user{
    width: 100%; 
}

@media(min-width: 1000px){
    .admin-user{
        display: grid;
        grid-template-columns: 250px auto;
        gap: 20px; 
    }
}

/* Firma */

.firma{
    width: 80%; 
    margin: 80px auto; 
}


.firma-buttons{
    display: flex;
    flex-direction: column;
    gap: 10px; 
}

.firma-button{
    width: 100%; 
    padding: 15px 20px; 
}

@media(min-width: 850px){
    .firma{
        width: 50%; 
    }
}

@media(min-width: 1000px){
    .firma-buttons{
        flex-direction: row;
    }
    .firma-button{
        width: 150px; 
    }
}

/* firma del servicio */

.firma-cfe{
    width: 80%;
    margin: 20px auto; 
}

.firma-cfe-w{
    width: 100%; 
}

@media(min-width: 1024px){
    .firma-cfe-w{
        width: 70%; 
    }
}

.firma-servicio-titulo{
    padding: 15px; 
    background-color: var(--black);
    color: var(--white);
}

.firma-cfe-buttons{
    display: flex; 
    flex-direction: column;
    gap: 10px; 
}