
/**
 * ===================================================
 * © 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);
}

/*ANIMACION DESAPARECE TOP*/

body.sticky-header{
	padding-top: 100px;

}

body.sticky-header header{
	height: 75px;
	background:var(--background-color);

}
body.sticky-header header h1{
	transform: scale(0,0);

	}

/* Estilo del botón Yuyay Online */
.btn__quote {
    display: inline-flex;
    padding: 1px 16px;
    margin: 5px 20px;
    background-color: #ffffff;
    color: #007BFF;
    text-decoration: none;
    border-radius: 5px;
    margin-left: 100px;
    transition: background-color 0.3s ease;
    white-space: nowrap; /* Evita que el texto se divida */
    text-align: center;
    width: auto;
    height: 43px;
    align-items: center;
    letter-spacing: 0px; /* Aumenta espacio entre letras */
    font-weight: bold;
    font-size: 16px;   /* Letras más gruesas y visualmente más anchas */
    /*#007BFF*/
 
}
.btn-icon {
    height: 50%;
    margin-right: 8px;
  }

.btn__quote:hover {
    background-color: #0056b3;
}

/* Estilo de los íconos sociales */
.socialMedia {
    display: flex; /* Alinea los elementos de manera horizontal */
    gap: 10px;
    align-items: center;

}

.socialMedia a {
    margin: 0px 4px;
    display: inline-block; 
   
}

.socialMedia img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
    color: white;
}

.socialMedia img:hover {
    transform: scale(1.2);
}

/*portada inicio*/
.container__cover{
    padding-top:100px ;
    padding-bottom: 100px;
    background: var(--main_color-secundary);
}
.cover{
    max-width: 1200px;
    margin:auto;
    margin-top: 180px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
}
.text__cover{
    width: 100%;
    padding-right: 150px;
}
.text__cover h1{
    font-size: 50px;
    color: var(--background-color);
}
.text__cover p{
    font-size: var(--text_paragraph);
    margin-top: 40px;
    color: var(--background-color);
}
.btn__text{
    display: block;
    width: 150px;
    margin-top: 40px;
    padding: 10px 20px;
    text-align: center;
    font-weight: 500;
    background: var(--color_text-primary);
    color: white;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
 
}

.btn__text:hover{
    background: var(--color_text-primary);
    border: 2px solid var(--color-text-tertiary);
    color:var(--color_text-secundary);
}
.image__cover{
    width: 100%;
}
.image__cover img{
    width: 550px;
}
/*Controla tu cuenta*/

.container__trust{
    margin-top: 0px;
    padding-top: 0px;
}
/*Estilos Generales CARDS*/
.container__card-primary{
    padding-top: 50px;
}
.card__primary{
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 50px 20px;
}
.text__card-primary{
    max-width: 800px;
    margin:auto;
}
.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__about{
    padding: 100px 0px;
    background: var(--background-color);
    margin-top: 100px;
}
.about{
    max-width: 1200px;
    margin:auto;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.text__about{
    width: 100%;
    padding-right: 40px;
}
.text__about h1{
    color:var(--color_text-secundary);
    font-weight: 600;
}
.text__about p{
    font-size: var(--text_paragraph);
    margin-top: 40px;
    color:var(--color-text-tertiary);
}
.image__about{
    width: 100%;
    display: flex;
}
.image__about img{
    width: 300px;
}
.box__card-primary img{
    width: 300px;

}
/*Servicios*/

.card__service img{
    width: 50px;
}

.card__service i{
    font-size: 24px;
    margin-top: 20px;
    cursor: pointer;
    color: var(--color_text-primary);
}

/*Organismos de Control*/
.card__work {
   
    width: 250px; /* Ajusta el ancho según sea necesario */
   
}
.card__work img {
    width: 100%; /* Hace que la imagen ocupe todo el ancho del contenedor */
    height: 200px; /* Hace que la imagen ocupe toda la altura del contenedor */
    object-fit: cover; /* La imagen cubrirá el área sin deformarse */
}
.box__card-organismo{
    max-width: 350px;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 14px;
    transition: all 500ms;
}
.box__card-organismo:hover{
    border: 1px solid transparent;
    box-shadow: var(--box_shadow-primary);
}

.container__box-cardOrganismos{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 40px;
}
/*Sucursales*/
.container__box-cardSucursal{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    gap: 20px; 
}
.card__map {
   
    width: 500px; /* Ajusta el ancho según sea necesario */

}

.container {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

.mapa {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

#map {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.informacion {
    width: 48%;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.informacion h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.sucursal {
    margin-bottom: 10px;
}

.accordion {
    background-color:#0464b4;
    color: rgb(255, 255, 255);
    padding: 15px;
    width: 100%;
    border: 2px solid #0072ff; /* Borde azul celeste */
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.accordion:hover {
    background-color: #0072ff;
    transform: scale(1.03); /* Ligero aumento en tamaño */
}

.accordion:active {
    transform: scale(0.98); /* Efecto de presión al hacer clic */
}

.panel {
    padding: 0 18px;
    display: none;
    background-color: #f1f1f1;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: left;
    transition: max-height 0.3s ease-out;
}

.panel p {
    padding: 3px 0;
    color: #555;
}

/*contador*/

/* Contenedor principal */
.content {
    margin-top: 30px; /* Ocupa todo el alto disponible */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
}

/* Vista, que es el contenido que queremos posicionar encima del footer */
.vista {
    background-color: var(--color_text-primary); /* Fondo blanco para el contenido */
    padding: 10px;
    border-radius: 8px; /* Bordes redondeados */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra suave */
    width: 80%;
    max-width: 600px;
    margin-bottom: 8px; /* Espacio entre la vista y el footer */
    text-align: center;
}

/* Estilo llamativo para la vista */

.vista p {
    font-size: 25px;
    margin-bottom: 2px;
    color: var(--background-color); /* Color llamativo */
  
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 600px) {
    .vista {
        width: 90%;
        padding: 20px;
    }
}

/*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;
  
}

.box__footer{
    display: flex;
    flex-direction: column;
    padding: 30px;

}

.box__footer .logo img{
    width: 200px;
    height: 50px;

}

.box__footer .terms{
    max-width: 350px;
    margin-top: 20px;
    font-weight: 500;
    color: #7a7a7a;
    font-size: 18px;
    text-align: justify;
}

.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;
}

/*TARJETA CREACION DE CUENTA*/
.card__account-creation {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 30px;
    max-width: 1100px;
    margin: 0px auto;
}

.card__account-creation .card__image img {
    width: 300px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.card__account-creation .card__info {
    flex: 1;
}

.card__account-creation .card__info h2 {
    color: var(--color_text-secundary);
    font-size: 24px;
    margin-bottom: 10px;
    margin-left: 30px;
}

.card__account-creation .card__info p {
    color: var(--color_text-primary);
    font-size: 16px;
    margin-bottom: 20px;
    margin-left: 30px;
}

.btn__crear-cuenta {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0056b3;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    margin-left: 30px;
}

.btn__crear-cuenta:hover {
    background-color: #4f5154;
}
/* ORGANISMOS DE CONTREOL LIMITA AL HACER CLICK SOBRE LA IMAGEN*/
.link-imagen {
    display: inline-block;
    width: fit-content;
    height: fit-content;
}

.link-imagen img {
    display: block; /* evita espacios extras debajo de la imagen */
}