:root {
    --light-blue: #009BEE;
    --red: #c80000;
    --yellow: #FEE902;
    --dark-red: #B90202;
    --white: #ffffff;
    --black: #000000;
    --gray: #808080;
    --light-gray: #80808050;
    --very-light-gray: #80808015;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease-in-out;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.header-container {
    /* background-color: var(--white); */
    height: 100vh;
    background-image: url('../img/Image/bck-header-2.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.header-container .header-content {
    max-width: 1100px;
    margin: 0 auto;
}

.header-container .header-content .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 20px;
    padding: 30px 0 20px 0;
}

.header-container .header-content .header .logo-img img {
    width: 200px;
}

.header-container .header-content .header .right-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

/* MENU RESPONSIVE */

.header-container .header-content .header .right-content .backg-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #00000050;
    z-index: 2;
    display: none;
}

.header-container .header-content .header .right-content .menu .menu-contain {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.header-container .header-content .header .right-content .menu .menu-contain li {
    list-style: none;
    text-decoration: none;
    position: relative;
}

.header-container .header-content .header .right-content .menu .menu-contain li a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 100%;
    transform: scaleX(0);
    background-color: var(--white);
    transition: transform 0.25s ease-out;
}

.header-container .header-content .header .right-content .menu .menu-contain li a:hover::after {
    transform: scaleX(1);
}

.header-container .header-content .header .right-content .btn-sign a {
    background: linear-gradient(90deg, hsla(342, 52%, 49%, 1) 0%, hsla(5, 100%, 74%, 1) 100%);
    ;
    color: var(--white);
    border-radius: 3px;
    padding: 5px 15px;
    font-size: 0.8em;
    font-weight: 500;
    transition: all 0.5s ease-in-out;
}

/* .header-container .header-content .header .right-content .btn-sign a:hover {
    background-color: var(--dark-red);
} */

.btn-sign a,
.header-container .header-content .header .right-content .menu .menu-contain li a {
    text-decoration: none;
    color: var(--white);
}

.header-container .header .right-content .menu .menu-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px 0 0;
    /* padding: 5px; */
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background-color: #ffffff20;
    cursor: pointer;
    transition: 0.5s;
    display: none;
}

.header-container .header .right-content .menu .menu-icon i {
    color: var(--white);
    font-size: 2em;
}

/* HEADER INFO */

.content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content .info-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 0 0 0;
}

.content .info-container .subtitle {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9em;
}

.content .info-container .title {
    color: var(--white);
    font-weight: 600;
    font-size: 2.8em;
    text-align: center;
    padding: 20px 0;
}

.content .info-container .info {
    color: var(--white);
    font-weight: 300;
    font-size: 0.8em;
    text-align: center;
    padding: 10px 0 0 0;
    line-height: 1.8;
}

/* CARACTERISTICAS */

.caracteristicas {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #bfbfbf20;
    height: 100%;
    position: relative;
    padding: 80px 0 80px 0;
}

.img-circle {
    position: absolute;
    top: -10px;
    right: 50px;
    width: 170px;
}

.caracteristicas .caracteristicas-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.caracteristicas-content .subtitle {
    text-align: center !important;
    color: var(--red);
    font-weight: 600;
    font-size: 1.2em;
    padding: 0 0 10px 0;
}

.caracteristicas-content .title-section {
    text-align: center !important;
    color: var(--black);
    font-weight: 500;
    font-size: 2em;
    padding: 0 0 30px 0;
}

.caracteristicas-content .carac-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.caracteristicas-content .carac-container .carac {
    width: 350px;
    height: 220px;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px 20px 10px 20px;
}

.caracteristicas-content .carac-container .carac .info-carac {
    font-size: 0.9em;
    font-weight: 400;
    color: #808080;
}

.caracteristicas-content .carac-container .carac .btn-readMore {
    margin: 25px 0 0 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.caracteristicas-content .carac-container .carac .btn-readMore a {
    color: var(--light-blue);
}

.caracteristicas-content .carac-container .carac .btn-readMore i {
    font-size: 1em;
}

.carac .title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px 0;
}

.carac .title img {
    width: 40px;
}

.carac .title span {
    font-size: 1em;
    font-weight: 500
}

.caracteristicas-content .btn-demo {
    margin: 50px 0 20px 0;
}

.caracteristicas-content .btn-demo a {
    background-color: var(--red);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 5px;
    transition: all 0.3s ease-in;
}

