* {
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;

}

/*menu*/
:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --black-color: hsl(0, 0%, 100%);
    --menu-color: hsl(0, 0%, 0%);
    --white-color: #000000;
    --body-color: hsl(0, 0%, 100%);

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Inter", sans-serif;
    --normal-font-size: .938rem;

    /*========== Font weight ==========*/
    --font-regular: 600;
    --font-semi-bold: 800;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
    :root {
        --normal-font-size: 1rem;
    }
}


ul {
    list-style: none;
    padding: 0;
    /* Color highlighting when pressed on mobile devices */
    /*-webkit-tap-highlight-color: transparent;*/
}

a {
    text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 2000px;
    margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 2%;
    background-color: var(--black-color);
    z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
    height: var(--header-height);
}

.nav__logo,
.nav__burger,
.nav__close {
    color: var(--white-color);
}

.nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    font-weight: var(--font-semi-bold);
    /* Color highlighting when pressed on mobile devices */
    /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo img {
    height: 40px;
}

.nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
}

.nav__burger,
.nav__close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 30px;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
}

.nav__close {
    opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1024px) {
    .nav__menu {
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        transition: top .4s, opacity .3s;
    }

    .nav__menu::-webkit-scrollbar {
        width: 0;
    }

    .nav__list {
        background-color: var(--menu-color);
    }
}

.nav__list a {
    border-bottom: 1px solid white;
    border-top: 1px solid white;
    color: var(--black-color);
    background-color: var(--menu-color);
    font-weight: var(--font-semi-bold);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
    font-family: var(--body-font);
    font-size: 20px;
}


.nav__list a:hover {
    background-color: var(--black-color-light);

}




/* Show menu */
.show-menu {
    opacity: 1;
    top: 3.5rem;
    pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
    opacity: 0;
    transform: rotate(90deg);
}

.show-icon .nav__close {
    opacity: 1;
    transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
    cursor: pointer;
}

.dropdown__arrow {
    font-size: 1.25rem;
    font-weight: initial;
    transition: transform .4s;
}

.dropdown__link,
.dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    color: var(--white-color);
    background-color: var(--black-color-light);
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-weight: var(--font-semi-bold);
    transition: background-color .3s;
}

.dropdown__link i,
.dropdown__sublink i {
    font-size: 1.25rem;
    font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
    background-color: var(--black-color);
}

.dropdown__menu,
.dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover>.dropdown__submenu {
    max-height: 1000px;
    transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
    .container {
        margin-inline: 1rem;
    }

    .nav__list a {
        padding-inline: 1rem;
    }
}

/* For large devices */
@media screen and (min-width: 1024px) {
    .nav__list a.active {
        color: #BE3A34;
        font-weight: 700;
    }

    .header {
        padding: 0 10%;
    }

    .nav__logo img {
        height: 50px;
    }

    .nav {
        height: calc(var(--header-height) + 2rem);
        display: flex;
        justify-content: space-between;
    }

    .nav__toggle {
        display: none;
    }

    .nav__list {
        height: 100%;
        display: flex;
        column-gap: 3rem;

    }

    .nav__list a {
        height: 100%;
        padding: 0;
        justify-content: initial;
        column-gap: .25rem;
        color: var(--white-color);
        background-color: var(--black-color);
        font-weight: var(--font-regular);
    }

    .nav__list a:hover {
        color: #BE3A34;
    }

    .dropdown__item,
    .dropdown__subitem {
        position: relative;
    }

    .dropdown__menu,
    .dropdown__submenu {
        max-height: initial;
        overflow: initial;
        position: absolute;
        left: 0;
        top: 6rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s, top .3s;
    }

    .dropdown__link,
    .dropdown__sublink {
        padding-inline: 1rem 3.5rem;
    }

    .dropdown__subitem .dropdown__link {
        padding-inline: 1rem;
    }

    .dropdown__submenu {
        position: absolute;
        left: 100%;
        top: .5rem;
    }

    /* Show dropdown menu */
    .dropdown__item:hover .dropdown__menu {
        opacity: 1;
        top: 5.5rem;
        pointer-events: initial;
        transition: top .3s;
    }
}


.intro-caja {
    padding: 40px 5% 60px;
}

.intro-texto h1 {
    padding: 0 0 10px 0;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 33px;

}

.texto-inicio-intro{
    padding: 20px 0 0 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-size: 15px;
    max-width: 400px;
    padding: 15px 40px 35px;
}

.incicio-servicios-presentacion-titulo {
    padding: 10px 0 0 0;
    font-weight: 600;
}

.intro-texto-serv-inicio{
     font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-size: 18px;
    max-width: 430px;
}

.intro-texto-1 h2{
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 15px;
    max-width: 430px;
}

.intro-texto-1 p{
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 15px;
    max-width: 430px;
}

.img-intro {
    width: 100%;
    padding: 23px 0;
}

.texto-boton p {
    padding: 0 0 20px 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 15px;
    max-width: 280px;
}

.boton-inicio {
    padding: 20px 0 0 0
}

.inicio-btn {
    padding: 15px 40px;
    background-color: #000000;
    color: #ffffff;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    border-radius: 30px;
    font-size: 20px;
}

.inicio-btn:hover {
    background-color: #BE3A34;
}

.contenedor-circulos {
    background-color: #BE3A34;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10% 5%;
    justify-items: center;
}


.circulo-tarjeta {
    background-color: #ffffff;
    border-radius: 50%;
    aspect-ratio: 1/1;
    text-align: center;
    max-height: 220px;

}


.circulo-tarjeta h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 10px;
    color: #BE3A34;
    height: 60px;
    padding: 20% 10% 0;
    margin-bottom: 6%;
}

.logo_circulos {
    width: 40px;
}

.slick-next {
    height: 20px;
}

.contenedor-sevicios-inicio {
    background-color: #000000;
    padding: 0 7%;
}

.textos-servicios-inicio {
    text-align: center;
    padding: 40px 0 0 0;
}

.textos-servicios-inicio h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 30px;
    color: #ffffff;
}

.textos-servicios-inicio p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 15px;
    color: #ffffff;
    padding: 0 0 20px 0;
}


