@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --color-costa: #039EBA;
    --color-urbano: #D77D03;
    --color-campestre: #A9A716;
    --color-residencial: #639d91;
    --color-blanco: #fff;
    --color-rojo: #e74c3c;
    --color-negro: #000;
    --color-label-login: #026F82;
    --color--gray: #DFE0DF;
    --grisSecundario: #413e37;
    --naranjaSecundario:rgb(214, 179, 109);
    
    --fuente: "Montserrat", sans-serif;
}
/* globales */
html {
    box-sizing: border-box;
    /**para que el border, padding y estilos no afecten nuestros elementos**/
} 
*,
*:before,
*:after {
    box-sizing: inherit;
}
body {
    font-size: 15px;
    font-family: var(--fuente);
    margin: 0;
    padding: 0;
}
a,p{
    text-decoration: none;
    color: var(--color-negro);
    padding: 0;
    margin: 0;
}
h1{
    margin: 0;
}


/* -----------------------------------------ASIDE------------------------------ */
.headerApp{
    width: 100%;
    height: 5vh;
    background-color: #026F82;
    display: flex;
    justify-content: center;
}
.headerApp a{
    color: var(--color-blanco);
}

.mainPrincipal{
    display: grid;
    grid-template-columns: 15% 85%;
    min-height: 95vh;
}
.asidePrincipal{
    height: 100%;
    background-color: #417477;
    /* background-color: var(--color-costa); */
    display: flex;
    flex-direction: column;
    color: #000;
}
.divPrincipalContenido{
    background-color: #f6f2f2cf;
}
/*MENU LATERAL */
/* Logo */
.logo{
    width: 100%;
    height: 250px; 
    background-image: url("https://grupoconcordia.info/embajadores/VeLB_Blanco_vertica.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}
.nombre-usuario{
    text-align: center;
    border-bottom: 2px rgb(223, 223, 223) solid;
    padding-bottom:5px ;
}

.nombre-usuario a{
   color: var(--color-blanco); 
}
/* Botones de las campañas */
.contenedor-btn{
    width: 100%;
    height: -webkit-fill-available;
    padding-top: 15px;
}
.titulo-campania{
    font-size: 40px;
    font-weight: bold;
}
.btnCampania{
    display: flex;
    align-items: center;
    padding-left: 15px;
    gap:8px;
    margin-top: 20px;
}
.contenedor-campania{
    background-color: #639d91;
}
.circulo{
    width: 20px;
    height: 20px;
    background-color: #DAC3C3;
    border-radius: 100%;
}
.btnCampania a{
    color: #DAC3C3;
}
.active .circulo {
    background-color: #50CB88;
}

.active  a{
    color: #ffffff;
    font-weight: bold;
}
/* -------------------Contenedor de campañas-------------------------- */
.contenedorPrincipalCampanias{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contenedorPrincipalCampanias h1{
    text-align: center;
    align-self: self-start;
    color: #3d667d;
    width: 100%;
}
.contenedorCampanias{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.titulo-fraccionamiento{
    font-size: large;
    font-weight: bold;
    color: #0C405C;
}
.card{
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    gap: 9px;
    border-radius: 8px;
    background-color: var(--color-blanco);
}
.card:hover{
    box-shadow: rgba(81, 155, 205, 0.942) 0px 1px 4px;
}

.descripcion{
    font-size: smaller;
    text-align: justify;
    padding: 8px;
    height: 170px;
}
.imgPublicacion{
    width: 225px;
    height: 220px;
    padding-top: 8px;
}

.btn-compartir{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 100%;
    background-color: #D2EDEB;
    color: #0C405C;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.btn-compartir:hover{
    background-color: #3d667d;
    color: var(--color--gray);
}
.contenedorPrincipalcampania{
    width: 100%;
    height: 80vh;
   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* Boton de enviar */
.contenedorBtnEnviar{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;  
    /*height: -webkit-fill-available;*/
    padding: 8px;
}
.contenedorBtnEnviar .btnEnviar{
    width: 200px;
    height: 40px;
    border-radius: 5px;
    border: none;
    background-color: #25a7be; 
    color: var(--color-blanco);
    font-size: large;
}
.btnEnviarCampania{
    background-color: #026F82 !important;
}
.adjuntar{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
/* Crear Variante enlace */
.variante{
    text-decoration: none;
    color: var(--color-blanco);
    border-radius: 5px;
    display: flex;
    justify-content: end;
    width: 95%;
}
.variante a:hover{
    text-decoration: none;
    background-color:#25a7be; 
    color: white;
}
.variante a{
    color: var(--color-blanco);
    padding: 10px;
    background-color: var(--color-label-login);
    border-radius: 8px;
}
/* textarea */
.description{
    width: 100%;
}
/* Boton Cerrar Sesion en menu campañas */
.nav-nuevaCampania{
    width: 100%;
    height:40px ;
    background-color: #026F82;
}
.navbar{
    height: fit-content;
    padding-bottom: 0px;
}

.enlaces {
    width: 20%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.enlaces a{
    color: white;
    font-size: medium;
}
.enlaces a:hover{
    color: var(--color-blanco);
    font-weight: bold;
    text-decoration: none;
}
.enlaceNombre{
    font-weight: bold;
}
.navbar form{
    width: 100%;
}
.btn-logout-menu{
    width: 100%;
    height: 30px;
    border: none;
    border: none;
    background-color: #639d91;
    font-weight: 500;
    color: var(--color-blanco);
}
.btn-logout{
    border:none;
    height: 30px;
    color: var(--color-blanco);
    background-color: var(--color-label-login);
    padding-right: 9px;
    border-radius: 5px;
    margin: 5px 0px;
}
.container-logout{
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-between;
    background-color: var(--color-label-login);
}
.container-logout .row{
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Formulario */
.contenedorPrincipalFormulario{
    width: 100%;
    height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: center;
}
.logoVive{
    height: 100%;
    width: 48%;
    background-image: url("https://i.postimg.cc/28pf4FT8/Toscana4.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.logoVive img{
    width: 40%;
}
.contenedorFormulario{
    /* background-color: #4ab8cecc; */
    width: 55%;
    border-radius: 8px;
    height: fit-content;
    padding: 10px;
}
.mb-3 label{
    color: var(--color-blanco);
}
.formularioCliente{
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 100%;
    justify-content: space-evenly;
}
.formularioCliente .legendEmbajador{
    font-weight: bold;
    font-size: 38px;
    text-align: center;
}

.select-cliente,.select-zona {
    appearance: none;
    /*border: none;*/
    font-size: medium;
    width: 80%;
    padding: 5px;
    color: var(--color-label-login);
    border-radius: 0.25em;
    background-color: var(--color-blanco);
    cursor: pointer;
    outline: none;
}
.select-zona{
    width: 100%;
}
.fila-cliente select {
    width: 100%;
    height: 100%;
}
.x{
    display: none;
}
.contenedorInput{
    width: 100%;
}
.contenedorInput input{
    height: 100%;
    width: 100%;
    border: 1px solid #a7a5a5;
    border-radius: 5px;
}

.span-formulario{
    color: #58c8db;
}
.legendCliente{
    font-weight: bold;
    font-size: 38px;
    text-align: center;
}
.contenedorInput input, .formularioCliente input{
    height: 37px;
}
/* Tabla */
.contenedor-tabla{
    width: 100%;
    justify-content: center;
    align-items: center;
}
.titulo-tabla{
    color: var(--color-label-login);
    text-align: center;
    font-size: 40px;
    font-weight: bold;
}
.tabla{
    margin-top: 2rem;
    width: 90%;
    border-collapse: collapse;
}
.tr-cabezera{
    background-color: #039EBA;
    color: var(--color-blanco);
}
.tabla th, .tabla td{
 border: 1px solid var(--color-label-login);
 text-align: center;
}
.estado{
    width: 100%;
    border: none;
}
.btn-aprobacion{
    width: 55%;
    height: 17px;
    border-radius: 4px;
    background-color: var(--color-label-login);
    color: var(--color-blanco);
}
.btn-aprobacion:hover{
    background-color: var(--color-costa);
    text-decoration: none;
}
.botones-aprobacion{
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}
/*------------------- LOGIN-------------------- */
.main-login{
  background-color: aliceblue;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
   
}
.login-parrafo{
    font-size: 35px;
    font-weight: bold;

}
.login-general{
   display: flex;
   background-color: var(--color-label-login);
   gap: 20px;
   border-radius: 15px;
}
.cont-logo{
    display: flex;
    flex-direction: column;
    font-size: x-large;
    height: min-content;
    align-items: center;
    gap: 15px;
    padding: 30px;
}
.cont-logo img{
  width: 300px;
  border-right: 5px white solid;
    
}
.login-container{
    padding: 30px;
    color: var(--color-blanco);
    font-weight: bold;
    height: 100%;
}
.login-body{
    height: 88%;
    display: flex;
    flex-direction: column;
    gap: auto;
    justify-content: space-evenly;


}
.legend-login{
    text-align: center;
}

.login-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: larger;
    gap: 10px;

}
.login-form .datos-inicio{
    display: flex;
    flex-direction: column;
    align-items: left;
    width: -webkit-fill-available;

}

.open-sesion{
    flex-direction: row;
    gap: inherit;

}
.container-btn-login{
    width: 100%;
}
.btn-login{
    width: 100%;
    border: none;
    border-radius: 3px;
    padding: 6px;
}
@media (max-height:700px ){
    .imgPublicacion {
        width: 60%;
    }
    .formularioCliente {
        padding: 0px 50px;
        gap: 5px;
    }
    .formularioCliente legend {
        font-size: 31px;
    }
    .contenedorFormulario {
        width: 63%;
    }
    .content-form-registro .contenedorPrincipalFormulario{
        height: fit-content;
    }
 
}
@media (max-width: 1024px){
    .contenedorFormulario {
        width: 90%;
    }
    .contenedorPrincipalCampañas{
        display: flex;
        flex-direction: column;
        gap:6rem;
    }
    .contenedorBtnEnviar {
        align-items: center;
    }
}
@media (max-width: 767px){
    .mainPrincipal {
        display: flex;
        flex-direction: column;
    }
    .logo {
        width: 49%;
        height: 167px;
    }
    .asidePrincipal {
    
        align-items: center;
    }
    .contenedor-btn {
        font-size: small;
        /* width: 100%; */
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 0px;
    }
    .contenedorCampanias {
        gap: 10px;
        flex-direction: column;
        margin-bottom: 32px;
        padding-top: 20px;
    }
    .contenedorPrincipalCampañas {
        display: flex;
        flex-direction: column;
    }
    .card{
        width: 90%;
    }
    .contenedorPrincipalCampañas h1{
        margin: 10px;
    }
    .contenedorBtnEnviar {
        align-items: end;
    }
    .headerApp {
        height: 1vh;
    }
    
    .formularioCliente {
        padding: 10px;
        gap: 2px;
    }
    .contenedorInput input {
        height: 80%;
    }
    .formularioCliente legend {
        font-size: 30px;
    }
    .login-general{
        flex-direction: column;
        gap: 0px;
     }
     .cont-logo img {
      
        border-right: none;
        border-bottom: 5px white solid;;
    }
    .logoVive{
    display: none;
    }
    .content-form-registro{
    background-image: url("https://i.postimg.cc/28pf4FT8/Toscana4.jpg");
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;

    }
    .span-formulario{
    color: #068297;
    }
    .navbar {
    height: fit-content;
    padding-bottom: 0px;
    width: 100%;
    }
    .nombre-usuario{
        width: 100%;
    }
    
}
@media (max-width: 574px){
  
    .contenedorPrincipalCampañas h1 {

        font-size: x-large;
    }
    .contenedorInput {
        height: 35px;
    }
    .formularioCliente legend {
        font-size: 27px;
    }
    .imgPublicacion{
        width: 205px;
        height: 200px;
    }
    .titulo-campania{
        font-size: 30px;
        margin: 10px;
    }
    .contenedorCampanias {

        padding-top: 30px;
    }
    .contenedorBtnEnviar {
        padding-top: 15px;
    }
}
@media (min-width: 768px) and (min-height: 1024px){
    .mainPrincipal{
        grid-template-columns: 20% 80%;
    }
    .contenedorCampanias {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
    .card {
        width: 97%;
    }
    .card:nth-child(3){
        grid-column: 1/3;
        width: 50%;
    }
    .descripcion{
        height: 180px
    }
    .contenedorPrincipalFormulario {
   
    flex-direction: column;
    }
    .logoVive {
    width: 100%;
    }
    .logoVive img {
    width: 40%;
    padding: 62px;
    }
    .contenedorBtnEnviar {
        align-items: end;
    }
}
/* Landing */
.logo-landing{
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
     gap: 15px;
     background-color: #2158BA;
 }
 .logo-landing img{
     width: 200px;
 }
 .textoHeader{
     font-size: x-large;
     border-right: 5px rgb(7, 64, 117) solid;
     padding-right:10px ;
 }
 
 .header-landing{
     width: 100%;
     height: 900px;
     display: flex;
     justify-content: center;
     align-items: center;
     background-image: url('https://grupoconcordia.info/embajadores/velb_ho-banner_01.jpg');
     background-size: cover;
     color: #fff;
     font-size: 50px;
     text-align: center;
 }
 
 .nosotros-seccion{
     width: 100%;
     display: grid;
     grid-template-columns: repeat(2,1fr);
 }
 .nosotros{
     width: 100%;
     font-size: large;
     background-color: #EEF5FE;
 }

 .nosotros-seccion img{
     width: 100%;
 }
 .segundaSeccion{
     height: 300px;
     display: flex;
     justify-content: center;
     align-items: center;
     margin-top: 10px;
     font-weight: bold;
 }

 .pasosSeccion{
     width: 100%;
 }
 .pasosSeccion img{
     width: 100%;
 }
 .info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
 }
.info h1{
    font-size: 40px;
    margin-bottom: 20px;
    color: #3D3D3D;
}
 .info p{
    font-size: 20px;
    color: #3D3D3D;
    font-weight: 600;
    font-size: 26px;
    text-align: center;
 }

 .info a{
    color: #355BB6;
    font-weight: bold;
 }
 
 .contenedor-datos{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
    background-color: #355BB6;
 }

 .contenedor-datos p{
    color: #fff;
    font-size: 20px;
 }

  .section-pasos{
    width:100%;
    height: 30%;
    display:flex;
    justify-content: center;
  }
 .pasos{
    width: 100%;
    height: 100%;
    background-image: url("https://grupoconcordia.info/embajadores/rewards-pasos_04.png");
    background-size: contain;
    background-position: center ;
    background-repeat: no-repeat;
 } 


 
 .alerta-validacion{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #f4c714;
    color: #fff;
    text-align: center;
    padding: 4px;
}
/* Nueva Lannding */
.logos-superiores{
    display: flex;
}
.contenedor-titulo{
    text-align: left;
}
.header-landing p{
    color: #fff;
    word-break: break-all;
}
.underline{
    border-bottom: 7px solid #039EBA;
}
.span-weight{
    font-weight: bold;
}
.btn-registrate{
    color:#fff;
    background-color:#00C1B6;
    border:none;
    padding: 30px 60px;
    font-size:30px;
    font-weight: bold;
    cursor: pointer;
}
.btn-registrate:hover{
    opacity: 0.6;
}
.contadores{
    display: flex;
    /* justify-content: center;
    align-items: center; */
}
.contador span{
    color: #47D9D2;
    font-size: 70px;
    font-weight: bold;
}
.contador p{
    color: #fff;
}
.contador{
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 0 10px;
}
/* Seccion Rewards */
.section-rewards{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    place-content: center;
    place-items: center;
}
.div-chica, .div-carta{
    width:50%;
    height: 100%;
}
.carta-rewards p{
    font-size: 25px;
    margin-top: 25px;
}
.btn-azul{
    background-color: #355BB6;
    padding: 10px 40px;
    margin-top: 25px; 
}

.btn-verde{
    padding: 10px;
    margin-top: 25px; 
} 
/* Footer */
footer{
    height: 25%;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2em;
    background-color: #355BB6;
}
.logo-footer img{
    width: 500px;
}
.info-footer p{
   color: #fff;
   margin-top: 5px;
   font-size: 23px;
}
.text-white{
   color: #fff;
}
.bg-vlb{
    height: 60px;
    background-color: #355BB6;
    text-align: center;
    font-size: 20px;
    color: #fff;
} 
.seccion-datos{
    padding-top: 15px;
    width: 100%;
    background-color: #355BB6;
}
.seccion-datos p{
    font-size: 20px;
    text-align: center;
}