.caracteristicas-content .btn-demo a:hover {
    background-color: var(--dark-red);
}

.test-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 460px;
    background: linear-gradient(90deg, hsla(342, 52%, 49%, 1) 0%, hsla(5, 100%, 74%, 1) 100%);
    padding: 30px 0 30px 170px;
    position: relative;
    /* z-index: 3; */
}

.test-section .test-img-circle {
    position: absolute;
    width: 300px;
    top: -120px;
    left: -120px;
    /* transform: translateX(-50%); */
    z-index: -1;
}

.test-section .test-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.test-content .info-test .title {
    color: var(--white);
    font-weight: 400;
    font-size: 2.8em;
    padding: 0 0 10px 0;
}

.test-content .info-test .title span {
    font-weight: 600 !important;
}

.test-content .info-test .subtitle {
    color: var(--white);
    font-size: 1.08em;
}

.test-content .info-test .subtitle span {
    color: var(--yellow) !important;
}

.test-content .info-test .devices {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 10px 0 0 0;
}

.test-content .info-test .devices img {
    width: 110px;
}

.test-img {
    position: absolute;
    right: 250px;
    top: 10px;
}

.test-img img {
    width: 550px;
}

.btn-test {
    margin: 20px 0 0 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.btn-test a {
    /* background: linear-gradient(90deg, hsla(4, 94%, 73%, 1) 0%, hsla(340, 56%, 46%, 1) 100%); */
    background-color: var(--red);
    color: var(--white);
    border-radius: 3px;
    padding: 10px 20px;
    /* margin: 10px 0 0 0; */
    font-size: 0.8em;
    font-weight: 500;
    transition: all 0.5s ease-in-out;
}
.btn-test a:hover {
    background-color: var(--dark-red);
}

/* BENEFICIOS */

.beneficios {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 900px;
}

.beneficios .beneficios-circle {
    position: absolute;
    width: 300px;
    top: 50px;
    right: 0;
    transform: translateX(50%);
}

.beneficios .beneficios-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.beneficios-content .img-beneficios img {
    width: 500px;
}

.beneficios-content .info-beneficios {
    width: 550px;
}

.beneficios-content .info-beneficios h2 {
    padding: 15px 0;
    font-size: 2em;
    font-weight: 600;
}

.beneficios-content .info-beneficios .list-beneficios li {
    list-style: disc;
    padding: 10px 0;
    color: #808080;
}

/* PREGUNTAS FRECUENTES */

.img-preguntas img {
    width: 550px;
}

.preguntas {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preguntas .preguntas-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    background-color: #80808010;
    padding: 30px;
}

.preguntas .preguntas-content .info-preguntas {
    width: 500px;
}

.preguntas .preguntas-content .info-preguntas h2 {
    font-size: 2em;
    font-weight: 600;
}

.preguntas .preguntas-content .info-preguntas p {
    font-size: 0.8em;
    color: #808080;
    margin: 10px 0;
}

.acordeon .container-aco .acordeon-content {
    background-color: var(--dark-red);
    margin: 10px 0;
    padding: 5px 10px;
    cursor: pointer;
}

.acordeon .container-aco .acordeon-content .title {
    color: var(--white);
    font-size: 0.8em;
}

.container-aco  .acordeon-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 10px 0 10px;
    font-size: 0.9em;
}

/* TESTIMONIALS */

.testimonial {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 70px 0;
}

.testimonial .testimonial-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.testimonial .testimonial-content .subtitle {
    color: var(--red);
    font-size: 1.2em;
    font-weight: 600;
}

.testimonial .testimonial-content h2 {
    font-size: 2em;
    font-weight: 600;
    margin: 10px 0;
}

.testimonial .testimonial-content .info {
    color: #808080;
    font-size: 0.9em;
    font-weight: 400;
    text-align: center;
}

.testimonial-content .box-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0 0 0;
}

.testimonial-content .box-testimonials .box {
    width: 350px;
    border-radius: 10px;
    border: 1px solid #80808050;
    padding: 15px;
}