.img-tarjetas-incio {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.texto-inicio {
    padding: 10px 0 0 13px;

}

.contenedor-img-tarjetas-incio {
    width: 100%;
    height: 100%;
    padding: 0 0 2% 0;
}


.texto-inicio h5 a {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 20px;
    color: #ffffff;
}

.texto-inicio p {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 4%;

}

.invitacion-inicio {
    text-align: center;
    background-color: #BE3A34;
    padding: 70px 0 50px 0;

}

.invitacion-inicio h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 23px;
    padding: 0 0 30px 0;
    color: #ffffff;

}

.boton-contactanos a {
    padding: 11px 27px;
    background-color: #ffffff;
    color: #000000;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    border-radius: 30px;
    font-size: 18px;
}

.boton-contactanos a:hover {
    background-color: #000000;
    color: #ffffff;
}

.boton-contactanos {
    padding: 0 0 30px 0;
}

.boton-escribenos a {
    padding: 11px 27px;
    background-color: #000000;
    color: #ffffff;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    border-radius: 30px;
    font-size: 18px;
}

.boton-escribenos a:hover {
    background-color: #3aa812;
}

.boton-escribenos {
    padding: 0 0 20px 0;
}

.grupo-1 {
    padding: 7% 5%;
}

.box {
    padding: 10% 0;
}

.box h2 {
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    margin-bottom: 15px;
}

.box-2 h2 {
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.grupo-2 {
    height: 25px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    justify-content: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 10px;
}



@media screen and (min-width: 320px) {
    .circulo-tarjeta h2 {
        font-size: 15px;
        height: 60%;
    }

    .logo_circulos {
        width: 60px;
    }

}

@media screen and (min-width: 768px) {
    .menu {
        padding: 1% 4% 0;
        height: 80px;
        background-color: #ffffff;
    }

    .menu .logo {
        object-fit: cover;
        width: 120px;
        height: 50px;
    }

    .intro-texto h1 {
        font-size: 50px;
    }

    .texto-inicio-intro{
        max-width: 600px;
    }

    .texto-inicio-intro h3{
        font-size: 18px;
        max-width: 600px;
    }

    .texto-inicio-intro p{
        font-size: 16px;
        max-width: 600px;
    }

    .intro-texto-1 h2{
        font-size: 20px;
        max-width: 640px;
    }

    .intro-texto-1 p{
        font-size: 20px;
        max-width: 640px;
    }

    .texto-boton p {
        max-width: 460px;
        font-size: 18px;
    }

    .inicio-btn {
        font-size: 30px;
    }


    .circulo-tarjeta h2 {
        font-size: 27px;
        height: 60%;
    }

    .circulo-tarjeta {
        max-height: 300px;
    }

    .logo_circulos {
        width: 100px;
    }

    .img-tarjetas-incio {
        height: 700px;
    }

    .invitacion-inicio h2 {
        font-size: 26px;
        padding: 0 0 50px 0;
    }

    .invitacion-inicio h2 br {
        display: none;
    }

    .botones-invitacion {
        display: flex;
        justify-content: center;
        justify-content: space-between;
        padding: 0 19%;
    }

    .boton-contactanos a {
        padding: 18px 40px;
        border-radius: 30px;
        font-size: 22px;
        margin-right: 10px;
    }

    .boton-escribenos a {
        padding: 18px 40px;
        font-size: 22px;
    }

    .textos-servicios-inicio h2 {
        font-size: 40px;
    }

    .textos-servicios-inicio p {
        font-size: 22px;
        padding: 0 0 40px 0;
    }

    .grupo-1 {
        padding: 6% 5% 4%;
    }

    .box-2 {
        align-items: center;
        padding: 0 20px 0 0;
    }

    .box {
        padding: 0;
        width: 500px;
    }


}

@media screen and (min-width: 1024px) {
    .menu-icono {
        display: none;
    }

    .menu .navbar ul li {
        display: contents;
    }

    .intro-texto h1 {
        font-size: 90px;
    }
    
    .texto-inicio-intro h3{
        font-size: 22px;
    }

    .texto-inicio-intro{
        max-width: 1150px;
    }

    .texto-inicio-intro p{
        font-size: 20px;
        max-width: 1650px;
    }

    .intro-texto-1 h2{
        font-size: 25px;
        max-width: 1650px;
    }

    .intro-texto-1 p {
        font-size: 25px;
        max-width: 1650px;
    }

    .texto-boton p {
        max-width: 800px;
        font-size: 18px;
    }

    .inicio-btn {
        font-size: 28px;
    }

    .boton-inicio {
        padding: 30px 0 0;
    }

    .circulos-inicio {
        background-color: #BE3A34;
    }


    .contenedor-circulos {
        display: flex;
        justify-content: space-between;
        padding: 5% 1%;
        max-width: 1920px;
        margin: auto;
    }

    .circulo-tarjeta h2 {
        font-size: 25px;
        height: 60%;
    }

    .circulo-tarjeta {
        margin-right: 20px;
        max-height: 380px;
        width: 350px;
    }

    .contenedor-sevicios-inicio h2 {
        font-size: 52px;
    }

    .contenedor-sevicios-inicio p {
        font-size: 29px;
    }

    .tarjetas-servicios-inico {
        width: 250%;
    }

    .texto-inicio p {
        font-size: 12px;
    }

    .invitacion-inicio {
        padding: 10%;
    }

    .invitacion-inicio h2 {
        font-size: 37px;
        padding: 0 0 90px 0;

    }

    .botones-invitacion {
        padding: 0 15% 20px;
    }

    .boton-contactanos a {
        padding: 28px 50px;
        border-radius: 60px;
        font-size: 30px;
        margin-right: 10px;
    }

    .boton-escribenos a {
        padding: 28px 50px;
        border-radius: 60px;
        font-size: 30px;
    }
}

@media screen and (min-width: 1350px) {
    .circulo-tarjeta h2 {
        font-size: 33px;
    }

}

/*SERVICIOS*/

.titulo-servicios h1 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 28px;
    padding: 25px 25px;
}


.titulo-servicios img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.img-fondo {
    background-color: #000000;
}

.tarjeta-inicio-blanca {
    background-color: #ffffff;
    border-radius: 20%;
    margin-top: -130px;
    position: relative;
    align-content: center;
}

.servicios-inicio-tarjeta {
    text-align: center;
    padding: 5% 8%;
    background-color: #000000;
}

