@font-face {
    font-family: "Poppins-Light";
    src: url("./fonts/Poppins-Light.ttf") format("opentype");
}

@font-face {
    font-family: "Poppins-Regular";
    src: url("./fonts/Poppins-Regular.ttf") format("opentype");
}

@font-face {
    font-family: "Poppins-Medium";
    src: url("./fonts/Poppins-Medium.ttf") format("opentype");
}

@font-face {
    font-family: "Poppins-SemiBold";
    src: url("./fonts/Poppins-SemiBold.ttf") format("opentype");
}

@font-face {
    font-family: "Poppins-Bold";
    src: url("./fonts/Poppins-Bold.ttf") format("opentype");
}

@font-face {
    font-family: "Sarabun";
    src: url("./fonts/Sarabun-SemiBoldItalic.ttf") format("opentype");
}


:root {
    --pink: #EE9AE5;
    --light-blue: #72DDF7;
    --purple: #8093F1;
    --purple_2: #95AEF4;
    --white: #fff;
    --brown: #5F5F5F;
    --brown_2: #3F3F3F;
    --blue: #4C6FFF; 
    --font_light: "Poppins-Light";
    --font_regular: "Poppins-Regular";
    --font_medium: "Poppins-Medium";
    --font_semibold: "Poppins-SemiBold";
    --font_bold: "Poppins-Bold";
    --font_sarabun: "Sarabun";
}

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}


body {
    font-size: 100%;
    list-style-type: none;
    font-family: var(--font_medium);
    color: var(--brown);
}

ul {
    list-style: none;
}

a{
    text-decoration: none;
}

.text-light-blue {
    color: var(--light-blue);
}

.text-blue {
    color: var(--blue);
}

.text-purpure {
    color: var(--purple);
}

.text-purpure-2 {
    color: var(--purple_2);
}

.text-brown-2 {
    color: var(--brown_2);
}

.centrado-vertical {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}

.centrado-horizontal {
    display: flex;
    justify-content: center;
    align-content: center;
}

h1 {
    font-size: 64px;
    font-family: var(--font_bold);
    padding-bottom: 80px;
}

h2 {
    font-size: 48px;
    font-family: var(--font_semibold);
}

h3 {
    font-size: 32px;
    font-family: var(--font_semibold);
}

h4 {
    font-size: 24px;
    font-family: var(--font_bold);
}

h5 {
    font-size: 16px;
    font-family: var(--font_medium);
}

/* Nav */

nav {
    background: #FAFAFA !important;
    display: flex;
    height: 80px;
    padding: 0px 40px;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.25);
}

/*hambuerguesa*/

.navbar-toggler-azul .navbar-toggler-icon {
    filter: invert(33%) sepia(54%) saturate(1586%) hue-rotate(228deg) brightness(92%) contrast(91%);
}

.navbar-toggler-azul {
    border: 2px solid #a799e3;
}

.navbar-toggler-azul:focus {
    box-shadow: 0 0 10px #6495ED !important;
}

nav .btn-rosa {
    display: flex;
    width: 120px;
    height: 39px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background-color: var(--pink);
    border-radius: 20px;
    box-shadow: 0px 8px 16px 0px rgba(37, 211, 102, 0.25);
    transition: 0.5s all ease;
    font-size: 13px;
}

nav .btn-rosa:hover {
    color: var(--brown_2);
    background-color: var(--purple_2);
    transform: scale(1.05);
    font-size: 80%;
}

nav a {
    color: var(--white);
    font-family: var(--font_medium)
}

#navbarMenu ul a{
    margin: 0 1rem;
    transition: transform 0.2s ease-in-out;
}

#navbarMenu ul a:hover{
    transform: scale(1.2);
}

.logo img {
    max-width: 130px;
}

/*Footer*/

.footer {
    display: block;
    font-size: 14px;
    background: rgba(149, 174, 244, 0.05);
}

.logo-nombre {
    color: var(--light-blue);
    font-family: var(--font_sarabun);
    font-size: 96px;
}

.menu-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    margin-right: 2rem;
}

.raya {
    margin-top: -0.5rem;
}

.redes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.redes li {
    padding: 0 0.1rem;
    box-sizing: border-box;
}

.footer-bottom {
    text-align: center;
    padding-top: 1vw;
    padding-bottom: 1.5vw;
    font-size: 11px;
    font-family: var(--font_medium);
}

.footer-bottom span {
    color: var(--purple_2);
}

.footer a {
    color: var(--brown);
}

.footer .col {
    margin: 0 1rem;
}

.close {
    display: none;
}

/* .section-info {
    background: rgba(128, 147, 241, 0.20);
} */