.testimonial-content .box-testimonials .box .perfil {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.testimonial-content .box-testimonials .box .perfil .pic {
    width: 60px;
    border-radius: 50%;
}

.testimonial-content .box-testimonials .box .perfil .nombre {
    font-size: 1em;
    font-weight: 500;
    margin: 5px 0;
}

.testimonial-content .box-testimonials .box .perfil .ocupacion {
    font-size: 0.8em;
    color: var(--gray);
}

.testimonial-content .box-testimonials .box .calificacion {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-content .box-testimonials .box .calificacion i {
    color: #f6c000;
}

.testimonial-content .box-testimonials .box .comentario p {
    font-size: 0.9em;
    color: var(--gray);
    text-align: center;
}

/* CONTACTO */

.contacto {
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFF7F8;
}

.contacto .contacto-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contacto .contacto-content .subtitle {
    color: var(--red);
    font-size: 1.2em;
    font-weight: 600;
}

.contacto .contacto-content h2 {
    font-size: 2em;
    font-weight: 500;
    text-align: center;
    margin: 10px 0;
}

.contacto .contacto-content .info-contacto {
    background-color: #FFECED;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin: 20px 0 0 0;
}

.contacto .contacto-content .info-contacto .inps-contacto {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    width: 500px;
}

.contacto .contacto-content .info-contacto .inps-contacto .inp-text {
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border: none;
}

.contacto .contacto-content .info-contacto .inps-contacto .btn-send {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contacto .contacto-content .info-contacto .inps-contacto .btn-send .send {
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border: none;
    background: linear-gradient(90deg, hsla(342, 52%, 49%, 1) 0%, hsla(5, 100%, 74%, 1) 100%);
    color: var(--white);
    cursor: pointer;
}

.img-contacto img {
    width: 550px;
}

#msg-body {
    resize: none;
    padding: 10px;
    border-radius: 5px;
    border: none;
    width: 100%;
    margin: 0 0 10px 0;
}

.contacto .contacto-content .social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin: 50px 0 0 0;
}
.contacto .contacto-content .social .item{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.contacto .contacto-content .social .item i{
    color: var(--red);
    font-size: 1.2em;
}

/* COPYRIGHT */

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 100px;
    background-color: var(--dark-red);
    height: 50px;
}

.copyright span {
    font-size: 0.8em;
    color: var(--white);
}

.create-lbl {
    width: 100%;
}

.info-fly .info-contain .recibeCasa {
    padding: 10px 0 10px 0;
}

@media screen and (max-width: 1250px) {
    .test-img {
        top: 90px;
    }
    .test-img img {
        width: 450px;
    }
}

@media screen and (max-width: 1150px) {
    .beneficios .beneficios-circle {
        width: 200px;
    }

    .test-img {
        right: 70px;
    }
}

@media screen and (max-width: 1115px) {
    .caracteristicas-content .carac-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .img-circle {
        width: 120px;
    }

    .test-img {
        right: 50px;
    }

    .test-img img {
        width: 500px;
    }

    .beneficios-content .img-beneficios img {
        width: 400px;
    }

    .img-preguntas img {
        width: 450px;
    }

    .testimonial-content .box-testimonials {
        grid-template-columns: repeat(1, 1fr);
    }

    .img-contacto img {
        width: 450px;
    }
}

@media screen and (max-width: 1040px) {
    .preguntas .preguntas-content {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .img-contacto img {
        width: 350px;
    }

    /* .test-img {
        top: 90px;
    } */
    .test-img img {
        width: 400px;
    }
}

@media screen and (max-width: 924px) {
    .test-img img {
        width: 350px;
    }

    .test-img {
        right: 50px;
        top: 80px;
    }

    .beneficios-content .img-beneficios img {
        width: 300px;
    }

    .img-preguntas {
        display: none;
    }

    .img-contacto {
        display: none;
    }
}

@media screen and (max-width: 890px) {
    .test-img {
        display: none;
    }

    .btn-test {
        justify-content: center;
    }

    .test-section .test-content {
        justify-content: center;
    }

    .test-section {
        padding: 30px 0 30px 0;
        justify-content: center;
    }

    .test-content .info-test .title {
        text-align: center;
    }
    
    
    .test-content .info-test .subtitle {
        text-align: center;
    }
    

    
    .test-content .info-test .devices {
        justify-content: center;
    }

    .beneficios-content .img-beneficios {
        display: none;
    }
}

@media screen and (max-width: 836px) {}

@media screen and (max-width: 768px) {

    .header-container .header .right-content .menu .menu-icon {
        display: flex;
    }

    .header-container .header .right-content .menu .menu-contain {
        position: fixed;
        top: 0;
        right: -252px;
        z-index: 99999999999;
        width: 250px;
        height: 100vh;
        background-color: var(--dark-red);
        flex-direction: column;
        justify-content: space-around !important;
        margin: 0;
        transition: all 0.5s;
    }

    .header-container .header .right-content .menu .menu-contain li a::after {
        background-color: var(--white) !important;
    }

    .header-container .header .right-content .backg-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #00000050;
        z-index: 2;
        /* pointer-events: none; */
        display: none;
    }

    .header-container .header .right-content .menu .menu-contain li a {
        color: #fff !important;
    }

    .header-container .header .right-content .btn-sign {
        display: none;
    }

    .copyright {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        white-space: nowrap;
        /* word-wrap: break-word; */
        /* padding: 10px 50px; */
    }

    .img-circle {
        top: -40px;
        right: 40px;
        width: 110px;
    }

}

@media screen and (max-width: 740px) {

    .header-container .header-content {
        max-width: 100%;
    }

    .caracteristicas-content .carac-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .contacto .contacto-content .social {
        flex-direction: column;
    }

}
@media screen and (max-width: 700px) {

    .header-container .header-content {
        max-width: 100%;
    }

}


@media screen and (max-width: 570px) {

    .content .info-container .title {
        font-size: 2em;
    }

    .beneficios-content .info-beneficios h2 {
        font-size: 1.8em;
        text-align: center;
    }

    .beneficios-content .info-beneficios .list-beneficios {
        padding: 0 50px;
    }

    .beneficios-content .info-beneficios .list-beneficios li {
        text-align: center;
        font-size: 0.9em;
    }

    .preguntas .preguntas-content .info-preguntas h2 {
        text-align: center;
        font-size: 1.7em;
    }
    
    .preguntas .preguntas-content .info-preguntas p {
        text-align: center;
    }

}

@media screen and (max-width: 505px) {

    .copyright {
        /* padding: 10px 20px; */
    }

    .content .info-container .title {
        font-size: 1.5em;
    }

    .content .info-container .info {
        font-size: 0.6em;
    }

    .caracteristicas-content .title-section {
        font-size: 1.5em;
    }

    .beneficios-content .info-beneficios .list-beneficios {
        padding: 0 70px;
    }

    .testimonial .testimonial-content h2 {
        font-size: 1.5em;
    }
    
    .testimonial .testimonial-content .info {
        font-size: 0.7em;
    }

    .contacto .contacto-content h2 {
        font-size: 1.5em;
    }

    .contacto .contacto-content .info-contacto .inps-contacto .inp-text {
        width: 90%;
    }

    #msg-body {
        width: 90%;
    }

    .contacto .contacto-content .info-contacto .inps-contacto {
        align-items: center;
    }

    .contacto .contacto-content .info-contacto .inps-contacto .btn-send {
        width: 90%;
    }

}

