:root {
    --font1: 'Bebas Neue', sans-serif;
    --font2: 'ruda', sans-serif;
    --font3: sans-serif;
    --color01: #6c788e;
    --color02: #a6aec1;
    --color-bento-box: #e4e5eb;
    --color-transparent-bento-box: linear-gradient(to right, transparent, var(--color-bento-box));
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: black;
}

body {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F2F2F2;
}

h1 {
    font-size: 5rem;
    width: 100%;
    letter-spacing: .1rem;
}
h2 {
    font-size: 3rem;
    letter-spacing: .3rem;
    font-family: var(--font1);
    font-weight: 400;
}
h3 {
    font-size: 2rem;
    font-family: var(--font2);
    font-weight: 400;
    letter-spacing: .3rem;
}
p {
    font-size: 1rem;
    letter-spacing: .05rem;
    line-height: 1.5rem;
    font-family: var(--font3);
}

.main {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.presentation-section {
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    /* margin-top: 2rem; */
}
.presentation-top {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
}
.title-article {
    width: 50%;
    height: 100%;
    display: flex;
    place-items: center;
}
.image-article {
    width: 50%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    place-items: center;
    gap: .5rem;
}
.image-article img {
    width: 25vw;
    height: 30vw;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: -10px 10px 30px 10px rgba(0, 0, 0, 0.3);
}
.creditos-imagen {
    font-size: .75rem;
    font-family: var(--font2);
}
.presentation-bottom {
    width: 100%;
    height: fit-content;
    display: flex;
}
.section-inf-article {
    width: fit-content;
    height: auto;
    display: flex;
    gap: 2rem;
}
.inf-article {
    font-size: 1.125rem;
    font-family: var(--font2);
    font-weight: 200;
    list-style-type: none;
}
.inf-article > span {
    color: rgb(255, 70, 70);
}

.seccion-contenido-articulo {
    max-width: 750px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.descripcion-articulo {
    text-align: justify;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.descripcion-articulo > p {
    font-size: 1.25rem;
    font-family: var(--font3);
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: .08rem;
}
.funciones-de-un-web-developer {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.funciones-web-developer {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
}
.funcion-web-developer {
    font-size: 1.125rem;
    letter-spacing: .05rem;
    line-height: 1.7rem;
    font-family: var(--font2);
    display: flex;
    flex-direction: column;
    text-align: justify;
    gap: 1rem;
}
.imagen-de-funcion {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
    margin-top: 2rem;
}
.imagen-de-funcion img {
    width: auto;
    max-width: 100%;
    max-height: 20vw;
    box-shadow: -10px 10px 30px 10px rgba(0, 0, 0, 0.3);
}
.lista-seo {
display: flex;
flex-direction: column;
}
.lista-seo p {
    margin-left: 2rem;
}
.elemento-seo {
    margin-top: 1rem;
    margin-left: 2rem;
    list-style-type:decimal;
}

.que-para-desarollador-web {
    display: none;
}



.seccion-h2 {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.descripcion-titulo-h2 {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: justify;
}
.descripcion-titulo-h2 > p {
    font-size: 1.25rem;
    font-family: var(--font3);
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: .08rem;
}
.imagen-de-h2 {
    width: 100%;
    height: fit-content;
    display: grid;
    place-items: center;
}
.imagen-de-h2 img {
    width: auto;
    max-width: 100%;
    max-height: 20vw;
    box-shadow: -10px 10px 30px 10px rgba(0, 0, 0, 0.3);
}

.contenido-bento-article {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contenido-bento-article h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: .05rem;
}
.contenido-bento-article p {
    font-family: var(--font3);
    font-size: .85rem;
    font-weight: 400;
    letter-spacing: .05rem;
    line-height: 1.125rem;
    text-align: justify;
}

.modelo-1-para-2-caracteristicas {
    width: 100%;
    min-height: 200px;
    max-height: 220px;
    height: 100%;
    display: flex;
    gap: 1rem;
}
.caracteristica-1 {
    max-width: 70%;
    min-height: 100%;
    display: flex;
    gap: 2rem;
    background: var(--color-transparent-bento-box);
    border-radius: 0 10rem 10rem 0;
    padding: 1rem;
    padding-right: 2rem;
}
.caracteristica-1-contenido {
    width: auto;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.caracteristica-1-img {
    max-width: 8rem;
    max-height: 8rem;
    object-fit: cover;
    overflow: hidden;
    border-radius: 50%;
    align-self: center;
}
.caracteristica-1-img img {
    width: 100%;
}
.caracteristica-2 {
    max-width: 30%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--color-transparent-bento-box);
    border-radius: 0 1rem 1rem 0;
    padding: 1rem;
}
.flex-row-reverse {
    flex-direction: row-reverse;
}
.elemento-lista-var-1-articulo {
    gap: 1rem;
    margin-left: 1rem;
    list-style-type: decimal;
}
.elemento-lista-var-1-articulo p {
    font-family: var(--font3);
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: .05rem;
    line-height: 1.5rem;
    text-align: justify;
    margin-left: 0;
}
.lista-basica-articulo {
    gap: .5rem;
}

/* Seccion de calculadora de rendimeinto */
.contenedor-2-bloques-simetricos {
    width: 100%;
    height: fit fit-content;
    display: grid;
    place-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
}
.contenedor-inversion {
    max-width: 600px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--color-transparent-bento-box);
    border-radius: 1rem;
    padding: 1.5rem 3rem;
}
.formllenado {
    width: 50%;
    height: 2rem;
    background: var(--color-transparent-bento-box);
    border: 2px solid var(--color01);
    border-radius: 4px;
}
.primarybutton {
    width: 50%;
    height: 2rem;
    align-self: center;
    margin: 1rem 0;
    background: var(--color-transparent-bento-box);
    border: 1px solid var(--color01);
    border-radius: .5rem;
    color: rgba(255, 0, 76, 0.688);
    letter-spacing: .125rem;
}
.primarybutton:hover {
    cursor: pointer;
    background-color: #a6aec1;
    transition: background-color 0.5s ease, transform 0.5s ease;
}
.resultadosinversion {
    display: flex;
    gap: .5rem;
    flex-direction: column;
    align-items: end;
}



#fname {
    background: transparent;
    display: flex;
    text-align: center;
}
.formsubtitulo {
    font-size: 1rem;
    font-family: var(--font2);
    font-weight: 600;
}
#resultadototal,
#resultadoganancia {
    display: grid;
    align-items: center;
    text-align: end;
    font-size: 1rem;
    font-family: var(--font3);
    font-weight: 500;
    padding: 0 1rem;
}




@media (max-width: 520px) {
    /* body {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: white;
    } */
    
    h1 {
        width: 100%;
        font-size: 3rem;
        /* width: 100%; */
        /* letter-spacing: .1rem; */
        line-height: 3rem;
    }
    h2 {
        font-size: 2rem;
        /* letter-spacing: .3rem;
        font-family: var(--font1);
        font-weight: 400; */
    }
    h3 {
        font-size: 1.5rem;
        /* font-family: var(--font2);
        font-weight: 400; */
        letter-spacing: .2rem;
    }
    p {
        font-size: 1rem;
        letter-spacing: .05rem;
        line-height: 1.5rem;
        font-family: var(--font3);
    }
    
    .main {
        padding: 1rem;
        /* width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column; */
    }
    
    .presentation-section {
        /* width: 100%; */
        height: fit-content;
        /* display: flex; */
        /* flex-direction: column; */
        gap: 2rem;
        justify-content: start;
        /* align-items: center; */
        margin: 2rem 0;
    }
    .presentation-top {
        /* width: 100%; */
        /* height: fit-content; */
        /* display: flex; */
        flex-direction: column;
        /* justify-content:center;
        align-items: center; */
        gap: 1rem;
    }
    .title-article {
        width: 100%;
        /* height: 100%; */
        /* display: flex; */
        /* place-items: center; */
    }
    .image-article {
        width: 100%;
        /* height: fit-content; */
        /* display: flex; */
        /* flex-direction: column; */
        /* place-items: center; */
        gap: 0;
    }
    .image-article img {
        width: 100%;
        height: 30vh;
        /* object-fit: cover; */
        /* border-radius: 4px; */
        box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.3);
    }
    .creditos-imagen {
        font-size: .6rem;
        /* font-family: var(--font2); */
    }
    /* .presentation-bottom {
        width: 100%;
        height: fit-content;
        display: flex;
    } */
    .section-inf-article {
        /* width: fit-content; */
        /* height: auto; */
        /* display: flex; */
        flex-direction: column;
        gap: 1rem;
    }
    .inf-article {
        font-size: 1rem;
        /* font-family: var(--font2);
        font-weight: 200;
        list-style-type: none; */
    }
    /* .inf-article > span {
        color: rgb(255, 70, 70);
    } */
    
    .seccion-contenido-articulo {
        /* max-width: 750px; */
        width: 100%;
        /* height: fit-content;
        display: flex;
        flex-direction: column; */
        gap: 2rem;
    }
    .descripcion-articulo {
        /* width: 100%;
        height: fit-content;
        display: flex; */
        font-size: 1.125rem;
        /* letter-spacing: .05rem;
        line-height: 2rem;
        font-weight: 400;
        text-align: justify; */
    }
    .funciones-de-un-web-developer {
        /* width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column; */
        gap: 1rem;
    }
    .funciones-web-developer {
        /* display: flex;
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 5rem; */
        margin-top: 2rem;
    }
    /* .funcion-web-developer {
        font-size: 1.125rem;
        letter-spacing: .05rem;
        line-height: 1.7rem;
        font-family: var(--font2);
        display: flex;
        flex-direction: column;
        text-align: justify;
        gap: 1rem;
    } */
    .imagen-de-funcion {
        /* width: 100%;
        height: fit-content;
        display: grid;
        place-items: center; */
        margin-top: 1rem;
    }
    .imagen-de-funcion img {
        /* width: auto;
        max-width: 100%; */
        max-height: 100vw;
        box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.3);
    }
    /* .lista-seo {
    display: flex;
    flex-direction: column;
    }
    .lista-seo p {
        margin-left: 2rem;
    }
    .elemento-seo {
        margin-top: 1rem;
        margin-left: 2rem;
        list-style-type:decimal;
    }
    
    .que-para-desarollador-web {
        display: none;
    } */
}