
/**
 * ===================================================
 * © 2025 YUYAY Ltda. - yuyay.fin.ec
 * Sistema: Pagína Web
 * Versión: 2.5
 * Desarrollador: [Leonardo Verdugo Crespo - Sistemas]
 * Última modificación: 24/06/2024
 * ===================================================
 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}
:root{
    --color_text-primary: #0464b4   ;
    --color_text-secundary: #101E2C;
    --color-text-tertiary: #485663;
    --main_color-primary:  #0067B1;
    --main_color-secundary: #0067B1;
    --background-color: #FAFBFE;
    --lowText_font_size: 16px;
    --text_size_title: 40px;
    --text_title_card: 24px;
    --text_title_card2:20px;
    --text_paragraph:16px;
    --box_shadow-primary:0px 6px 50px -20px rgba(0,0,0,0.2);
}
/*MENU PEGAJOSO*/

      /* Estilos del botón a la izquierda con puntas redondeadas */
      .menu-btn {
        background-color: #007BFF; /* Color de fondo del botón */
        color: rgb(255, 255, 255);
        border: none;
        padding: 10px 20px;
        border-radius: 25px; /* Bordes redondeados */
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s;
      }
      
      .menu-btn:hover {
        background-color: #0056b3; /* Cambio de color al pasar el cursor */
      }
      
      /* Estilos para el logo */
      /* Estilos para el logo, centrado en el navbar */
    .logo {
    display: flex;
    align-items: center; /* Centrado vertical del logo */
    
   
     }
    .logo img {
        height: 100px; /* Ajusta el tamaño del logo */
      
      }
    body.sticky-header{
        padding-top: 100px;

    }
  
    body.sticky-header header{
        height: 60px;
        background:var(--background-color);

    }
    body.sticky-header header h1{
        transform: scale(0,0);

        }
/*Estilos Generales CARDS*/
.container__card-primary{
    padding-top: 50px;
}
.card__primary{
    max-width: 800px;
    margin: auto;
    text-align: center;
    padding: 0px 20px;
   /* margin-top: 300px;*/
}
.text__card-primary{
    max-width: 1500px;
    margin:auto;
    margin-top: 40px;
}
.text__card-primary p{
    color: var(--color_text-primary);
    letter-spacing: 4px;
    font-size: var(--text_paragraph);
    font-weight: 500;
}
.text__card-primary h1{
    font-size: var(--text_size_title);
    font-weight: 600;
    color: var(--color_text-secundary);
}
.container__box-cardPrimary{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}
.box__card-primary{
    max-width: 350px;
    padding: 60px 40px;
    border:1px solid #e6e6e6;
    border-radius: 20px;
    margin: 14px;
    transition: all 500ms;
}
.box__card-primary:hover{
    border: 1px solid transparent;
    box-shadow: var(--box_shadow-primary);
}
.box__card-primary h2{
    font-size: var(--text_title_card);
    margin-top: 40px;
    font-weight: 500;
    
}
.box__card-primary p{
    margin-top: 20px;
}
/*Sobre Nosotros*/
.container__historia{
    padding: 60px 0px;
    background: var(--background-color);
    margin-top: 100px;
}
.historia{
    max-width: 1200px;
    margin:auto;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 130px;
}
.text__historia{
    width: 100%;
    padding-right: 40px;
}
.text__historia h1{
    color:var(--color_text-secundary);
    font-weight: 600;
}
.text__historia p{
    font-size: var(--text_paragraph);
    margin-top: 40px;
    color:var(--color-text-tertiary);
    text-align: justify;
}

.image__historia{
    width: 100%;
    display: flex;
}
.image__historia img{
    width: 400px;
}
.box__card-primary img{
    width: 300px;

}


/* Franja Azul */
.blue-bar {
    background-color: #007BFF; /* Azul */
    color: white;
    padding: 7px 0;
}

/* Contenedor de los elementos dentro de la franja */
.g-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between; /* Alinea a la izquierda y derecha */
    align-items: center; /* Alinea verticalmente al centro */
}
.g-grid {
    display:flex;
    gap: 600px;
}
/*Accesos */
#g-accesos{
    height: 100px;
}
.horarios {
    display: flex;
    flex-direction: column;
    gap: 5px; /* Espacio entre los contactos */
    margin-top: 30px;
  }
  
  .contacto {
    display: flex;
    align-items: center;
  }
  
  .telefono-icono, .correo-icono {
    font-size: 16px; /* Tamaño de los iconos */
    margin-right: 10px; /* Espacio entre el icono y el texto */
    transition: transform 0.3s ease, color 0.3s ease; /* Animación para el cambio de tamaño y color */
  }
  
  .telefono-icono:hover {
    transform: scale(1.2); /* Al pasar el ratón sobre el icono del teléfono, crecerá */
    color: #007bff; 
  }
  
  .correo-icono:hover {
    transform: scale(1.2); /* Al pasar el ratón sobre el icono del correo, crecerá */
    color: #007bff; /* Cambiar el color del icono del correo */
  }
  