.section-info h1{
    padding: 200px 0 70px 0;
    background: linear-gradient(180deg, #5F5F5F 0%, rgba(95, 95, 95, 0.80) 47.4%, rgba(95, 95, 95, 0.68) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} 

.section-info h1 span{
    padding: 200px 0 70px 0;
    background: linear-gradient(180deg, #8093F1 0%, #EE9AE5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} 

.section-info p {
    max-width: 559px;
    font-size: 24px;
    line-height: 40px;
}

.image{
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 1;
}

.section-info .container div{
    min-height: 786px;
}

.btn-rosa {
    display: flex;
    width: 196px;
    height: 39px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background-color: var(--pink);
    border-radius: 20px;
    box-shadow: 0px 8px 16px 0px rgba(37, 211, 102, 0.25);
    transition: 0.5s all ease;
}

.btn-rosa:hover {
    color: var(--brown_2);
    background-color: var(--purple_2);
    font-size: 105%;
}

.btn-celeste {
    display: flex;
    width: 170px;
    height: 60px;
    flex-shrink: 0;
    font-family: var(--font_semibold);
    font-size: 24px;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background-color: var(--light-blue);
    border: none;
    border-radius: 20px;
    transition: 0.5s all ease;
}

.btn-celeste:hover {
    color: var(--brown_2);
    background-color: var(--purple_2);
}

.section-bases {
    padding: 150px 0 100px 0;
}

.section-bases p {
    font-size: 20px;
    max-width: 536px;
    padding: 50px 0;
}

.section-bases h2 {
    color: var(--light-blue);
}

.section-bases h3 {
    color: var(--purple_2);
}

.section-ventajas {
    padding: 120px 0 240px 0;
    background: rgba(113, 221, 247, 0.30);
}

.section-ventajas li {
    line-height: 50px;
    font-size: 20px;
    list-style: disc;
}

.prueba {
    width: 599px;
    height: 897.079px;
}

.section-innovacion {
    padding: 100px 0;
}

.section-innovacion .descripcion {
    max-width: 820px;
    padding: 20px 0 100px 0;
    text-align: center;
    max-width: 820px;
    font-size: 20px;
    font-family: var(--font_light);
}

.section-innovacion p {
    font-size: 15px;
}

.info-ventajas {
    max-width: 500px;
}

.container-icono {
    display: flex;
    width: 120px;
    height: 120px;
    padding: 23px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 35px;
}

.container-verde {
    background: rgba(114, 221, 247, 0.20);
}

.container-rosa {
    background: rgba(247, 174, 248, 0.20);
}

.container-azul {
    background: rgba(128, 147, 241, 0.20);
}

.contenedor-innovacion {
    display: flex;
    min-height: 480px !important;
    padding: 30px 12px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
    border-radius: 40px 40px 0px 0px;
    margin: 0 1rem;
    box-sizing: border-box;
}

.sombra-inteligencia {
    box-shadow: 20px 20px 70px 0px rgba(114, 221, 247, 0.20);
}

.sombra-experiencia {
    box-shadow: 20px 20px 70px 0px rgba(247, 174, 248, 0.30);
}

.sombra-blockchain {
    box-shadow: 20px 20px 70px 0px rgba(128, 147, 241, 0.20);
}

.section-nosotros {
    background: url(../images/Nosotros.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 120px 0px;
}

.section-nosotros h1 {
    font-size: 72px;
}

.section-nosotros h1 span{
    background: linear-gradient(180deg, #F7AEF8 0%, #8093F1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 80px;
}

.section-nosotros p {
    font-size: 20px;
}

.section-nosotros .descripcion-taet {
    max-width: 638px;
    line-height: 36px;
    font-size: 24px;
}

.section-nosotros img {
    max-height: 668px;
    padding-bottom: 3rem;
}

.section-soluciones {
    padding: 50px 0 200px 0;
}

.section-soluciones h2 {
    margin-bottom: 100px;
}

.degradado-1 {
    background: linear-gradient(180deg, #8180F1 0%, #F7AEF8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.degradado-2 {
    background: linear-gradient(180deg, #F7AEF8 0%, #8093F1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.separador {
    width: 60px;
    position: absolute;
    margin: 100px 50%;
    transform: translate(-50%);
}

.solucion {
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: start;
}

.solucion h3 {
    color: var(--purple);
    font-size: 30px;
}

.solucion p {
    font-size: 20px;
}

.solucion .img-fluid {
    border-radius: 20px;
    box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.20), -10px -10px 30px 0px rgba(255, 255, 255, 0.80);
}

.section-contacto {
    padding: 90px 0;
}

.section-contacto p {
    max-width: 536px;
    font-size: 24px;
}


.section-contacto input, .section-contacto textarea {
    border-radius: 10px;
    border: 1px solid rgba(171, 152, 186, 0.50);
    color: var(--brown) !important;
    height: 60px;
    font-size: 20px;
}

.section-contacto textarea {
    height: 185px;
}

.section-contacto input::placeholder, .section-contacto textarea::placeholder {
    color: #AB98BA;
}

.section-contacto h1 {
    font-family: var(--font_semibold);
    color: var(--purple);
}

.section-info-contacto {
    background: url(../images/bg-contactos.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 50px 50px 70px 50px;
}

.section-info-contacto h5 {
    font-size: 28px;
    padding-bottom: 1rem;
}

.section-info-contacto p {
    font-size: 24px;
    font-family: var(--font_regular);
    padding-bottom: 1rem;
}

.section-info-contacto li {
    font-size: 20px;
    font-family: var(--font_regular);
}

.iconos-contactos span{
    margin-left: 1rem;
}

.iconos-contactos li:not(.ultimo) {
    padding-bottom: 2rem;
}

.iconos-contactos {
    padding-left: 0;
}

.iconos-contactos .ciudad {
    margin-left: 3rem;
}

.iconos-redes {
    display: flex;
    padding: 0;
}

.iconos-redes li {
    margin-right: 1rem;
}

#contenedor-celulares, #contenedor-celulares-phone {
    position: relative;
    width: 100%;
    height: 100%;
}

#contenedor-celulares-phone {
    margin-top: -30px !important;
}

.celulares, .celulares-phone {
    position: absolute;
    transition: opacity 1s;
    opacity: 0;
    margin-left: 50%;
    transform: translate(-35%,0);
}

.celulares-phone {
    transform: translate(-50%,0);
    width: 500px !important;
}

.celulares.activo, .celulares-phone.activo {
    opacity: 1;
}

.contenedor-base {
    position: absolute;
    transition: opacity 1s;
    opacity: 0;
}

.contenedor-base.activo {
    opacity: 1;
}

@media (max-width: 767px) {
    .close {
        display: flex;
        position: absolute;
        left: 85%;
        top: -25px;
    }

    .section-nosotros {
        text-align: center;
        padding: 50px 0px;
    }

    .section-nosotros h1 {
        padding-bottom: 1rem;
    }

    .section-soluciones {
        padding-bottom: 50px;
    }

    .solucion img{
        margin-bottom: 2rem;
    }

    .solucion {
        text-align: center;
    }

    .separador {
        display: none;
    }

    .section-contacto {
        text-align: center;
        padding: 50px 0;
    }

    .section-contacto h1 {
        padding-bottom: 1rem;
    }

    .section-contacto form div:last-of-type {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .redes {
        padding-bottom: 1rem;
    }

    .section-contacto input {
        margin-bottom: 48px;
    }

    .section-info-contacto {
        text-align: center;
        padding: 50px 0;
    }

    .iconos-contactos {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        padding-left: 15px;
        padding-bottom: 2rem;
    }

    .iconos-redes {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
    }

    .section-bases {
        padding-top: 0;
    }

    .celulares {
        position: absolute;
        transition: opacity 1s;
        opacity: 0;
        margin-left: 50%;
        transform: translate(-50%,0);
    }

    .section-info p, .section-contacto p, .section-info-contacto p {
        font-size: 20px;
    }

    .section-nosotros .descripcion-taet {
        font-size: 20px;
    }

    .section-bases p, .section-nosotros p, .solucion p, .section-ventajas li {
        font-size: 18px;
    }

    h1, .section-nosotros h1 {
        font-size: 55px;
        padding-bottom: 1rem !important;
    }
    
    h2 {
        font-size: 42px;
        padding-bottom: 0.5rem !important;
    }
    .section-soluciones h2 {
        margin-bottom: 3rem !important;
    }

    .solucion {
        margin-bottom: 50px;
    }

    .section-contacto input, .section-contacto textarea {
        font-size: 18px;
    }

    .section-bases p {
        padding: 20px 0;
    }

    .btn-celeste {
        width: 150px;
        height: 50px;
        font-size: 20px;
        border-radius: 15px;
        margin-top: 2rem !important;
    }

}

@media (min-width: 992px) {
    .avatar {
        position: absolute;
    }
}

@media (max-width: 1200px) {
    .section-ventajas {
        padding: 120px 0 120px 0;
    }
} 

@media (max-width: 992px) {
    .image {
        max-width: 100%;
    }

    .section-bases h2{
        position: inherit;
        padding-bottom: 1rem;
    }

    .section-bases .container .row div{
        align-items: center !important;
    }

    .section-info h1, .section-info p, .section-bases h2, .section-bases p, .section-bases h3 
    .section-ventajas h2{
        text-align: center;
    }
} 
