body{
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;

    background: linear-gradient(
    -45deg,
    #2D9CDB,
    #4A74E8,
    #79B8FF,
    #B8D8FF);

    background-size: 400% 400%;
    animation: fondoAnimado 10s ease infinite;
}

/*========= NAVBAR =========*/

.barraNav{
    width: 92%;
    height: 70px;

    margin: 15px auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 30px;
    box-sizing: border-box;

    background: white;
    border-radius: 20px;

    box-shadow: 0px 5px 15px rgba(0,0,0,.1);
}

.logo{
    color: #355CC0;
    font-size: 28px;
    cursor: pointer;
}

.menu{
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
}

.menu a{
    text-decoration: none;
    color: #444;
    font-weight: bold;
    transition: .3s;
}

.menu a:hover{
    color: #355CC0;
}

/*========= CONTENEDOR PRINCIPAL =========*/

.contenedorPrincipal{
    width: 92%;
    min-height: 70vh;

    margin: auto;

    display: flex;
    justify-content: center;
    align-items: center;

    background: white;

    border-radius: 30px;

    box-shadow: 
    0px 15px 40px rgba(0,0,0,.2);

    animation: entrada 1s ease;
}

.contenido{
    text-align: center;
    width: 80%;
}

.tituloPrincipal{
    font-size: 70px;
    color: #355CC0;

    margin-bottom: 10px;

    text-shadow:
    0px 4px 10px rgba(53,92,192,.2);
}

.contenedorPrincipal p{
    font-size: 28px;
    color: #555;
    margin-bottom: 50px;
}

/*========= BOTONES =========*/

.opciones{
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btnLogin,
.btnRegister{
    width: 200px;
    height: 70px;

    border: none;
    border-radius: 15px;

    cursor: pointer;

    color: white;
    font-size: 20px;
    font-weight: bold;

    transition: .3s;
}

.btnLogin{
    background: linear-gradient(
    45deg,
    #355CC0,
    #5B7EFF
    );
}

.btnRegister{
    background: linear-gradient(
    45deg,
    #1fa34a,
    #39d66f
    );
}

.btnLogin:hover,
.btnRegister:hover{

    transform:
    translateY(-6px)
    scale(1.05);

    box-shadow:
    0px 8px 15px rgba(0,0,0,.3);
}

.btnLogin:active,
.btnRegister:active{
    transform: scale(.95);
}

/*========= INFORMACION =========*/

.Informacion{
    width: 92%;
    margin: 30px auto;

    background: white;

    border-radius: 30px;

    padding: 40px;

    box-sizing: border-box;

    box-shadow:
    0px 15px 40px rgba(0,0,0,.2);

    animation: entrada 1.5s ease;
}

.contenidoInformacion{
    text-align: center;
}

.tituloInformacion{
    color: #355CC0;
    font-size: 40px;
}

.listaServicios{
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.listaServicios li{

    background: #f5f7ff;

    margin: 15px auto;

    width: 70%;

    padding: 15px;

    border-radius: 15px;

    font-size: 20px;

    transition: .3s;
}

.listaServicios li:hover{

    transform: scale(1.03);

    box-shadow:
    0px 5px 15px rgba(0,0,0,.1);
}

/*========= FOOTER =========*/

.footer{
    width: 92%;

    margin: 15px auto;

    background: white;

    border-radius: 20px;

    padding: 15px;

    text-align: center;

    box-shadow:
    0px 5px 15px rgba(0,0,0,.1);
}

.footer p{
    color: #555;
}

/*========= ANIMACIONES =========*/

@keyframes fondoAnimado{

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }
}

@keyframes entrada{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0px);
    }
}