/*Navegador*/
.container__header{
    background-color: #007BFF; /* Azul */
    color: white;
        max-width: 100%;
        height: 100%;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 30px;
    
}
/*Carrusel*/
h2{
    margin-top: 100px;
    position: center;
}
.content-all{
    width: 210px;
    margin: auto;
    perspective: 800px;
    position: relative;
    margin-top: 30px;
}

.content-carrousel{
    width: 100%;
    position: absolute;
    animation: rotar 40s infinite linear;
    transform-style: preserve-3d;
}

.content-carrousel:hover{
    animation-play-state: paused;
    cursor: pointer;
}


.content-carrousel figure{
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: absolute;
    box-shadow: 0px 0px 20px 0px black;
    transition: all 300ms;
    
}

.content-carrousel figure:hover{
    box-shadow: 0px 0px 0px 0px black;
    transition: all 300ms;
}

.content-carrousel figure:nth-child(1){transform: rotateY(0deg) translateZ(300px);}
.content-carrousel figure:nth-child(2){transform: rotateY(40deg) translateZ(300px);}
.content-carrousel figure:nth-child(3){transform: rotateY(80deg) translateZ(300px);}
.content-carrousel figure:nth-child(4){transform: rotateY(120deg) translateZ(300px);}
.content-carrousel figure:nth-child(5){transform: rotateY(160deg) translateZ(300px);}
.content-carrousel figure:nth-child(6){transform: rotateY(200deg) translateZ(300px);}
.content-carrousel figure:nth-child(7){transform: rotateY(240deg) translateZ(300px);}
.content-carrousel figure:nth-child(8){transform: rotateY(280deg) translateZ(300px);}
.content-carrousel figure:nth-child(9){transform: rotateY(320deg) translateZ(300px);}
.content-carrousel figure:nth-child(10){transform: rotateY(360deg) translateZ(300px);}

.content-carrousel img{
    width: 100%;
    transition: all 300ms;
}

.content-carrousel img:hover{
    transform: scale(1.2);
    transition: all 300ms;
}

@keyframes rotar{
    from{
        transform: rotateY(0deg);
    }to{
        transform: rotateY(360deg);
    }
}

/*Escencia*/


.card__esencia {
    margin-top: 120px;
}
.card__esencia img{
    width: 220px;
}

.card__esencia i{
    font-size: 24px;
    margin-top: 20px;
    cursor: pointer;
    color: var(--color_text-primary);
}

/*Identidad*/

.card__primary_escencia{
    display: flex;
    margin-top: 100px;
    gap: 30px;
    align-items: center;
    height: 100%;
    margin: auto;
    justify-content: space-between;
    padding: 0px 30px;

   
}

.image__vision img, .image__mision img{
    width: 300px;
    
}  

.container__valores{
    margin-top: 0px;
    padding-top: 0px;
    background-image: url("../images/Conocenos/fondoblanc.png");
}
/*Principios y Valores Cooperativos*/
/* Estilos para la tarjeta */
.card__valores {
    background-color: #f9f9f9; /* Fondo claro para resaltar el contenido */
    border-radius: 10px; /* Bordes redondeados */
    padding: 20px;
    text-align: left; /* Centrar el contenido */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra sutil */
    width: 300px;
    margin: 20px auto;
    margin-top: 0px;
}
.card__valores h2{

    text-align: center; /* Centrar el contenido */
}
/* Estilos para la lista de marcas */
.car-brands {
    list-style-type: none; /* Elimina los puntos de la lista */
    padding: 0;
    margin: 20px 0;
}

/* Estilos para cada marca */
.car-brands li {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Espacio entre cada ítem */
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
}

/* Efecto hover para hacerlo más llamativo */
.car-brands li:hover {
    color: #007bff; /* Cambia el color al pasar el mouse */
    cursor: pointer;
}

.car-brands li::before {
    content: '•'; /* Un punto */
    color: black; /* Color del punto */
    font-size: 20px; /* Tamaño del punto */
    margin-right: 10px; /* Espacio entre el punto y el texto */
}

/*CONSEJO DE ADMINISTRACION*/