.servicios-inicio-tarjeta h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    margin-bottom: 10px;
}

.servicios-inicio-tarjeta p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 10px;
}

.servicios-grid {
    background-color: #000000;
    padding: 0 4% 5px;
}

.tarjetas-pagina-servicios {
    margin-bottom: 30px;
}

.imagenes-servicios img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imagenes-servicios {
    height: 100%;
}

.imagenes-servicios:hover img {
    transform: scale(1.05);
}

.texto-servicios h5 a {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    color: #ffffff;
    font-size: 11px;
}

.texto-servicios p {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: #ffffff;
    font-size: 11px;
}

.servicio1 {
    padding: 5%;
    background-color: #6F838C;
    margin-bottom: 5px;
    height: 192px;
}

.servicio2 {
    padding: 5%;
    background-color: #A1A1A1;
    margin-bottom: 5px;
    height: 192px;
}

.servicio3 {
    padding: 5%;
    background-color: #5B4E4E;
    margin-bottom: 5px;
    height: 192px;
}

.servicio4 {
    padding: 5%;
    background-color: #8F653A;
    margin-bottom: 5px;
    height: 192px;
}

.servicio5 {
    padding: 5%;
    background-color: #C0AC7E;
    margin-bottom: 5px;
    height: 192px;
}

.servicio6 {
    padding: 5%;
    background-color: #AE9881;
    margin-bottom: 5px;
    height: 192px;
}

.servicio7 {
    padding: 5%;
    background-color: #95554A;
    margin-bottom: 5px;
    height: 192px;
}

.servicio8 {
    padding: 5%;
    background-color: #BE3A34;
    margin-bottom: 5px;
    height: 192px;
}

.textos-presentacion {
    background-color: #BE3A34;
    padding: 15% 6%;
    text-align: center;
}

.textos-presentacion h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 20px;
    font-size: 18px;
    color: #ffffff;
}

.textos-presentacion p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    font-size: 13px;
}


@media screen and (min-width: 320px) {

    .titulo-servicios img {
        height: 90%;
    }

    .tarjeta-inicio-blanca {
        height: 280px;
        margin-top: -170px;
        border-radius: 70px;
        padding: 5%;
    }

    .servicios-inicio-tarjeta h2 {
        font-size: 20px;
    }

    .servicios-inicio-tarjeta p {
        font-size: 13px;
    }

    .servicio1 {
        height: 267px;
    }

    .servicio2 {
        height: 267px;
    }

    .servicio3 {
        height: 267px;
    }

    .servicio4 {
        height: 267px;
    }

    .servicio5 {
        height: 267px;
    }

    .servicio6 {
        height: 267px;
    }

    .servicio7 {
        height: 267px;
    }

    .servicio8 {
        height: 267px;
    }

    .textos-presentacion h2 {
        font-size: 19px;
    }

    .textos-presentacion p {
        font-size: 16px;
    }


}

@media screen and (min-width: 531px) {

    .servicios-inicio-tarjeta h2 {
        font-size: 23px;
    }

    .servicios-inicio-tarjeta p {
        font-size: 18px;
    }

    .titulo-servicios h1 {
        padding: 25px 60px;
        font-size: 45px;
    }

    .titulo-servicios img {
        height: 300px;
    }

    .tarjeta-inicio-blanca {
        height: 270px;
        border-radius: 70px;
    }

    .servicios-inicio-tarjeta h2 {
        font-size: 25px;
    }

    .servicio1 {
        height: 450px;
    }

    .servicio2 {
        height: 450px;
    }

    .servicio3 {
        height: 450px;
    }

    .servicio4 {
        height: 450px;
    }

    .servicio5 {
        height: 450px;
    }

    .servicio6 {
        height: 450px;
    }

    .servicio7 {
        height: 450px;
    }

    .servicio8 {
        height: 450px;
    }

    .texto-servicios h5 a {
        font-size: 15px;
    }

    .texto-servicios p {
        font-size: 15px;
    }

    .textos-presentacion h2 {
        font-size: 30px;
    }

    .textos-presentacion p {
        font-size: 20px;
    }

    .caja-contenedor-preferencia h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .tarjetas-preferencia-especificas {
        margin-top: 0;
    }

    .tarjetas-preferencia {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .contenedor-tarjertas-servicios {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 20px;
        max-width: 1350px;
        margin: auto;
    }

    .footer-negro br{
        display: none;
    }

}

@media screen and (min-width: 1024px) {
    .titulo-servicios h1 {
        font-size: 71px;
    }

    .servicios-inicio-tarjeta {
        padding: 5% 10%;
    }

    .tarjeta-inicio-blanca {
        max-width: 1050px;
        margin: auto;
        margin-top: -260px;
        padding: 0% 11%;
    }

    .servicios-inicio-tarjeta h2 {
        font-size: 30px;
    }

    .servicios-inicio-tarjeta p {
        font-size: 20px;
    }

    .servicio1 {
        height: 550px;
    }

    .servicio2 {
        height: 550px;
    }

    .servicio3 {
        height: 550px;
    }

    .servicio4 {
        height: 550px;
    }

    .servicio5 {
        height: 550px;
    }

    .servicio6 {
        height: 550px;
    }

    .servicio7 {
        height: 550px;
    }

    .servicio8 {
        height: 550px;
    }

    .texto-servicios h5 a {
        font-size: 18px;
    }

    .textos-presentacion {
        padding: 11% 8%;
    }

    .textos-presentacion h2 {
        font-size: 46px;
    }

    .textos-presentacion p {
        font-size: 28px;
        max-width: 1350px;
        margin: auto;
    }

    .caja-contenedor-preferencia h2 {
        font-size: 40px;
    }

    .tarjetas-preferencia-especificas {
        padding: 14% 10%;
        max-width: 544px;
        max-height: 550px;
        border-radius: 50px;
    }

    .caja-contenedor-preferencia h5 {
        font-size: 27px;
    }

    .caja-contenedor-preferencia p {
        font-size: 19px;
    }
}

/*THE FULL PACKAGE*/

.inicio-servicios {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 20px;
    padding: 25px 25px;
    background-color: #A22A0A;
    color: #ffffff;
}

.img-titulo img {
    height: 200px;
}

img {
    width: 100%;
    object-fit: cover;
}
.textoinicial-tfp h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    padding: 15px 25px;
}