@media screen and (max-width: 465px) {

    .beneficios .beneficios-circle {
        width: 170px;
    }

    .contacto .contacto-content .info-contacto .inps-contacto .inp-text {
        width: 80%;
    }

    #msg-body {
        width: 80%;
    }

    .contacto .contacto-content .info-contacto .inps-contacto .btn-send {
        width: 80%;
    }

}

/* @media screen and (max-width: 445px) {

    .copyright {
        padding: 10px 20px;
    }
} */

@media screen and (max-width:425px) {


    /* .header-container {
        height: 600px;
    }

    .copyright {
        padding: 0;
        display: block;
        text-align: center;
        height: 30px;
        background-color: var(--dark-blue);
    }

    .copyright span {
        font-size: 0.5em;
    } */

    .content .left-section .img-responsive {
        justify-content: center;
    }

    .header-container .header {
        margin: 0 10px 0 30px;
    }

    .header-container .header .logo-img img {
        width: 130px;
    }

    .contacto .contacto-content .info-contacto .inps-contacto .inp-text {
        width: 70%;
    }

    #msg-body {
        width: 70%;
    }

    .contacto .contacto-content .info-contacto .inps-contacto .btn-send {
        width: 70%;
    }

    .beneficios-content .info-beneficios h2 {
        font-size: 1.5em;
    }

    .beneficios-content .info-beneficios .list-beneficios {
        padding: 0 85px;
    }
    .beneficios-content .info-beneficios .list-beneficios li{
        list-style: none;
    }

}

/* CUSTOM CSS */

@media screen and (max-width: 1100px) {}

@media screen and (max-width: 968px) {}