


/* ------------------------STLYE BASIC PAGES ------------------------*/
body{
    background-color:#306a8f;
    justify-content: center;
}

.body-color{
    background-color:#f6faff;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #f6faff;
  }

h1{
    font-size: 250%;
    padding-bottom: 10px;
}

h2{
    font-size: 80%;
    font-family: 'tipo-bebas', sans-serif;
    color: #306a8f;
}

nav{
    background-color: #f6faff;
    z-index: 99;
}

footer{
    background-color: #306a8f;
}

li{
    padding-top: 10px;
}

.block-text{
     text-align: justify;
}

.video{
    width: 360px;
    height: 360px;
}
/*--------------------------ORGANIZADOR---------------------*/
.contenedor {
    display: flex;
    flex-direction: row; /* Por defecto, los elementos se organizan en una fila */
}

@media (max-width: 768px) { /* Ajusta el valor según el punto de ruptura que desees */
    .contenedor {
        flex-direction: column;
    }
}
/*-----------------------TIPOGRAFÍAS----------------------------*/
@font-face {
    font-family: 'tipo-bebas';
    src: url('/config/typography/BebasNeue-Regular.ttf') format('woff');
  }

@font-face {
    font-family: 'tipo-poppins';
    src: url('/config/typography/Poppins-Bold.ttf') format('woff');
}

@font-face {
    font-family: 'tipo-robotoregular';
    src: url('/config/typography/Roboto-Regular.ttf') format('woff');
}

/*--------------------ESTILO IMG GENERAL --------------------------------*/

.img-icon{
    width: 80%;
    padding: 10px;
    
}

.img-icon2{
    width: 100%;
}

/*-------------------------REDES SOCIALES--------------------------------*/

.img-icon-socialmedia{
    margin-top: 30px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 20px;
    background-size: cover;
    width: 10%;
}

.img-contact-socialmedia{
    background-size: cover;
    height: auto;
    width: 10%;
    padding: auto;
}

.img-imagenGeneral{
    width: 100%; 
}


/*----------------------------NAV------------------------------*/

.style-nav{
    padding-top: 10px;
    padding-bottom: 10px;
    height: auto;
    
}
.style-navbar{

    z-index: 1000; /* Un valor alto para asegurarse de que esté encima de otros elementos */
    position: fixed; /* o absolute, fixed, o sticky; z-index solo funciona en elementos posicionados */
}

.img-logo{
    background-image: url('/imgs/logos/logoBlocksCenter.png');
    background-size: cover;
    width: 50px;
    height: auto;
}

.hero, .who, .pros, .how, .others{
    padding-top: 100px;
    padding-bottom: 100px;
    height: auto;
}
.hero{
    background-image: url('/imgs/generales/background-monedero.jpeg');
    padding-top: 200px;
    padding-bottom: 250px;
    background-size: cover;
    width: 100%;
    height: auto;
}


.who{
    background-color: #306a8f;
    background-size: cover;
    width: 100%;
}

.pros{
    
    background-size: cover;
    width: 100%;
}


.how{
    background-color:#f6faff;
    background-size: cover;
    width: 100%;
}

.img-logo-hero{
    background-size: cover;
    width: 100%;
    height: auto;
    align-items: center;
}

.img-icon-vmv{
    margin-left: 140px;
    width: 60%;
}

.img-icon-vision1{
    display: none;
}

/*--------------------------FOOTER-----------------------------*/
.style-footer{
    padding-top: 10px;
    padding-bottom: 10px;
    height: auto;
}

.style-text-footer{
    text-align: center;
    margin-top: 30px;
}

.style-text-footer p{
    margin-top: 30px;
    height: auto;
    color: #eeeff1; 
}

.style-content-footer{
    margin: 8px;
}
/*----------------------ESTILO TARJETAS-------------------------*/
.carta{
    width: 100%;
    margin: 45px;
    border-radius: 6px;
    overflow: hidden;
    cursor: default;
    transition: all 400ms ease;
    border-radius: 15px;

}

.carta:hover{
    box-shadow: 5px 5px 10px #888888;
    transform: translateY(-6px);
}


.carta-tittle{
    font-size: 190%;
    font-family: 'tipo-bebas', sans-serif;
    color: #306a8f;
    text-align: center;
    z-index: 1;
}

.carta-text{
    margin: 20px;
}

.carta-option{
    width: 90%;
    margin: 20px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
    cursor: default;
    transition: all 400ms ease;
}

.carta-img{
    width: 70%;
    margin: 10px;
    display: flex;
    flex-direction: row; /* Por defecto, los elementos se organizan en una fila */
}

/*-----------------------ESTILO BOTONES---------------------------*/