.textoinicial h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 25px;
    padding: 15px 25px;
    line-height: 27px;
}

.textoinicial p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    padding: 0 25px 20px;
}

.textoinicial br {
    display: none;
}

.diseño-medida {
    padding: 4%;
    text-align: center;
    background-color: #000000;
    color: #ffffff;
}

.diseño-medida h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 30px;
    font-variant-caps: all-petite-caps;
    line-height: 20px;
    padding: 0 0 2% 0;
}

.diseño-medida p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    
}

.img-blanco-negro img {
    height: 150px;
    margin-bottom: 20px;
}

.blanco {
    padding: 35px 20px;
    text-align: center;
}

.texto-blanco h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 32px;
    line-height: 20px;
    margin-bottom: 15px;
    font-variant-caps: all-petite-caps;
}

.texto-blanco p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
}

.negro {
    padding: 35px 25px;
    background-color: #000000;
}

.texto-negro {
    color: #ffffff;
    text-align: center;
}



.texto-negro h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 32px;
    line-height: 27px;
    margin-bottom: 15px;
    font-variant-caps: all-petite-caps;
}

.texto-negro p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
}

.condiciones {
    padding: 30px 25px;
    background-color: #BE3A34;
    align-content: center;
    text-align: center;
    color: #ffffff;
}

.export h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 32px;
    line-height: 27px;
    margin-bottom: 15px;
    font-variant-caps: all-petite-caps;

}

.export p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 15px;
}

.invitacion-servicios {
    text-align: center;
    padding: 70px 9% 50px;
    background-image: url(/images/Fondo.png);

}

.invitacion-servicios h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 30px;
    padding: 0 0 50px 0;
}

.boton-contactanos-servicios a {
    padding: 11px 27px;
    background-color: #BE3A34;
    color: #ffffff;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    border-radius: 30px;
    font-size: 20px;
}

.boton-contactanos-servicios a:hover {
    background-color: #000000;
    color: #ffffff;
}

.boton-contactanos-servicios {
    padding: 0 0 30px 0;
}

.boton-escribenos-servicios a {
    padding: 11px 27px;
    background-color: #000000;
    color: #ffffff;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    border-radius: 30px;
    font-size: 20px;
}

.boton-escribenos-servicios a:hover {
    background-color: #3aa812;

}

.boton-escribenos-servicios {
    padding: 0 0 20px 0;
}

@media screen and (min-width: 768px) {
    .textoinicial {
        padding: 5% 0;
    }

    .inicio-servicios {
        font-size: 30px;
    }

    .img-titulo img {
        height: 300px;
    }

    .textoinicial br {
        display: block;
    }

    .textoinicial-tfp h2 {
        max-width: 90%;
        font-size: 25px;
    }

    .textoinicial h2 {
        max-width: 90%;
        font-size: 35px;
        line-height: 35px;
    }

    .textoinicial p {
        max-width: 90%;
        font-size: 20px;
    }

    .diseño-medida {
        padding: 5%;
    }

    .diseño-medida h2 {
        font-size: 35px;
    }

    .diseño-medida p {
        font-size: 20px;
    }

    .blanco {
        display: flex;
        padding: 5%;
    }

    .texto-blanco {
        width: 50%;
        text-align: right;
        padding: 10% 0 10% 5%;
        align-content: center;
    }

    .img-blanco-negro {
        width: 50%;

    }

    .img-blanco-negro img {
        height: 500px;
        text-align: left;
        margin-bottom: 0;
    }

    .negro {
        display: flex;
        padding: 5%;
    }

    .texto-negro {
        order: 1;
        width: 50%;
        text-align: left;
        align-content: center;
        padding: 10% 5% 10% 0;
    }

    .negro .img-blanco-negro {
        order: 2;
        width: 50%;
    }

    .condiciones {
        padding: 60px 100px;
    }

    .invitacion-servicios h2 {
        font-size: 30px;
    }

    .boton-contactanos-servicios a {
        padding: 18px 40px;
        border-radius: 30px;
        font-size: 22px;
        margin-right: 10px;
    }

    .boton-escribenos-servicios a {
        padding: 18px 40px;
        border-radius: 30px;
        font-size: 22px;
    }

    .export h2 {
        font-size: 45px;
        line-height: 40px;
    }

    .export p {
        font-size: 30px;
        line-height: 27px;
    }
}

@media screen and (min-width: 1024px) {
    .inicio-servicios {
        padding-left: 40px;
    }

    .textoinicial-tfp h2 {
        font-size: 28px;
        padding: 15px 40px;
    }

    .textoinicial h2 {
        font-size: 40px;
        line-height: 45px;
        padding: 15px 40px;
    }

    .textoinicial p {
        font-size: 20px;
        padding: 15px 40px;
    }

    .img-titulo img {
        height: 400px;
    }

    .diseño-medida h2 {
        font-size: 50px;
    }

    .diseño-medida p {
        font-size: 20px
    }

    .texto-blanco h2 {
        font-size: 45px;
        line-height: 40px;
    }

    .texto-blanco p {
        font-size: 20px;
    }

    .texto-negro h2 {
        font-size: 45px;
        line-height: 50px;
    }

    .texto-negro p {
        font-size: 20px;
    }

    .img-blanco-negro img {
        height: 700px;
    }

    .condiciones {
        padding: 100px 120px;
    }

    .condiciones h2 {
        font-size: 45px;
        margin-bottom: 40px;
    }

    .condiciones p {
        font-size: 20px;
    }

    .invitacion-servicios h2 {
        font-size: 45px;
        line-height: 50px;
    }

    .boton-contactanos-servicios a {
        padding: 28px 50px;
        border-radius: 60px;
        font-size: 30px;
        margin-right: 10px;
    }

    .boton-escribenos-servicios a {
        padding: 28px 50px;
        border-radius: 60px;
        font-size: 30px;
    }

    .invitacion-servicios h2 {
        padding: 0 0 70px 0;
    }

}

/* FOOTER */

.footer {
    background-color: white;
    margin: auto;
    padding: 50px 20px;
    width: 100%;
}

.footer-siguenos {
    padding: 0 20%;

}

