/* Estilos Oficiales para el Banner de Políticas de Cookies - Transportes Ejecutivos */
.cookie-banner-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1100px;
    background: linear-gradient(135deg, rgba(26, 63, 122, 0.98), rgba(0, 0, 0, 0.95));
    border: 1px solid rgba(48, 116, 224, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 20px 24px;
    z-index: 999999;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease-in-out;
    opacity: 1;
    visibility: visible;
}

.cookie-banner-container.cookie-banner-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 30px);
    pointer-events: none;
}

.cookie-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.cookie-banner-icon {
    font-size: 28px;
    line-height: 1;
    color: #3074E0;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-banner-text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #f0f0f0;
}

.cookie-banner-text strong {
    color: #ffffff;
    font-weight: 600;
}

.cookie-banner-link {
    color: #3074E0;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.2s ease;
}

.cookie-banner-link:hover {
    color: #ff5e8a;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background-color: #3074E0;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(48, 116, 224, 0.3);
}

.btn-cookie-accept:hover {
    background-color: #1A3F7A;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(48, 116, 224, 0.4);
}

.btn-cookie-essential {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cookie-essential:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.cookie-banner-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.2s ease, background 0.2s ease;
}

.cookie-banner-close:hover {
    color: #ff5e8a;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsividad para Móviles y Tablets */
@media (max-width: 868px) {
    .cookie-banner-container {
        flex-direction: column;
        align-items: stretch;
        bottom: 12px;
        padding: 16px;
        gap: 14px;
    }

    .cookie-banner-actions {
        justify-content: flex-end;
        width: 100%;
        flex-wrap: wrap;
    }

    .btn-cookie-accept, .btn-cookie-essential {
        flex: 1;
        text-align: center;
        padding: 10px 14px;
    }

    .cookie-banner-close {
        position: absolute;
        top: 12px;
        right: 12px;
    }
}
