/* estilos.css - Mobile First */
nav,
header,
.hero,
.hero-gradient,
.bienvenida,
.laRed,
footer
{
    width: 100%;
    min-width: 320px;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
nav {
    background-color: var(--azul-oscuro-mujeres);
    height: 70px;
    padding: 0 20px;
}
.nav--logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.nav--logo img {
    width: auto;
    height: 60px;
    margin-right: 10px;
}
.nav--logo p {
    color: var(--just-white);
    font-weight: 500;
    letter-spacing: 1.5px;
    font-size: 1.6rem;
    width: 50%;
    text-transform: uppercase;
}
.hero {
    height: 50vh;
    overflow: hidden;
}
.hero img {
    width: auto;
    height: 50vh;
    object-fit: cover;
    object-position: top;
    position: relative;
}
.hero-gradient {
    overflow: hidden;
    background: linear-gradient(
        to top, 
        #3d5a80 0%,
        rgba(61, 90, 128, 0.8) 30%,
        rgba(61, 90, 128, 0.5) 60%,
        transparent 100%) bottom;    
    background-size: 100% 100px;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    height: calc(50vh + 70px);
}
.bienvenida {
    min-width: 320px;
    max-width: 100vw;
    width: 100%;
    background: var(--azul-oscuro-mujeres);
    color: var(--just-white);
    padding: 30px 50px;
}
.bienvenida p {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-top: 20px;
    letter-spacing: 0.5px;
}
.bienvenida h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 10px;
}
.bienvenida h2 {
    font-size: 1.8rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 2.8rem;
}
.bienvenida h4 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 2rem;
}
.laRed {
    background-color: var(--gris-claro-mujeres);
    padding: 40px 50px;
    color: var(--azul-oscuro-mujeres-2);
}
.laRed h3 {
    margin-bottom: 20px;
}
.laRed p {
    font-size: 1.6rem;
    line-height: 2.4rem;
}
/* CTA SEMINARIO */
.resumen--masInfo {
    width: 80%;
    min-width: 280px;
    max-width: 320px;
    background-color: var(--tierra-mujeres);
    color: var(--azul-portada);
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 20px;
    margin-top: 20px;
}
.resumen--masInfo:hover {
    background-color: var(--azul-claro-mujeres);
    color: var(--gris-oscuro-mujeres);
}
/* CTA REGISTRO */
.bienvenida--cta,
.laRed--cta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.laRed--cta {
    margin-bottom: 0;
}
.registro--cta {
    width: 80%;
    min-width: 280px;
    max-width: 320px;
    background-color: var(--tierra-mujeres);
    color: var(--azul-portada);
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
}
.registro--cta:hover {
    background-color: var(--azul-claro-mujeres);
    color: var(--gris-oscuro-mujeres);
}
/* FOOTER */
footer
{
    background-color: var(--gris-claro);
    padding-top: 40px;
    width: 100%;
    min-width: 320px;
    max-width: 100vw;
}
.footer--copy
{
    width: 100%;
    text-align: center;
    background-color: var(--just-white);
    padding: 40px 0;
}
.footer--copy p
{
    font-size: 1.4rem;
    line-height: 2.2rem;
    letter-spacing: 1px;
}
.footer--copy figure
{
    width: 100%;
    text-align: center;
    margin-top: 11px;
}
.footer--copy figure img {
    width: 100px;
}