.logo-footer img {
    align-items: center;
    width: 100px;
    margin: auto;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iconos img {
    align-items: center;
    height: 100%;
    width: 40px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iconos img:last-child {
    margin-right: 10px;
}


.footer h4 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    margin-bottom: 10px;
    width: 100%;
    padding: 8%;
    text-align: center;
}

.listas-footer {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    display: flex;
    font-size: small;
    justify-content: space-between;
    padding: 0 10%;
}

#numero1 {
    margin-right: 30px;
}

.footer-texto {
    padding-left: 0px;
}

.listas-footer ul li {
    margin-bottom: 7px;
    list-style-type: disc;
}

.listas-footer ul {
    margin-bottom: 10px;
}

.listas-footer a {
    font-size: 10px;
    font-weight: 700;
    color: #000000;
}


.listas-footer a:hover {
    color: #BE3A34;
}

.footer-siguenos {
    text-align: center;
}

.footer-siguenos a {
    display: inline-block;
    gap: 20px;
}

.footer-siguenos h4 {
    margin-bottom: 10px;
    font-weight: 800;
}

.footer-negro {
    background-color: black;
    color: white;
    font-family: inter;
    padding: 1px;
    text-align: center;
    font-weight: 600;
    margin-top: -50px;
}



.iconos {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;

}

/* CONTÁCTENOS */

.contenedor-titulo-contactenos {
    background-color: #A22A0A;
    margin: auto;
    padding: 25px 25px;

}

.contenedor-izq-contacto,
.iconos-opciones-contacto,
.mapa-contactenos-texto {
    padding-top: 20px;
}

#titulo-contactenos {
    font-family: inter;
    color: white;
    margin-bottom: 20px;
}

.contenedor-imagen-contactenos img {
    max-width: 100%;
    height: auto;
}

.contenedor-texto-contactenos {
    margin: auto;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 90%;
    padding: 20px 25px;
    font-size: small;
}


.texto-contactenos h3 {
    margin: 10px;
    font-family: "Inter", sans-serif;
}

.texto-contactenos p {
    margin: 10px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
}


.contenedor-opciones-contacto {
    background-color: #BE3A34;
    margin: auto;
    padding: 30px;
    position: relative;
    margin-bottom: -20px;
}

.subir-contenedor {
    background-color: #BE3A34;
}

#contactanos {
    font-family: "Inter", sans-serif;
    color: white;
    font-size: 25px;
    margin-bottom: 15px;

}

.contenedor-izq-contacto p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-size: small;
    color: #ffffff;
    font-size: 15px;
}

.opcion-contacto {
    display: flex;
    justify-content: left;
    align-items: center;
}

.imagen-contacto img {
    width: 35px;
    height: 35px;
}

.imagen-contacto,
.texto-contacto {
    margin: 5px;

}

.texto-contacto {
    color: white;
    font-weight: 200;
}

.texto-contacto p {
    text-align: left;
}

.texto-contacto span {
    font-weight: 600;
}

.contacto-directo {
    display: none;
    background-color: white;
    padding: 40px 35px;
    border-radius: 20px;
    font-family: inter;
    color: grey;
    overflow: hidden;
    max-width: 350px;
    margin: auto;
    margin-top: 20px;
}

.contacto-directo input[type="text"],
.contacto-directo input[type="email"],
.contacto-directo textarea {
    border: none;
    border-bottom: 1px solid grey;
    padding-bottom: 0px;
    margin-bottom: 10px;
    background-color: transparent;
    width: calc(100% - 2px);

}

.contacto-directo button[type="submit"] {
    background-color: #6F838C;
    color: white;
    border: none;
    font-family: inter;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    width: 70%;
    height: 50px;
    text-align: center;
    margin-top: 20px;
    margin: 0 auto;
    display: block;
}

.contacto-directo button[type="submit"]:hover {
    background-color: #4a616b;
}

.contacto-directo h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    color: black;
    font-weight: 500;
}


.contenedor-mapa-contactenos {
    width: 85%;
    margin: auto;
    margin-top: -80px;
    background-color: white;
    padding: 100px 0 0;

}



#encuentranos-en-maps {
    font-family: "Inter", sans-serif;
    text-align: center;
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 25px;
}

.mapa-contactenos-texto p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    text-align: center;
    font-size: small;

}

.mapa-maps iframe {
    width: 100%;
}

.mapa-maps {
    border: 10px solid #6F838C;
    margin-top: 30px;

}

@media screen and (min-width: 370px) {
    .listas-footer {
        padding: 0 15%;
    }

    .footer-siguenos {
        padding: 0 20%;

    }

    .iconos {
        padding: 0 10%;
    }

    .contenido-footer {
        margin: 0;
    }

    .footer-texto {
        margin-right: 15px;
    }

    .listas-footer ul a {
        font-size: 15px;
        font-weight: 700;
    }

    .footer h4 {
        font-size: 20px;
    }
}

@media screen and (min-width: 500px) {
    .listas-footer {
        padding: 0 25%;
    }

    .iconos {
        padding: 0 20%;
    }

    .listas-footer {
        display: flex;
        justify-content: space-between;
    }

    #numero1 {
        margin-right: 40px;
    }

    .contenido-footer {
        padding: 0 5%;
    }

}

@media screen and (min-width: 768px) {

    /* CONTÁCTENOS */
    #contactanos {
        font-size: 30px;
        text-align: left;
    }

    #encuentranos-en-maps {
        font-size: 30px;
    }

    .contenedor-texto-contactenos h1 {
        width: 80%;
        padding: 80px;
    }

    .contenedor-texto-contactenos {
        font-size: medium;
        width: 85%;
    }

    .contenedor-izq-contacto {
        width: 85%;
        margin-bottom: 20px;
    }

    .contenedor-izq-contacto p {
        font-size: medium;
        width: 100%;
        font-size: 20px;
        text-align: left;
        padding: 0;
    }

    .contacto-directo {
        margin: auto;
        max-width: 550px;
    }

    .mapa-contactenos-texto p {
        font-size: medium;
    }

    .contenedor-texto-contactenos br {
        display: none;
    }

    /*FOOTER*/

    .contenido-footer {
        display: flex;
        justify-content: space-between;
        padding: 0 25%;
    }

    .footer-siguenos {
        padding: 0%;
    }

    .listas-footer {
        padding: 0;
    }

    .listas-footer ul {
        margin-bottom: 10px;
    }

    .logo-footer img {
        width: 160px;
    }

    .footer {
        margin-bottom: 50px;
    }

    .iconos img {
        height: 100%;
        margin-bottom: 0;
    }

    .iconos {
        padding: 0;
    }

}



