
::placeholder {
    color: #736FB4;
}
textarea {
    resize: none;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

html {
    font-family: 'Montserrat', sans-serif;
}

body {
    margin: 0;
}

nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    column-gap: 120px;
}

.nav-logo {
    position: relative;
}
.nav-logo img:first-of-type {
    width: 100%;
}
.nav-logo img:last-of-type {
    position: absolute;
    left: 15%;
    top: 20%;
    width: 20%;
    z-index: 1;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 15px;
}
.nav-links a {
    height: min-content;
    margin-top: 45px;
    color: #52D1B8;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 900;
}
.nav-links a:last-of-type {
    margin-top: 36px;
    padding: 9px 24px;
    border-radius: 20px;
    color: white;
    background: #52D1B8;
    font-weight: bold;
}

.video {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.video__title {
    align-self: end;
    width: clamp(308px, 40%, 1024px);
    padding-bottom: 9%;
}
.video__title h2 { /*CLASS IN MEDIA QUERIES */
    margin: 0 0 0 15%;
    font-weight: 900;
    white-space: nowrap;
}

.video__background {
    position: relative;
    width: clamp(310px, 60%, 1536px);
}
.video__background img {
    width: 100%;
    min-width: 325px;
}
.video__background div {
    position: absolute;
    top: 18%;
    left: 15%;
    right: 8%;
    bottom: 8%;
    background-color: white;
    border-radius: 50px;
    filter: drop-shadow(2px 4px 6px black);
}
.video__background iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 50px;
}

.products { /*CLASS IN MEDIA QUERY */
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 5%;
    row-gap: 20px;
    width: 100%;
    height: 150%;
    margin-top: 35px;
}
.products > img:first-of-type {
    position: absolute;
    width: 100%;
    min-width: 340px;
    height: 100%;
}
.products > img:last-of-type { /*CLASS IN MEDIA QUERY */
    width: 84vh;
    height: 75vh;
    margin-bottom: 20%;
    z-index: 1;
}
.products-title { /*CLASS IN MEDIA QUERY */
    z-index: 1;
}
.products-title h2 {
    margin: 0;
}
.products-title h2:last-of-type {
    margin-bottom: 100px;
}
.products-title a {
    padding: 15px 60px;
    border-radius: 20px;
    color: white;
    background: #52D1B8;
    font-size: clamp(12px, 1.2vw, 24px);
    font-weight: 700;
    text-decoration: none;
}

.products-title__network { /*CLASS IN MEDIA QUERY */
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}
.products-title__network img {
    width: 5%;
}
.products-title__network small {
    font-size: clamp(12px, 1.2vw, 24px);
}
.more-info-mobile {
    display: none;
    order: 3;
    padding: 15px 60px;
    border-radius: 20px;
    color: white;
    background: #52D1B8;
    font-size: clamp(12px, 1.2vw, 24px);
    font-weight: 700;
    text-decoration: none;
}
.show-mobile {
    display: none;
    order: 3;
}

.aboutMe { /*CLASS IN MEDIA QUERY */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 160px;
}
.aboutMe > img:first-of-type {
    width: clamp(310px, 51%, 1408px);
    margin-top: 15px;
    margin-left: 4%;
}
.aboutMe > div:first-of-type {
    margin-top: 15px;
    width: clamp(310px, 45%, 1152px);
}

.info__details {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 325px;
    height: clamp(305px, 95%, 1365px);
    background: url(./assets/OnPaste.20211111-230219.png) no-repeat center center;
    background-size: contain;
    text-align: end;
}
.info__details h3 {
    margin-left: 4%;
    color: #5D57A5;
}

.spaceDifferent {
    margin: 0 6%;
}
.spaceDifferent h2, h3 {
    margin: 0;
}

.grid-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(max(220px, 25%), 1fr));
    margin-top: 75px;
}

.grid-icons__child img {
    width: 25%;
    height: 30%;
    min-height: 70px;
}
.grid-icons__child h5 {
    font-weight: normal;
}

.universeGoco {
    min-width: 332px;
    /* height: clamp(10px, 100%, 1950px); */
    height: auto;
    margin-top: 40px;
    background-color: #5D57A5;
}
.universeGoco > img:first-of-type {
    width: 100%;
    margin-top: -2px;
}
.universeGoco h2, h3 {
    margin: 0;
}

.universoGoco__demo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
}

