.container-banner{
    display:flex;
    height:100vh;
    justify-content: center;
    align-items:center;
    position: relative;
}
/* FLECHA DE VER MAS */
.flecha__vermas{
    position: absolute;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 0;
    right: 0;
    margin: auto;
    width: max-content;
    padding: 15px;
    border-radius: 10px;
  }
  .flecha__vermas p{
      color: #000000;
  }
  .flecha__vermas:hover{
    background-color: rgba(0, 0, 0, 0.482);
  }
  .flecha__vermas img{
    width: 30px;
  }
  /* FIN DE ESTILOS PARA LA FLECHA */
.wrapper{
    display:flex;
    width:80%;
    height: max-content;
}
.banner-text{
    display: flex;
    align-items:flex-end;
    justify-content: center;
    flex-direction: column;
    width: 60%;
}
.isos{
    text-align: right;
}
.banner-text span{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    text-align: right;
    color: #6C6973;
    text-align: right;
}
.banner-text h1{
    font-family: 'Montserrat';
    width:100%;
    font-style: normal;
    font-weight: 700;
    font-size: 70px;
    line-height: 78px;
    letter-spacing: 0.1;
    color:#31466E;
    text-align: right;
}
.banner-img{
    width:100%;
}

/* SECCION DE FRASE CON FONDO AZUL */
.frace_bg_blue{
    background-color: #31466E;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center; 
}
.wrapper_frace{
    width: 65%;
}
.bg_blue-height{
    background-color: #31466E;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center; 
}
.wrapper_frace h1{
    font-weight: 700;
    font-size: 48px;
    line-height: 59px;
    text-align: center;
    color: #FFFFFF;
}
.wrapper_frace p{
    margin-top: 4rem;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    color: #FFFFFF;
    width: 90%;
}
.caracteristicas_title{
    margin-top: 4rem;
}
.caracteristicas_title h2{
    font-weight: 700;
    font-size: 64px;
    line-height: 78px;
    color: #31466E;
    text-align: center;
}
.wrapper_caracteristicas{
    /* background-color: red; */
    width: 90%;
    /* height: 20px; */
    margin: auto;
    display: flex;
    margin-top: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    gap:3rem;
}

.card{
    background: #EEEEEE;
    position: relative;
    border-radius: 25px;
    width: 430px;
    height: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    transition: .7s ease-in-out;
    cursor: pointer;
}
.card img{
    margin-bottom: 2rem;
}

.card p{
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
}
.p-color{
    color: #F0AB00;
}
.card_reverse{
    position: absolute;
    background-color: #F0AB00;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    display: none;
    justify-content: center;
    align-items: center;
}
.card:hover .card_reverse{
    display: flex;
    
}

.card_reverse p{
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    width: 80%;
    /* margin: auto; */
}

/* intelifac para empresas */

