/* Estilos para el banner de cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(63, 43, 150, 0.95); /* Color indigo con transparencia */
    color: #FFFFFF;
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.cookie-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.cookie-content p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-content a {
    color: #C4FF00; /* Color acento neón */
    text-decoration: underline;
}

.btn-accept {
    background-color: #C4FF00; /* Color acento neón */
    color: #3F2B96; /* Color indigo */
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background-color: #d4ff33;
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .cookie-content p {
        margin-right: 20px;
        margin-bottom: 0;
    }
    
    .cookie-form {
        margin-top: 0;
    }
} 