/* Estilos para el banner de promoción de la API */
.api-promo-banner {
    background-color: #111827; /* Mismo gris oscuro del footer */
    color: #ffffff;
    padding: 12px 20px;
    text-align: center;
    font-size: 15px;
    position: relative;
    z-index: 1000;
}

.api-promo-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.api-promo-banner p {
    margin: 0;
}

.api-promo-banner .promo-button {
    background-color: #0070f3; /* Azul de la marca */
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.api-promo-banner .promo-button:hover {
    background-color: #005bbd; /* Azul más oscuro para hover */
}

/* Ocultar texto secundario en móviles para no saturar */
@media (max-width: 768px) {
    .api-promo-banner .container {
        flex-direction: column;
        gap: 10px;
    }
    .hidden-mobile {
        display: none;
    }
}

