/* Tipografía Base */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f7fa;
    color: #333333;
    margin: 0;
    padding: 0;
}

/* Contenedor Principal del Título */
.zxq-cotizaciones-titulo {
    text-align: center;
    color: #2c3e50;
    padding: 40px 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.zxq-cotizaciones-titulo h2 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 30px;
}

.zxq-cotizaciones-titulo h3 {
    font-size: 1.2em;
    font-weight: 400;
    color: #7f8c8d;
    margin-top: 10px;
}

/* Contenedor de Cotizaciones */
.zxq-cotizaciones-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

/* Tarjetas de Cotizaciones */
.zxq-cotizacion-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 280px;
    padding: 20px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zxq-cotizacion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Título de la Moneda */
.zxq-cotizacion-card h3 {
    font-size: 1.4em;
    font-weight: 500;
    color:  #043c84 ;
    margin-bottom: 8px;
}

/* Información de la Cotización */
.zxq-cotizacion-card p {
    font-size: 0.95em;
    color: #555555;
    margin: 4px 0;
    line-height: 1.6;
}

/* Botón "Mostrar más" */
#zxq-mostrar-mas {
    display: block;
    background-color: #043c84 ;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    margin: 30px auto;
    cursor: pointer;
    font-size: 1em;
    border-radius: 25px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#zxq-mostrar-mas:hover {
    background-color: #1c5980;
    transform: scale(1.05);
}

/* Mensaje de Inicio de Sesión */
.zxq-login-message {
    text-align: center;
    margin: 30px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
}

.zxq-login-message p {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.zxq-login-btn, .zxq-register-btn {
    background-color: #e0e0e0;
    color: #ffffff;
    padding: 12px 30px;
    margin: 10px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.zxq-login-btn:hover, .zxq-register-btn:hover {
    background-color: #1c5980;
    transform: translateY(-2px);
}

/* Botón de Selección de Ciudad */
.zxq-ciudad-btn {
    background-color: #f9f9f9;
    color:  #043c84 ;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.zxq-ciudad-btn.active, .zxq-ciudad-btn:hover {
    background-color: #043c84 ;
    color: #ffffff;
}

/* Adaptación para Pantallas Pequeñas */
@media (max-width: 1024px) {
    .zxq-cotizacion-card {
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .zxq-cotizacion-card {
        max-width: 100%;
    }

    .zxq-cotizaciones-titulo h2 {
        font-size: 1.8em;
    }

    .zxq-cotizaciones-titulo h3 {
        font-size: 1em;
    }

    #zxq-mostrar-mas {
        width: 80%;
    }
}

.zxq-moneda-logo {
    width: 40px;
    height: 40px;
   /* margin-right: 20px !important; */
    margin-bottom: 8px;
    vertical-align: middle;
    display: inline-block; /* Asegurar que se trate como un bloque en línea */
}

.zxq-moneda {
    display: inline-flex;
    align-items: center;
}