.text__identidad h1{
    position: center;
}
.container__background-triangle{
    max-width: 1200px;
    height: 600px;
    margin: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.triangle{
    width: 300px;
    height: 300px;
    background: red;
    position: absolute;
}

.triangle1{
    width: 250px;
    height: 250px;
    background: linear-gradient(to left, #0ea1e6, #1e67c7);
    right: 100px;
    top: 100px;
    animation: t1 8s ease infinite;
}

.triangle2{
    width: 200px;
    height: 200px;
    background: linear-gradient(to left, #ee8105, #c7371e);
    top: 350px;
    animation: t2 9s ease infinite;
}

.triangle3{
    width: 300px;
    height: 300px;
    background: linear-gradient(to left, #1b8fc5, #df0f8f);
    left: 200px;
    animation: t3 7s ease infinite;
}

@keyframes t1 {
    0%{
        transform: rotate(45deg) translateY(0px);
    }
    50%{
        transform: rotate(45deg) translateY(20px);
    }
    100%{
        transform: rotate(45deg) translateY(0px);
    }
}

@keyframes t2 {
    0%{
        transform: rotate(65deg) translateY(0px);
    }
    50%{
        transform: rotate(65deg) translateY(20px);
    }
    100%{
        transform: rotate(65deg) translateY(0px);
    }
}

@keyframes t3 {
    0%{
        transform: rotate(45deg) translateY(0px);
    }
    50%{
        transform: rotate(45deg) translateY(20px);
    }
    100%{
        transform: rotate(45deg) translateY(0px);
    }
}


.container__cards{
    width:100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
   /*position: absolute;*/
    top: 50%;
    left: 50%;
    margin-top: 10px;
    /*transform: translate(-50%, -50%);*/
    background-image: url(../images/Conocenos/Señorafondo.jpg);
    background-repeat: no-repeat;
    background-size: cover; /* Hace que la imagen cubra el área del contenedor */
    
}

.card{
    width: 250px;
    height: 400px;
    margin: 10px;
    padding: 20px;
    box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
    background: rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 300ms;
}

.card:hover{
    transform: translateY(-10px);
}

.card:hover .cover__card img{
    transform: scale(1.1);
}

.cover__card{
    width: 100%;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
}

.cover__card img{
    width: 110%;
    transition: all 300ms;
}

.card h2{
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    color: #fff;
}
.card h4{
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #343434;
    font-weight: 700;
}

.card p{
    margin-top: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.5px;
}
.card p1 {
    margin-top: 20px;
    font-size: 18px; /* Aumenta ligeramente el tamaño */
    font-weight: 400; /* Un poco más grueso para mejor legibilidad */
    color: #111111; /* Negro más profundo para mayor contraste */
    letter-spacing: 1px; /* Aumenta el ancho entre letras */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Sombra sutil */
}

.card hr{
    margin-top: 30px;
    border: none;
    height: 0.2px;
    background: #41414138;
}

.footer__card{
    margin-top: 10px;
    display: flex;
    color: #fff;
    justify-content: space-between;
}

.footer__card h3{
    font-size: 15px;
    font-weight: 500;
}

@media screen and (max-width:1200px) {
    .container__cards{
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        padding-bottom: 100px;
    }
}

/*Aquí debajo va el FOOTER*/

footer{
    width: 100%;
    padding: 20px 0px;
    background-image: url(assets/images/Footer/background-footer.svg);
    background-size: cover;
    
    /*background-color: #d0f0f8;
    -webkit-mask-image: url("../Images/background-footer.svg");
    mask-image: url("../Images/background-footer.svg");
    -webkit-mask-size: cover;
    mask-size: cover;*/
}

.container__footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    margin-top: 5px;
}

.box__footer{
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.box__footer .logo {
    
    margin-top: 90px;
    margin-bottom: 10px;
}
.box__footer .logo img{
    width: 190px;
    height: 60px;
}

.box__footer .terms{
    max-width: 350px;
    margin-top: 20px;
    font-weight: 500;
    color: #7a7a7a;
    font-size: 18px;
}

.box__footer h2{
    margin-bottom: 30px;
    color: #343434;
    font-weight: 700;
}

.box__footer a{
    margin-top: 10px;
    color: #7a7a7a;
    font-weight: 600;
}

.box__footer a:hover{
    opacity: 0.8;
}

.box__footer a .fab{
    font-size: 20px;
}

.box__copyright{
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0px 40px;
}

.box__copyright p{
    margin-top: 20px;
    color: #7a7a7a;
}

.box__copyright hr{
    border: none;
    height: 1px;
    background-color: #7a7a7a;
}
/*TARJETAS MISION Y VISION*/
.identidad {
    display: flex;
    justify-content: center; /* Alinea las tarjetas horizontalmente */
    gap: 30px; /* Espacio entre tarjetas */
    width: 100%;
    margin-top: 20px;
}

.identidad__card {
    width: 400px; /* Ancho uniforme */
    height: 310px; /* Alto uniforme */
    background: #f9f9f9 ; /* Color de fondo de la tarjeta */
    color: white;
    border-radius: 15px; /* Bordes redondeados */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(96, 194, 207, 0.2);
    padding: 20px;
}

.card__content {
    max-width: 90%;
}