.demo-inputs { /* CLASS MEDIA QUERY 768px */
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: clamp(288px, 45%, 45%);
    margin-top: 1%;
    margin-bottom: 3%;
    transform: translateX(20%);
}
.demo-inputs div {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.demo-inputs input, select, textarea {
    height: 45px;
    width: 47%;
    padding: 0 1%;
    border: none;
    color: #736FB4;
    background-color: #E2E9FD;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-top: 12px;
}
.demo-inputs textarea {
    padding-top: 8px;
}
.demo-inputs select, textarea {
    min-width: 280px;
    max-width: 1056px;
}
.demo-inputs button {
    cursor: pointer;
    width: 34%;
    padding: 12px 0;
    background-color: #52D1B8;
    border: none;
    border-radius: 10px;
    font-weight: bold;
}
.demo-button {
    cursor: pointer!important;
    width: 34%!important;
    padding: 12px 0!important;
    background-color: #52D1B8!important;
    border: none!important;
    border-radius: 10px!important;
    font-weight: bold!important;
    color: white!important;
    font-size: 13px!important;
}

.universoGoco__demo img {
    width: 35%;
    height: 53vh;
    min-width: 320px;
    transform: translateX(25%);
}

footer {
    /* height: 100%; */
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(max(220px, 25%), 1fr));
    row-gap: 65px;
    font-weight: bold;
}
.footer-info > a:first-of-type {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-info > a:first-of-type img {
    cursor: pointer;
    align-self: center;
    height: 53%;
    justify-self: center;
}
.footer-info div {
    justify-self: center;
}
.footer-info > div:nth-child(2), 
.footer-info > div:nth-child(3),
.footer-info > div:nth-child(4){
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: center;
    height: clamp(115px, 65%, 156px);
    width: clamp(205px, 60%, 216px);
}
.footer-info > div:nth-child(2) a, .footer-info > div:nth-child(3) a {
    cursor: pointer;
    text-decoration: none;
    color: white;
}

.icons-social {
    display: flex;
    gap: 15px;
    height: 30px;
}
.icons-social img {
    height: 100%;
}

.send-email {
    display: flex;
    align-items: center;
    height: 30px;
    margin-top: 10%;
    padding: 0 10px;
    background-color: white;
    border-radius: 8px;
}
.send-email input {
    border: none;
}
.send-email input:focus {
    outline: none;
}

.suscribe-input {
    cursor: pointer;
    width: 100%;
    padding: 4%;
    margin-top: 5%;
    color: white;
    background-color: #5D57A5;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.obj-footer { /* CLASS MEDIA QUERY 425px 879px*/
    width: 100%;
    min-width: 332px;
    height: 335px;
}

footer hr {
    width: 72%;
    margin-top: 30px;
    background-color: white;
}

.footer-made {
    margin: 0;
    padding: 20px 0;
    color: white;
    font-size: 0.8rem;
    font-weight: 100;
    text-align: center;
}

.captcha-container {
    transform: scale(100%);
}




.w45per {
    width: 45%;
}
.w93per {
    width: 93%;
}
.h45px {
    height: 45px;
}
.h110px {
    height: 110px;
}
.c--white {
    color: white;
}
.c--celeste {
    color: #52D1B8;
}
.b--celeste {
    background-color: #52D1B8;
}
.c--purple {
    color: #5D57A5;
}
.b--purple {
    background-color: #5D57A5;
}
.c--gray {
    color: #999999;
}
.fw--500 {
    font-weight: 500;
}
.fw--100 {
    font-weight: 100;
}
.fs--1 {
    font-size: 1rem;
}
.fs--2-8vw {
    font-size: clamp(23px, 2.8vw, 72px);
}
.fs--2-7vw {
    font-size: clamp(23px, 2.7vw, 72px);
}
.fs--3-5vw {
    font-size: clamp(28px, 3.5vw, 90px);
}
.fs--4-vw {
    font-size: clamp(34px, 4vw, 115px);
}
.fs--4-5vw {
    font-size: clamp(34px, 4.5vw, 115px);
}
.fs--1-5vw {
    font-size: clamp(13px, 1.5vw, 38px);
}
.fs--1-4vw {
    font-size: clamp(16px, 1.4vw, 36px);
}
.fs--1-1vw {
    font-size: clamp(12px, 1.1vw, 28px);
}
.ls--1px {
    letter-spacing: 1px;
}
.ls--3px {
    letter-spacing: 3px;
}
.ls--6px {
    letter-spacing: 6px;
}
.ls--12px {
    letter-spacing: 12px;
}
.ls---1-5px {
    letter-spacing: -1.5px;
}
.mt--60px {
    margin: 60px 0 0 0;
}
.mt--100px {
    margin-top: 100px;
}
.mb--60px {
    margin: 0 0 60px 0;
}
.mb--30px {
    margin-bottom: 30px;
}
.m0 {
    margin: 0;
}
.m--60px-0 {
    margin: 60px 0;
}
.ta--center {
    text-align: center;
}
.ta--last {
    text-align-last: justify;
}
.d--none {
    display: none;
}
.c--pointer {
    cursor: pointer;
}



@media screen and (max-width: 879px) {
    .obj-footer {
        height: 476px;
    }
}
@media screen and (max-width: 768px) {
    .video__title h2 {
        margin: 0 0 0 15px;
    }

    .products {
        column-gap: 18%;
        height: auto;
        background-color: #5D57A5;
    }

    .products > img:first-of-type {
        display: none;
    }
    .demo-button {
        cursor: pointer!important;
        width: 100%!important;
        /* padding: 50px 0!important; */
        height: 45px!important;
        background-color: #52D1B8!important;
        border: none!important;
        border-radius: 10px!important;
        font-weight: bold!important;
        color: white!important;
        font-size: 15!important;
        /* padding: 15px 60px;
        border-radius: 20px;
        color: white;
        background: #52D1B8;
        font-size: clamp(12px, 1.2vw, 24px);
        font-weight: 700;
        text-decoration: none; */

    }
    .products > img:last-of-type {
        position: initial;
        order: 2;
        width: 95vw;
        max-width: none;
        min-width: 176px;
        height: 90vw;
        margin: 8% 0;
        z-index: 1;
    }

    .products-title {
        width: 100%;
        height: 100%;
        margin-top: 10%;
        text-align: center;
        z-index: 1;
    }

    .products-title a {
        display: none;
    }

    .products-title__network {
        display: none;
        justify-content: center;
    }

    .products-title h2:last-of-type {
        margin-bottom: 0;
    }

    .more-info-mobile, .show-mobile {
        display: inherit;
    }

    .show-mobile {
        margin: 1% 0 10% 0;
    }

    .show-mobile img {
        width: 10%;
    }

    .grid-icons__child img {
        width: 27vw;
        height: 27vw;
    }

    .aboutMe {
        gap: 20px;
    }

    .demo-inputs {
        transform: translateX(2%);
    }

    .demo-inputs button {
        min-width: 278px;
    }
}
@media screen and (max-width: 425px) {
    .universeGoco {
        height: 200vh;
    }

    .universoGoco__demo {
        justify-content: center;
    }

    .video__background img {
        width: 92vw;
    }
    
    .obj-footer {
        height: 762px;
    }

    .info__details {
        width: 92vw;
        background-size: cover;
    }

    .captcha-container {
        transform: scale(80%);
    }
}

/*MAILCHIMP*/
/* .mailchimp {
    background-color: #5D57A5;
    color: white;
    cursor: pointer;
    width: 100%;
    height: 30%;
    padding: 12px 0;
    border: none;
    border-radius: 10px;
    font-weight: bold;
}
.mailchimp-inputs {
    transform: translateX(2%);
}

/*.mailchimp-inputs button {*/
/*    min-width: 100px;*/
/*}*/
/*.mailchimp-inputs button {*/
/*    cursor: pointer;*/
/*    width: 34%;*/
/*    padding: 12px 0;*/
/*    background-color: #5D57A5;*/
/*    border: none;*/
/*    border-radius: 10px;*/
/*    font-weight: bold;*/
/*}*/
/* .mt-2,
.my-2 {
  margin-top: 0.5rem !important;
} */
.div-cupon{
    height: 100%!important;
    /* margin-top: 0px!important; */
}
.img-cupon-1{
    position: absolute!important;
    width: 56%!important;
    height: 100%!important;
    right: -7%!important;
}
.img-cupon-2{
    width: 39%!important;
    height: 71%!important;
    display: block!important;
    position: absolute!important;
    margin-top: 15%!important;
    right: 13%!important;
}
.h2-cupon-1{
    margin-top: 200px!important;
}
.h2-cupon-2{
    font-size: 39.5px!important;
}
.h2-cupon-3{
    font-size: 34px!important; 
    text-align: center!important; 
    font-weight: 500!important;
    margin-top: 20px!important;
    margin-bottom: 52px!important;
}
.btn-cupon-hidden{
    width: 314px!important;
    font-size: 21px!important;
    height: 78px!important;
}
@media screen and (max-width: 1200px){
    /* Aquí van los estilos para tablets grandes */
    .div-cupon{
        height: 69%!important;
    }
    .img-cupon-1{
        position: absolute!important;
        width: 54%!important;
        height: 69%!important;
        right: -7%!important;
    }
    .img-cupon-2{
        width: 40%!important;
        height: 50%!important;
        display: block!important;
        position: absolute!important;
        margin-top: 14%!important;
        right: 9%!important;
    }
    .h2-cupon-1{
        margin-top: 103px!important;
    }
    .h2-cupon-2{
        font-size: 30.5px!important;
    }
    .h2-cupon-3{
        font-size: 23px!important;
        text-align: center!important; 
        font-weight: 500!important;
        margin-top: 20px!important;
        margin-bottom: 52px!important;
    }
    .btn-cupon-hidden{
        width: 314px!important;
        font-size: 21px!important;
        height: 78px!important;
    }
}
@media screen and (max-width: 991px){
    /* Aquí van los estilos para tablets grandes */
    .div-cupon{
        height: 69%!important;
    }
    .img-cupon-1{
        position: absolute!important;
        width: 54%!important;
        height: 69%!important;
        right: -7%!important;
    }
    .img-cupon-2{
        width: 40%!important;
        height: 50%!important;
        display: block!important;
        position: absolute!important;
        margin-top: 14%!important;
        right: 9%!important;
    }
    .h2-cupon-1{
        margin-top: 64px!important;
    }
    .h2-cupon-2{
        font-size: 30.5px!important;
    }
    .h2-cupon-3{
        font-size: 23px!important;
        text-align: center!important; 
        font-weight: 500!important;
        margin-top: 20px!important;
        margin-bottom: 52px!important;
    }
    .btn-cupon-hidden{
        width: 314px!important;
        font-size: 21px!important;
        height: 78px!important;
    }
}
    
@media screen and (max-width: 767px){
    /* Aquí van los estilos para tablets medianas */
    .div-cupon{
        height: 70%!important;
    }
    .img-cupon-1{
        position: absolute!important;
        width: 40%!important;
        height: 69%!important;
        right: 0px!important;
    }
    .img-cupon-2{
        width: 40%!important;
        height: 45%!important;
        display: block!important;
        position: absolute!important;
        margin-top: 11%!important;
        right: 5%!important;
    }
    .h2-cupon-1{
        margin-top: 0px!important;
    }
    .h2-cupon-2{
        font-size: 20px!important;
        text-align: center;
        padding-left: 16px;
    }
    .h2-cupon-3{
        font-size: 21px!important;
        text-align: center!important; 
        font-weight: 500!important;
        margin-top: 20px!important;
        margin-bottom: 52px!important;
    }
    .btn-cupon-hidden{
        width: 314px!important;
        font-size: 21px!important;
        height: 62px!important;
    }
}
    
@media screen and (min-width : 390px) and (max-width: 479px){
    /* Aquí van los estilos para smartphones */
    .div-cupon{
        height: 100%!important;
    }
    .img-cupon-1{
        position: absolute!important;
        width: 93%!important;
        height: 45.4%!important;
        right: 0%!important;
        top: 94.2%;
    }
    .img-cupon-2{
        width: 71%!important;
        height: 36%!important;
        display: block!important;
        position: absolute!important;
        margin-top: 7%!important;
        right: 15%!important;
        top: 94%;
    }
    .h2-cupon-1{
        margin-top: 0px!important;
        font-size: 34px;
    }
    .h2-cupon-2{
        font-size: 20.5px!important;
        padding-left: 0px;
    }
    .h2-cupon-3{
        font-size: 26px!important;
        text-align: center!important;
        font-weight: 400!important;
        margin-top: 20px!important;
        margin-bottom: 52px!important;
    }
    .btn-cupon-hidden{
        width: 313px!important;
        font-size: 18px!important;
        height: 69px!important;
    }
}
@media only screen and (min-width: 700px) and (max-width: 720) {
     /* Aquí van los estilos para smartphones */
     .div-cupon{
        height: 100%!important;
    }
    .img-cupon-1{
        position: absolute!important;
        width: 45%!important;
        height: 100%!important;
        right: 0%!important;
    }
    .img-cupon-2{
        width: 40%!important;
        height: 70%!important;
        display: block!important;
        position: absolute!important;
        margin-top: 12%!important;
        right: 8%!important;
    }
    .h2-cupon-1{
        margin-top: 0px!important;
        font-size: 34px;
    }
    .h2-cupon-2{
        font-size: 20.5px!important;
        padding-left: 0px;
    }
    .h2-cupon-3{
        font-size: 20px!important;
        text-align: center!important;
        font-weight: 400!important;
        margin-top: 20px!important;
        margin-bottom: 20px!important;
    }
    .btn-cupon-hidden{
        width: 313px!important;
        font-size: 18px!important;
        height: 69px!important;
    }
}   
/* The alert message box */
.alert-coupon {
    padding: 20px;
    background-color: #f44336;
    color: white;
    margin-bottom: 15px;
    width: 89%;
    border-radius: 17px;
    margin-top: 11px;
    text-align: center;
    font-size: 19px;
    font-weight: 400;
}
.div-alert-coupon {
    width: 100%;
    margin-left: 26px;
}