/* ==============================================
   Cookie Banner - Estilos
   ============================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #263238 0%, #37474F 100%);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--ancho-wide);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 20px;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--color-naranja);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #FFB74D;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-family: var(--font-cuerpo);
}

.cookie-btn-accept {
    background: var(--color-verde);
    color: white;
}

.cookie-btn-accept:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Mapa de Google */
.google-map {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    border: none;
    box-shadow: var(--sombra-media);
}

.map-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--sombra-suave);
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .google-map {
        height: 350px;
    }
}