@media screen and (min-width: 1024px) {

    /* CONTÁCTENOS */
    #contactanos {
        font-size: 40px;
    }

    #encuentranos-en-maps {
        font-size: 40px;
    }

    .contenedor-izq-contacto {
        font-size: 35px;
    }

    .iconos-opciones-contacto {
        align-content: le;
    }

    #titulo-contactenos {
        padding-left: 150px;
    }

    .contenedor-texto-contactenos {
        width: 70%;
        padding: 50px 0;
    }

    .subir-contenedor {
        width: 90%;
        margin: auto;
    }

    .contacto-directo {
        margin: auto;
        max-width: 410px;
    }

    .mapa-contactenos-texto {
        width: 80%;
        margin: auto;
    }

    /*FOOTER*/

    .footer {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .contenido-footer {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .footer-texto {
        width: 70%;
    }

    .logo-footer img {
        width: 160px;
    }

    .logo-footer {
        margin-right: 60px
    }

    .listas-footer br {
        display: none;
    }

    .footer-texto {
        padding-left: 0px;
    }

}

/*ASESORIA*/

.inicio-asesoria {
    background-color: #6F838C;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 20px;
    padding: 25px 25px;
    color: #ffffff;
}

.texto-blanco-asesoria h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    margin-bottom: 15px;
}

.texto-negro-asesoria h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    margin-bottom: 15px;
}

.texto-negro-asesoria {
    color: #ffffff;
    text-align: center;
}

.condiciones-asesoria {
    padding: 30px 30px;
    background-color: #6F838C;
    text-align: center;
    color: #ffffff;
    align-content: center;
}

@media screen and (min-width: 768px) {
    .inicio-asesoria {
        font-size: 30px;
    }

    .texto-blanco-asesoria {
        width: 50%;
        text-align: right;
        padding: 10% 0 10% 5%;
        align-content: center;
    }

    .texto-negro-asesoria {
        order: 1;
        width: 50%;
        text-align: left;
        align-content: center;
        padding: 10% 5% 10% 0;
    }

    .condiciones-asesoria {
        padding: 60px 50px;
    }
}

@media screen and (min-width: 1024px) {
    .inicio-asesoria {
        padding-left: 40px;
    }

    .texto-blanco-asesoria h2 {
        font-size: 28px;
    }

    .texto-negro-asesoria h2 {
        font-size: 28px;
    }

    .condiciones-asesoria {
        padding: 100px 120px;
    }

    .condiciones-asesoria h2 {
        font-size: 35px;
        margin-bottom: 40px;
    }

    .condiciones-asesoria p {
        font-size: 20px;
    }
}

/*CONSULTORÍA*/

.inicio-consultoria {
    background-color: #A1A1A1;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 20px;
    padding: 25px 25px;
    color: #ffffff;
}

.diseño-medida-consulta {
    padding: 35px 25px;
    text-align: center;
    background-color: #A1A1A1;
    color: #ffffff;
}

.textoinicial-consultoria h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 30px;
    padding: 40px 25px;
    line-height: 35px;
}

.texto-medida-pregunta h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 20px;
    margin-bottom: 30px;
}

.tarjetas-consultoria {
    padding: 0 5%;
    display: inline-block;
}

.tarjetas-blancas-consultoria {
    background-color: #ffffff;
    padding: 10%;
    margin-bottom: 20px;
    border-radius: 50px;
    height: 350px;
    max-width: 400px;
    align-content: center;
}

.tarjetas-blancas-consultoria h2 {
    color: #000000;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 18px;
    font-weight: 800;
}

.tarjetas-blancas-consultoria p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    color: #000000;
    font-weight: 500;
    font-size: 15px;
}

.export-consultoria h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
}

.condiciones-consultoria {
    padding: 40px 30px;
    background-color: #000000;
    text-align: center;
    color: #ffffff;
}

@media screen and (min-width: 350px) {
    .tarjetas-blancas-consultoria {
        height: 450px;
        max-width: 450px;
    }

    .tarjetas-blancas-consultoria h2 {
        font-size: 25px;
        font-weight: 800;
    }

    .tarjetas-blancas-consultoria p {
        font-weight: 500;
        font-size: 20px;
    }

    .texto-medida-pregunta h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 768px) {
    .inicio-consultoria {
        font-size: 30px;
    }

    .texto-medida-pregunta h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .tarjetas-blancas-consultoria {
        height: 450px;
        max-width: 470px;
    }

    .texto-medida-pregunta h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .tarjetas-consultoria {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 5% 0 0;
        justify-items: center;
    }

    .textoinicial-consultoria h2 {
        font-size: 30px;
        padding: 40px 200px 40px 25px;
    }

    .export-consultoria h2 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 15px;
        padding: 0 8%;
    }
}

@media screen and (min-width: 1024px) {
    .inicio-consultoria {
        font-size: 40px;
    }

    .export-consultoria h2 {
        font-size: 30px;
        line-height: 35px;
    }

    .textoinicial-consultoria h2 {
        font-size: 32px;
        padding: 40px 350px 40px 25px;
    }

    .texto-medida-pregunta h2 {
        font-size: 35px;
        max-width: 1100px;
        margin: auto;
    }

    .tarjetas-blancas-consultoria {
        height: 500px;
        max-width: 500px;
        margin-right: 20px;
    }

    .tarjetas-blancas-consultoria h2 {
        font-size: 27px;
    }

    .tarjetas-blancas-consultoria p {
        font-size: 22px;
    }
    .tarjetas-consultoria {
       max-width: 1100px;
       margin: auto;
    }

}

/*DISEÑO*/

.inicio-diseno {
    background-color: #8F653A;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 20px;
    padding: 25px 25px;
    color: #ffffff;
}

.texto-blanco-diseno h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 25px;
    line-height: 27px;
    margin-bottom: 15px;
}