.como_funciona{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wrapper_como_funciona, .wrapper_como_funciona-2{
    display: flex;
    width: 84%;
}
.wrapper_como_funciona-2{
    margin-bottom: 3rem;
}
.wrapper_funciona-left h1{
    font-weight: 700;
    font-size: 40px;
    line-height: 47px;
}
.wrapper_funciona-left p{
    font-weight: 500;
    font-size: 24px;
    line-height: 29px; 
}
.como_funciona-left{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.wrapper_funciona-left{
    width: 50%;
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.funciona_2-right{
    display: flex;
    justify-content: center;
    align-items: center;
}
.titulo_como_funciona{
    font-weight: 700;
    font-size: 64px;
    line-height: 78px;
    color: #31466E;
    margin-top: 3rem;
    margin-bottom: 2rem;
}
.sub_como_funciona{
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #44454B;
    margin-bottom: 4rem;
}
.como_funciona.variante_color{
    background-color: #EFF3FA;
}


/* estilo general para los botones */
.btn{
    background-color: #F0AB00;
    width: max-content;
    color:white;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    cursor: pointer;
    padding: 10px 30px;
    border-radius: 10px;
    border: none;
    transition: 0.5s ease-in-out;
  }
.btn:hover{
    transform: scale(1.05);
}

/* seccion de mejor opcion */
.wrapper_mejor_opcion{
    display: flex;
}
.mejor_opcion_left{
    position: relative;
}
.mejor_opcion_left p{
    width: 65%;
    top: 0;
    font-weight: 700;
    font-size: 90px;
    color: #FFFFFF;
}
.mejor_opcion_left svg{
    margin-top: 40%;
}
.containe_txt_opcion{
    position: absolute;
    top: 15%;
    left: 5%;
}
.capa_color_bg{
    position: absolute;
    top:0;
    width: 100%;
    height: 100%;
    background: #5a719dcb;
}
header a{
    color:black;
}
.submenu a{
    color:white;
}
.mejor_opcion{
   background-color: #31466E;
}
.mejor_opcion_right{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.mejor_opcion_right h1{
    margin-top: 4rem;
    font-weight: 700;
    font-size: 64px;
    line-height: 78px;
    color: #FFFFFF;
    width: 60%;
    text-align: center;
}

/* seccion de slide */
.container_slides_personalizado{
    display: flex;
    width: 300%;
    /* background-color: red; */
    /* overflow: hidden; */
}

.slider_personalizado{
    display: flex;
    flex-direction: column;
    /* background-color: yellow; */
    width: 100%;
    overflow: hidden;
    margin-top: 4rem;
    /* align-items: center; */
    /* position: absolute;k */
}
.slide_personalizado{
    
    width: 100%;
    display: flex;
    /* margin-left: 2rem; */
    /* background-color: red; */
    flex-direction: column  ;
    justify-content: center;
    align-items: center;
    gap: 4rem
}
.slide_personalizado h2{
    font-weight: 800;
    font-size: 64px;
    line-height: 78px;
    text-align: center;
    color: #FFFFFF;
}
.slide_personalizado p{
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    color: #FFFFFF;
    width: 50%;
}
.navigation_personalizado{
    display: flex;
    gap: 2rem;
    margin: auto;
    margin-top: 4rem;
}
.navigation_personalizado .btn_personalizado{
    width: 130px;
    height: 8px;
    background-color: #EBE8E0;
}
.btn_personalizado.active{
    background-color: #F0AB00;
}
/* PORQUE SOMOS LA MEJOR OPCCION */
/* .mejor_opcion{
    height: 100vh;
}
.mejor_opcion_left{
    height: 100%;
}
.mejor_opcion h1{
    font-size: 10px;
}
.mejor_opcion_right h1{
    background-color: red;
} */

/* FACTORES QUE BENEFICIAN */
.factoresBenefician h1{
    font-weight: 700;
    font-size: 64px;
    line-height: 78px;
    text-align: center;
    color: #31466E; 
    margin-top: 5%;
}
.factoresBenefician{
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    margin-bottom: 5%;
}
.wrapper_factores{
    display: flex;
    width: 80%;
    margin-top: 5%;
    /* background-color: red; */
}
.item_factor{
    display: flex;
    gap: 2rem;
    align-items: center;
    /* background-color: #EFF3FA; */
}
.factores_left,.factores_right{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap:2rem;
}
.factores_right{
    align-content: flex-end;
}

.container_item h3{
    font-weight: 600;
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 2rem;
}
.container_item p{
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    width:80%;
}

/* footer */
footer{
    width: 100vw;
    background-color: #282829;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contenedor_footer{
    width: 80%;
    /* background-color: blue; */
    align-items: center;
    display: flex;
    padding: 40px;
    justify-content: space-between;
  }
  .wrapper__contenido__footer{
    display: flex;
    gap:2rem
  }
  
  .title_section{
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    padding: 20px;
    padding-left: 0px;
  }
  .footer_item{
    padding: 15px;
    padding-left: 0;
  }
  .footer_by{
    padding-bottom: 40px;
  }


  @media (max-width:1680px){
      .banner-text{
          width: 70%;
      }
    .banner-text h1{
        font-size: 40px;
        /* width: 80%; */
        line-height: 1.4;
    }
    .isos{
        width: 80%;
        padding-top: 20px;
        text-align: right;
    }
    .banner-text span{
        font-size: 28px;
    }

    /* FRACE CON BG AZUL */
    .frace_bg_blue{
        height: max-content;
    }
    .wrapper_frace{
        width: 90%;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .wrapper_frace h1{
        font-size: 32px;
    }
    .wrapper_frace p{
        font-size: 18px;
        margin: auto;
        padding-top: 20px;
    }
    

    /* SECCION DE CARDS DE CARACTERISTICAS */
    .caracteristicas_title h2{
        width: 80%;
        font-size: 48px;
        text-align: center;
        margin:auto;
    }
    .card{
        width: 320px;
    }
    .card img{
        width: 100px;
    }

    /* SECCION DE INTELIFAC PARA EMPRESAS */
    .como_funciona-left{
        width: 50%;
    }
    .como_funciona-right{
        width: 50%;
    }
    .como_funciona-right img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .wrapper_funciona-left{
        /* background-color: aquamarine; */
        width: 80%;
    }
    .wrapper_funciona-left svg{
        width: 100%;
    }
    .funciona_2-right{
        width: 50%;
    }
    .funciona_2-left{
        width: 50%;
    }
    .funciona_2-left img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .funciona_2-right .wrapper_funciona-left{
        display: flex;
        align-items: center;
    }
    .wrapper_funciona-left p{
        font-size: 18px;
    }
    .sub_como_funciona{
        width: 70%;
        text-align: center;
    }

    /* PORQUE SOMOS LA MEJOR OPCION */
    /* .mejor_opcion{
        height: 100vh;
    } */
    .mejor_opcion_left{
        width: 50%;
    }
    .bg_mejo_opcion{
        height: 100%;
    }
    .bg_mejo_opcion img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .mejor_opcion_right{
        width: 50%;
    }
    .slider_personalizado{
        padding-bottom: 40px;
    }

    .containe_txt_opcion p{
        /* background-color: red; */
        font-size: 60px;
    }
    .containe_txt_opcion svg{
        width: 400px;
    }

    .mejor_opcion_right h1{ 
        /* background-color: beige; */
        font-size: 50px;
        line-height: 1.3;
    }
    .slide_personalizado{
        gap: 2rem;
    }
    .slide_personalizado-img img{
        width: 80%;
    }
    .slide_personalizado h2{
        font-size: 50px;
    }
    .slide_personalizado p{
        font-size: 24px;
    }



        /* SECCION DE FOOTER  */
    .contenedor_footer{
        width: 90%;
    }
    .title_section{
        font-size: 16px;
    }
    .footer_item{
        font-size: 14px;
    }
    .footer_item img{
        width: 32px;
    }
     /* FACTORES QUE BENEFICIAN */
  .factoresBenefician h1{
    font-size: 40px;
}
.container_item h3{
    margin-bottom: 1rem;
}
.container_item h3{
    font-size: 20px;
}
.container_item p{
    font-size: 20px;
}  

}
@media (max-width:1024px) {

  /* SECCION DE FOOTER */
  .contenedor_footer{
    width: 95%;
  }
  .title_section{
    font-size: 12px;
  }
  .footer_item{
    font-size: 11px;
  }
  .footer_item img{
    width: 24px;
  }
  .footer_by{
    font-size: 14px;
  }
  /* FACTORES QUE BENEFICIAN */
  .factoresBenefician h1{
    font-size: 40px;
}
.container_item h3{
    margin-bottom: 1rem;
}
.container_item h3{
    font-size: 20px;
}
.container_item p{
    font-size: 20px;
}  
}

@media(max-width:920px){
    header a{
        color:white;
    }
    .container-banner{
        height: 100vh;
        padding-bottom: 40px;
    }
    .wrapper{
        flex-direction: column;
        padding-top: 70px;
    }
    .banner-text{
        /* background-color: red; */
        width: 100%;
        align-items: center;
    }
    .banner-text h1{
        text-align: center;
        padding-top: 20px;
    }
    .isos {
        /* background-color: red; */
        text-align: center;
    }
    .caracteristicas_title h2{
        font-size: 50px;
        line-height: 1.3;
    }

    /* intelifac para emrpesas */
    .titulo_como_funciona{
        /* background-color: red; */
        width: 80%;
        text-align: center;
    }
    .wrapper_funciona-left h1{
        margin-top: 15px;
    }

    /* SECCION PORQUE SOMOS LA MEJOR OPCION */

    .containe_txt_opcion p{
        width: 100%;
        font-size: 45px;
    }
    .containe_txt_opcion svg{
        width: 70%;
    }
    .mejor_opcion_right h1{
        font-size: 24px;
    }
    .slider_personalizado{
        margin-top: 2rem;
    }
    .slide_personalizado-img{
        display: flex;
        justify-content: center;
    }
    .slide_personalizado h2{
        font-size: 28px;
    }
    .slide_personalizado p{
        font-size: 16px;
        line-height: 1.5;
    }
    .navigation_personalizado .btn_personalizado{
        width: 50px;
    }

     /* SECCION DE FACTORES QUE BENEFICIAN */
     .factoresBenefician h1{
        width: 80%;
        line-height: 1.33;
    }
    .container_item h3{
        font-size: 24px ;
    }
    .container_item p{
        font-size: 20px;
    }
  .wrapper_factores{
    flex-direction: column;
    }
    .factores_left{
        width: 100%;
    }
    .factores_right{
        padding-top: 40px;
        width: 100%;
    }
      /* SECCION FOOTER */
  .contenedor_footer{
    flex-direction: column;
  }
  .wrapper__contenido__footer{
    margin-top: 2rem;
    gap: 15px;
    flex-wrap: wrap;
  }
    .caracteristicas_title h2{
        font-size: 32px;
    }
    .titulo_como_funciona{
        /* background-color: red; */
        line-height: 1.4;
        font-size: 32px;
    }
    .wrapper_como_funciona{
        flex-direction: column-reverse;
    }
    .wrapper_como_funciona-2{
        flex-direction: column-reverse;
    }
    .como_funciona-right, .funciona_2-left{
        width: 100%;
    }
    .como_funciona-left, .funciona_2-right{
        width: 100%;
    }
    .funciona_2-left{
        padding-top: 20px;
    }

    /* SECCION DE PORQUE SOMOS LA MEJOR OPCION */
    .wrapper_mejor_opcion{
        flex-direction: column;
    }
    .mejor_opcion_left{
        width: 100%;
    }
    .containe_txt_opcion p{
        width: 90%;
    }
    .mejor_opcion_right{
        width: 100%;
    }
    
    /* FACTORES QUEBENEFICIAN */
    .factoresBenefician h1{
        width: 95%;
        line-height: 1.4;
    }
    .item_factor{
        flex-direction: column;
        margin-top: 20px
    }
    .container_item h3{
        text-align: center;
    }
    .container_item p{
        width: 100%;
    }
    .item_factor-img img{
        width: 100px;
    }
    .bg_blue-height h1{
        line-height: 1;
    }
    .containe_txt_opcion svg{
        margin-top: 20px;
    }
}

/* ESTILOS PARA MOVIL EN HORIZONTAL */
@media (max-width:920px ) and (orientation:landscape) and (min-width:600px){
    .container-banner{
        height: max-content!important;
        
    }
    .wrapper{
        flex-direction: column!important;
        height: 100%;
    }
    .mejor_opcion_left{
        height: 500px;
    }
}

/* ESTILOS PARA GALAXY FOLD */
@media (max-width:300px){
    .titulo_como_funciona{
        font-size: 28px;
    }
    .bg_blue-height{
        height: max-content;
    }
    .containe_txt_opcion p{
        font-size: 30px;
    }
    .containe_txt_opcion svg{
        margin-top: 20px;
    }
    .wrapper_funciona-left h1{
        font-size: 28px;
    }
    .factoresBenefician h1{
        font-size: 32px;
        line-height: 1.4;
    }
}