:root {
    --azul:#2C2F83;
    --azulsuave: #3b3fb0;
    --rosalogo:#F3A2B9;
    --coral:#FD9792;
    --coralsuave:#FEEEE3;
    --fuente1: 'Maven Pro', sans-serif;
    --fuente2: 'Roboto', sans-serif;
}

@keyframes slidedown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
    font-family: var(--fuente2);
}

*, *:before, *:after {
    box-sizing: inherit;
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    list-style-type: none;
    color: inherit;
    font-family: var(--fuente2);
}

.top_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 70%);
    padding: 1rem;
    position: relative;
    animation: slidedown 1s;
    /* position: absolute;
    background-color: white; */
}

.top_menu_links {
    display: flex;
    justify-content: flex-end;
    column-gap: 1rem;
    width: 90%;
    padding: 1rem;
    font-size: 1.8rem;
    font-weight: 300;
    background-color: var(--coralsuave);
}

@media (min-width: 768px) {
    .top_menu {
        padding: 2rem;
    }
    .top_menu_links {
        padding: 1rem 4rem;
        column-gap: 3rem;
    }
}

.logo {
    height: 5rem;
}

.section1 {
    width: 100%;
    height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
    background-image: url(../img/fondo-hero.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--azul);
}

.titulo {
    font-size: 6rem;
    background-color: var(--coralsuave);
    padding: 1rem;
}

.subtitulo {
    font-size: 2rem;
    background-color: var(--coralsuave);
    padding: 1rem;
    text-align: center;
}

.section2 {
    width: 100%;
    min-height: 35vh;
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
    justify-content: center;
    align-items: center;
    background-color: var(--azul);
    color: white;
    text-align: center;
    padding: 2rem;
}

.titulo2 {
    font-size: 3.5rem;
}

.subtitulo2 {
    font-size: 2rem;
    font-weight: 300;
}

.titulo2,.subtitulo2 {
    max-width: 70rem;
}

.section3 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    text-align: center;
}

@media (min-width: 768px) {
    .section3 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.div_1,.div_2,.div_3,.div_4{
    min-height: 40vh;    
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    /* justify-content: center; */
    padding: 10rem 1rem;
    align-items: center;
}

.div_1,.div_4 {
    background-color: black;
    color: white;
}

.div_2,.div_3 {
    background-color: var(--coralsuave);
    color: var(--azul);   
}

.svg1,.svg4 {
    stroke: white;
}

.svg2,.svg3 {
    stroke: var(--azul);
}

@media (min-width: 768px) {
    .div_1,.div_3 {
        background-color: black;
        color: white;
    }
    
    .div_2,.div_4 {
        background-color: var(--coralsuave);
        color: var(--azul);
    }

    .svg1,.svg3 {
        stroke: white;
    }

    .svg2,.svg4 {
        stroke: var(--azul);
    }
}

.titulo3 {
    font-size: 2.5rem;
    /* letter-spacing: 0.5rem; */
    font-weight: 900;
}

.subtitulo3 {
    font-size: 1.8rem;
    font-weight: 300;
    max-width: 90%;
}

.section4 {
    width: 100%;
    min-height: 35vh;
    display: flex;
    flex-direction: column;
    column-gap: 3rem;
    row-gap: 2rem;
    justify-content: center;
    align-items: center;
    background-color: var(--azul);
    color: white;
    text-align: center;
    padding: 2rem;
}

@media (min-width: 768px) {
    .section4 {
        flex-direction: row;
    }
}

.titulo4 {
    font-size: 3.5rem;
}

.subtitulo4 {
    font-size: 2rem;
    font-weight: 300;
}

.titulo4,.subtitulo4 {
    max-width: 51rem;
}

.boton-consultanos {
    border-radius: 10rem;
    width: 20rem;
    height: 10rem;
    background-color: var(--coral);
    color: var(--azul);
    font-size: 2.5rem;
    border: none;
    outline: none;
    cursor: pointer;
}

.section5 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: var(--azul);
    text-align: center;
    padding: 3rem 1rem 1rem 1rem;
}

.titulo5 {
    font-size: 3.5rem;
}

.section6 {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: white;
    text-align: center;
    padding: 0 0 0 1rem;
        /* margin: -1rem 0 0 0; */
    margin-bottom: 3rem;
}

.contenedor-bullets {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: 3rem;
    justify-content: center;
}

.bullet {
    display: flex;
    flex-direction: column;
    width:28rem;
}

.bullet-titulo {
    background-color: var(--coralsuave);
    border-radius: 20rem;
    border: 1px solid var(--coral);
    padding: 1rem;
    color: var(--azul);
    font-size: 2rem;
    font-weight: bold;
    transform: translate(0px, 25px) scale(1.05);
}

.bullet-descripcion {
    background-color: var(--coral);
    border-radius: 0 0 2rem 2rem;
    padding: 4rem 1rem 1rem 1rem;
    color: white;
    min-height: 30rem;
    height: 100%;
}

.bullet-text1 {
    font-size: 2.2rem;
    padding: 1rem 0rem;
}

.bullet-text2 {
    font-size: 1.5rem;
}

.bullet-text3 {
    font-size: 2.5rem;
    font-weight: bold;
    padding: 0rem 0rem 1rem 0rem;
}

.bullet-text4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bullet-linea {
    border: 1px solid white;
    margin: 2rem auto;
    width: 35%;
}

.divider {
    height: 4rem;
    background-color: var(--azul);
}

.contacto-texto {
    color: var(--coral);
    padding: 2rem;
}

.contacto-texto h1 {
    font-size: 3rem;
}

.contacto-texto h2 {
    font-size: 1.5rem;
    font-weight: normal;
}

.section7 {
    background-color: var(--azulsuave);
    padding: 3rem;
    column-gap: 2rem;
    row-gap: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.formulario {
    width: min(60rem, 100%);
    background-color: var(--azul);
    /* margin: 0 auto; */
    padding: 2rem;    
    border-radius: 2rem;
    /* border: 1px solid white; */
    /* font-size: 1.2rem; */
}

.formulario fieldset {
    border:none;
}

.formulario legend {
    text-align: center;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 2rem;
    color: white;
}

.campo {
    margin-bottom: 1rem;
}

.campo label {
    color: var(--blanco);
    font-weight: bold;
    margin-bottom: .5rem;
    display: block;
}

.campo textarea {
    min-height: 20rem;
}

.input-text {
    border: none;
    padding: 1.5rem;
    width: 100%;
    border-radius: 1rem;
    background-color: var(--coralsuave);
    color: var(--azul);
    font-weight: bold;
    font-size: 1.5rem;
}

input::placeholder {
    /* font-family: var(--fuente1); */
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--azul);
    
}
textarea::placeholder {
    /* font-family: var(--fuente1); */
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--azul);
}

.campo-boton {
    text-align: center;
}

.boton {
    border: none;
    width: 15rem;
    color: var(--azul);
    background-color: var(--coralsuave);
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50rem;
}

.footer {
    background-color: var(--azul);
    color: white;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 3rem;
    padding: 1rem;
}