.texto-blanco-diseno h3 {
    margin: 20px 0 10px 0;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    padding: 0 10%;
}


.texto-blanco-diseno p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    padding: 0 8%;
}

.texto-negro-diseno {
    color: #ffffff;
    text-align: center;
}

.texto-negro-diseno h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 25px;
    line-height: 27px;
    margin-bottom: 15px;
}

.sub {
    margin: 20px 0 10px 0;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
}

.texto-negro-diseno h3 {
    margin: 20px 0 10px 0;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    padding: 0 10%;
}

.texto-negro-diseno p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    padding: 0 8%;
}

.condiciones-diseno {
    padding: 30px 25px;
    background-color: #8F653A;
    text-align: center;
    color: #ffffff;
}

.img-blanco-negro-diseno img {
    height: 150px;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .img-blanco-negro-diseno {
        width: 50%;
    }

    .inicio-diseno {
        font-size: 30px;
    }

    .texto-blanco-diseno {
        width: 50%;
        text-align: right;
        padding: 6% 0 6% 5%;
        align-content: center;
    }

    .blanco .img-blanco-negro-diseno img {
        height: 780px;
        text-align: left;
        margin-bottom: 0;
    }

    .texto-blanco-diseno h2 {
        font-size: 35px;
        line-height: 40px;
    }

    .texto-blanco-diseno h3 {
        padding: 0 0 0 8%;
        font-size: 20px;
    }

    .texto-blanco-diseno p {
        padding: 0 0 0 15%;
        font-size: 15px;
    }

    .texto-negro-diseno h2 {
        font-size: 35px;
        line-height: 40px;
    }

    .texto-negro-diseno h3 {
        padding: 0 8% 0 0;
        font-size: 20px;
    }

    .texto-negro-diseno p {
        padding: 0 15% 0 0;
        font-size: 15px;
    }

    .texto-negro-diseno {
        order: 1;
        width: 50%;
        text-align: left;
        align-content: center;
        padding: 6% 5% 6% 0;
    }

    .negro .img-blanco-negro-diseno img {
        height: 1020px;
        text-align: left;
        margin-bottom: 0;
    }

    .negro .img-blanco-negro-diseno {
        order: 2;
        width: 50%;
    }

    .condiciones-diseno {
        padding: 60px 100px;
    }

}

@media screen and (min-width: 1024px) {
    .inicio-diseno {
        padding-left: 40px;
    }

    .texto-negro-diseno h2 {
        font-size: 45px;
        line-height: 48px;
    }

    .texto-blanco-diseno h2 {
        font-size: 45px;
        line-height: 48px;
    }

    .texto-blanco-diseno h3 {
        font-size: 25px;
    }

    .texto-blanco-diseno p {
        padding: 0 0 0 20%;
        font-size: 18px;
    }

    .texto-negro-diseno h3 {
        padding: 0 8% 0 0;
        font-size: 25px;
    }

    .texto-negro-diseno p {
        padding: 0 20% 0 0;
        font-size: 18px;
    }

    .blanco .img-blanco-negro-diseno img {
        height: 740px;
    }

    .negro .img-blanco-negro-diseno img {
        height: 990px;
    }

    .condiciones-diseno {
        padding: 100px 120px;
    }

    .condiciones-diseno h2 {
        font-size: 45px;
        margin-bottom: 30px;
    }

    .condiciones-diseno p {
        font-size: 20px;
    }
}

/*INSUMOS*/

.inicio-insumos {
    background-color: #5B4E4E;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 20px;
    padding: 25px 25px;
    color: #ffffff;
}

.img-blanco-negro-mini img {
    height: 150px;
    margin-bottom: 20px;
}

.blanco-mini {
    padding: 35px 20px;
    text-align: center;
}

.texto-blanco-insumos h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 25px;
    line-height: 27px;
}


.texto-blanco-mini h3 {
    margin: 0 0 10px 0;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    padding: 0 10%;
}

.texto-blanco-mini p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    padding: 0 8%;
}

.negro-mini {
    padding: 35px 25px;
    background-color: #000000;
}

.texto-negro-mini {
    color: #ffffff;
    text-align: center;
}

.texto-negro-mini h3 {
    margin: 0 0 10px 0;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    padding: 0 10%;
}

.texto-negro-mini p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    padding: 0 8%;
}

.condiciones-insumos {
    padding: 30px 30px;
    background-color: #5B4E4E;
    text-align: center;
    color: #ffffff;
    align-content: center;
}

.export-insumos h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 25px;
    line-height: 27px;
    margin-bottom: 15px;
}

.export-insumos p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
    .inicio-insumos {
        font-size: 30px;
    }

    .img-blanco-negro-mini {
        width: 50%;
    }

    .texto-blanco-insumos h2 {
        font-size: 35px;
        line-height: 27px;
    }

    .blanco-mini {
        display: flex;
        padding: 5%;
    }

    .texto-blanco-mini {
        width: 50%;
        text-align: right;
        padding: 10% 0 10% 5%;
        align-content: center;
    }

    .texto-blanco-mini h3 {
        padding: 0 0 0 8%;
        font-size: 30px;
    }

    .texto-blanco-mini p {
        padding: 0 0 0 15%;
        font-size: 20px;
    }

    .blanco-mini .img-blanco-negro-mini img {
        height: 550px;
        text-align: left;
        margin-bottom: 0;
    }

    .texto-negro-mini h3 {
        padding: 0 8% 0 0;
        font-size: 30px;
    }

    .texto-negro-mini p {
        padding: 0 15% 0 0;
        font-size: 20px;
    }

    .texto-negro-mini {
        order: 1;
        width: 50%;
        text-align: left;
        align-content: center;
        padding: 10% 5% 10% 0;
    }

    .negro-mini {
        display: flex;
        padding: 5%;
    }

    .negro-mini .img-blanco-negro-mini img {
        height: 550px;
        text-align: left;
        margin-bottom: 0;
    }

    .negro-mini .img-blanco-negro-mini {
        order: 2;
        width: 50%;
    }

    .condiciones-insumos {
        padding: 60px 100px;
    }
}

