/* INICIO Globales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: poppins;
    src: url(fuentes/Poppins-Regular.ttf);
}

/* FONDOS */
.invalido {
    background: linear-gradient(to bottom, white, #FEBB07);
}
.femenino {
    background: linear-gradient(to bottom, white, #D94F69);
}
.masculino {
    background: linear-gradient(to bottom, white, #047972);
}

header{
    display: flex;
    justify-content: center;
}

/* LOGO */
#logo {
    width: 300px;
    height: 100px;
    background: url("imagenes/logo.png") no-repeat;
    background-position: center;
    background-size: 100% auto;
    margin: 10px 20px;
    font-size: 0;
}

/* BANNER */
#banner{
    display: flex;
    justify-content: center;
}

#banner img{
    width: 100%;
    max-width: 1400px;
    height: auto;
}

h2{
    text-align: center;
    font-family: poppins;
    font-size: 2.8rem;
    color: #030303;
    margin: 60px 0px;
}

/* PASTILLAS */
section{
    display: flex;
    justify-content: center;
    max-width: 1400px;
}

.pastilla {
    /* width: calc(50% - 20px); */
    background-color: #d7dadd46;
    border-radius: 8px;
    padding: 20px;
    margin: 20px;
    /* box-sizing: border-box; */
    text-align: center;
    /* justify-items: space-between; */
}

.pastilla img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

h3{
    text-align: center;
    font-family: poppins;
    font-size: 1.4rem;
    color: #030303;
    margin-top: 20px;
}

.pastilla p{
    text-align: center;
    font-family: poppins;
    font-size: 0.8rem;
    color: #030303;
    margin: 15px;
}

/* FLECHA */
.flecha{
    width: 50px; 
    height: 50px;
    border-radius: 50%;
    background-color: white;
    position: fixed;
    right: 20px;
    bottom: 7.5px;
}

/* FOOTER */
footer {
    display: flex;
    border: 1px solid #030303;
    padding: 10px;
    font-family: poppins;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer img{
width: 80px;
height: auto;
}