/*-----------------------BOTONES NAVBAR---------------------------*/
.style-button-navbar{
    margin-right: 10px;
    margin-left: 10px;
}
.style-bsesion-navbar{
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: right;
}

/*-----------------------BOTONES FOOTER---------------------------*/

.style-button-footer{
    margin: 5px;
}
/*----------------------BOTON SECUNDARIO--------------------------*/
.button-secundary{
    color: #ffffff;
    transition: all 0.3s;
    position: relative;
    text-align: center;
  }
  .button-secundary span {
    transition: all 0.3s;
  }
  .button-secundary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    border-top-width: 3px;
    border-bottom-width: 3px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-top-color: #f6faff;
    border-bottom-color: #f6faff;
    transform: scale(0.1, 1);
  }
  .button-secundary:hover span {
    letter-spacing: 2px;
  }
  .button-secundary:hover::before {
    opacity: 1; 
    transform: scale(1, 1); 
  }
  .button-secundary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.3s;
    background-color: #ffffff1a;
  }
  .button-secundary:hover::after {
    opacity: 0; 
    transform: scale(0.1, 1);
  }

/*------------------------BOTON HERO1-----------------------------*/
.style-button-hero{

    font-family: 'tipo-robotoregular', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 700;
    height: auto;
    color: #306a8f;
    background: #008fb3;
    background: linear-gradient(90deg, #f6faff 0%, #f6faff 100%);
    border-color: #306a8f;
    border-radius: 1000px;
    box-shadow: 12px 12px 24px #306a8f;
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    padding: 10px;
    text-decoration: none;
}


.style-button-hero:hover, .style-button-hero:focus {
    color: #f6faff;
    background: #306a8f;
    transform: translateY(-6px);
}

.style-button-hero::before, .style-button-hero2:focus::before {
  opacity: 1;
}

.style-button-hero:hover::after, .style-button-hero2:focus::after {
  animation: none;
  display: none;
}
/*-----------------------------BTN CUSTOM---------------------------*/

.btn-style-custom {
	background-color: #306a8f;
	border-color: #235d82;
	color:#FFFFFF;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
}
.btn-style-custom:hover,
.btn-style-custom:focus,
.btn-style-custom:active,
.btn-style-custom.active {
	background-color: #205a7f;
	border-color: #084267;
	color:#FFFFFF;
}
.btn-style-custom.disabled:hover,
.btn-style-custom.disabled:focus,
.btn-style-custom.disabled:active,
.btn-style-custom.disabled.active,
.btn-style-custom[disabled]:hover,
.btn-style-custom[disabled]:focus,
.btn-style-custom[disabled]:active,
.btn-style-custom[disabled].active,
fieldset[disabled] .btn-style-custom:hover,
fieldset[disabled] .btn-style-custom:focus,
fieldset[disabled] .btn-style-custom:active,
fieldset[disabled] .btn-style-custom.active {
	background-color: #306a8f;
	border-color: #235d82;
	color:#FFFFFF;
    
}


/*-------------------------FLOTANT BUTTON-----------------------*/
#floatingButton {
    position: fixed;
    bottom: 20px;  /* Distancia desde el borde inferior */
    right: 20px;   /* Distancia desde el borde derecho */
    z-index: 1000; /* Asegura que el botón esté por encima de otros elementos */
    /* Estilos adicionales para el botón (opcional) */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 3%;
}

#floatingButton:hover {
    background-color: #306a8f; /* Color al pasar el mouse por encima (opcional) */
    position: fixed;
}


/*-------------CONDICIONES DE PANTAllA----------------------------*/
@media screen and (max-width:  1450px){
    .mapa{
        margin: 30px;
        width: 300px;
        height: 300px;
    }
}


@media screen and (max-width:  991px){
    #floatingButton{
        width: 5%;
    }

    .img-icon-vmv{
        margin-left: 110px;
    }

    .img-icon-vision1{
        display: block;
    }

    .img-icon-vision2{
        display: none;
    }

    .mapa{
        margin: auto;
    }
}

@media screen and (max-width:  765px){



    .mapa{
       margin: auto;
    }
}

@media screen and (max-width:  575px){
   .style-what-tittle-about, .style-what-tittle-about, .style-what-tittle-about{
    font-size: 300%;
   }

   .img-icon-vmv{
    width: 60%; 
        margin-left: 80px;
    }

    .style-what-tittle-about{
        font-size: 30px;
    }

    

    .style-who-description strong{
        font-size: 90%;

    }

}

@media screen and (max-width:  375px){
    #floatingButton{
        width: 10%;
    }
    
    .img-icon-vmv{
        margin-left: 70px;
    }

    .style-what-tittle-about{
        font-size: 30px;
    }
}