@media screen and (min-width: 1024px) {
    .inicio-insumos {
        padding-left: 40px;
    }

    .texto-blanco-insumos h2 {
        font-size: 45px;
        line-height: 27px;
    }

    .texto-blanco-mini h3 {
        padding: 0 0 0 8%;
        font-size: 40px;
    }

    .texto-blanco-mini p {
        padding: 0 0 0 15%;
        font-size: 25px;
    }

    .blanco-mini .img-blanco-negro-mini img {
        height: 700px;
    }

    .texto-negro-mini h3 {
        padding: 0 8% 0 0;
        font-size: 40px;
    }

    .texto-negro-mini p {
        padding: 0 15% 0 0;
        font-size: 25px;
    }

    .negro-mini .img-blanco-negro-mini img {
        height: 700px;
    }

    .condiciones-insumos {
        padding: 100px 120px;
    }

    .condiciones-insumos h2 {
        font-size: 35px;
        margin-bottom: 20px;
        line-height: 35px;
    }

    .condiciones-insumos p {
        font-size: 20px;
    }
}

/*CORTE*/

.inicio-corte {
    background-color: #C0AC7E;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 20px;
    padding: 25px 25px;
    color: #ffffff;
}

.img-blanco-negro-corte img {
    height: 150px;
    margin-bottom: 20px;
}

.condiciones-corte {
    padding: 30px 25px;
    background-color: #C0AC7E;
    text-align: center;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .inicio-corte {
        font-size: 30px;
    }

    .img-blanco-negro-corte {
        width: 50%;
    }

    .blanco .img-blanco-negro-corte img {
        height: 680px;
        text-align: left;
        margin-bottom: 0;
    }

    .negro .img-blanco-negro-corte img {
        height: 750px;
        text-align: left;
        margin-bottom: 0;
    }

    .negro .img-blanco-negro-corte {
        order: 2;
        width: 50%;
    }

    .condiciones-diseno {
        padding: 60px 100px;
    }
}

@media screen and (min-width: 1024px) {
    .inicio-corte {
        font-size: 40px;
    }

    .condiciones-corte {
        padding: 100px 120px;
    }

    .condiciones-corte h2 {
        font-size: 45px;
        margin-bottom: 30px;

    }

    .condiciones-corte p {
        font-size: 30px;
        line-height: 30px;
    }
}

/*CONFECCION*/

.inicio-confeccion {
    background-color: #AE9881;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 20px;
    padding: 25px 25px;
    color: #ffffff;
}

.img-blanco-negro-confeccion img {
    height: 150px;
    margin-bottom: 20px;
}

.condiciones-confeccion {
    padding: 30px 25px;
    background-color: #AE9881;
    text-align: center;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .inicio-confeccion {
        font-size: 25px;
    }

    .inicio-confeccion br {
        display: none;
    }

    .img-blanco-negro-confeccion {
        width: 50%;
    }

    .blanco .img-blanco-negro-confeccion img {
        height: 890px;
        text-align: left;
        margin-bottom: 0;
    }

    .negro .img-blanco-negro-confeccion img {
        height: 880px;
        text-align: left;
        margin-bottom: 0;
    }

    .negro .img-blanco-negro-confeccion {
        order: 2;
        width: 50%;
    }

    .condiciones-confeccion {
        padding: 60px 100px;
    }
}

@media screen and (min-width: 1024px) {
    .inicio-confeccion {
        font-size: 30px;
    }

    .img-blanco-negro-confeccion {
        align-content: center;
    }

    .condiciones-confeccion {
        padding: 100px 120px;
    }

    .condiciones-confeccion h2 {
        font-size: 45px;
        margin-bottom: 30px;
        line-height: 50px;

    }

    .condiciones-confeccion p {
        font-size: 30px;
        line-height: 30px;
    }
}

/*EXPORTACION*/

.inicio-exportacion {
    background-color: #95554A;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 20px;
    padding: 25px 25px;
    color: #ffffff;
}

.img-blanco-negro-confeccion img {
    height: 150px;
    margin-bottom: 20px;
}

.condiciones-exportacion {
    padding: 30px 25px;
    background-color: #95554A;
    text-align: center;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .inicio-exportacion {
        font-size: 30px;
    }

    .img-blanco-negro-confeccion {
        width: 50%;
    }

    .blanco .img-blanco-negro-confeccion img {
        height: 890px;
        text-align: left;
        margin-bottom: 0;
    }

    .negro .img-blanco-negro-confeccion img {
        height: 880px;
        text-align: left;
        margin-bottom: 0;
    }

    .negro .img-blanco-negro-confeccion {
        order: 2;
        width: 50%;
    }

    .condiciones-exportacion {
        padding: 60px 100px;
    }
}

@media screen and (min-width: 1024px) {
    .inicio-exportacion {
        font-size: 40px;
    }

    .condiciones-expertacion {
        padding: 100px 120px;
    }

    .condiciones-exportacion h2 {
        font-size: 45px;
        margin-bottom: 40px;

    }

    .condiciones-exportacion p {
        font-size: 30px;
        line-height: 30px;
    }
}

.inicio-contactanos {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 20px;
    padding: 25px 25px;
    color: #000000;
}

@media screen and (min-width: 768px) {
    .inicio-contactanos {
        font-size: 30px;
    }
}

@media screen and (min-width: 1024px) {
    .inicio-contactanos {
        font-size: 40px;
    }
}

/* GOTOP */




@media screen and (min-width: 768px) {
    #boton {
        display: inline-block;
        background-color: #333;
        width: 45px;
        height: 45px;
        text-align: center;
        border-radius: 5px;
        position: fixed;
        bottom: 20px;
        right: 20px;
        transition: background-color .3s,
            opacity .5s, visibility .5s;
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
        align-content: center;
    }
    
    #boton::after {
        content: "\f077";
        font-family: FontAwesome;
        font-weight: normal;
        font-style: normal;
        font-size: 30px;
        line-height: 45px;
        color: #fff;
        margin-bottom: -12px;
    }
    
    #boton:hover {
        cursor: pointer;
        background-color: #525151;
    }
    
    #boton:active {
        background-color: #555555;
    }
    
    #boton.show {
        opacity: 1;
        visibility: visible;
    }
    
}

@media screen and (min-width: 1024px) {
    #boton {
        width: 50px;
        height: 50px;
        bottom: 30px;
        right: 30px;
    }

    #boton::after {
        font-size: 35px;
        line-height: 43px;
    }

}