#watercolor-custom-footer { 
    color: #ffffff;            
    padding: 2px 20px;
    text-align: center;        
}

/* Sección del Newsletter */
.footer-newsletter-section {
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.newsletter-title {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Contenedor del formulario */
.newsletter-form-container {
    display: flex;
    justify-content: center; 
    gap: 0; 
}

.newsletter-form-container input[type="email"],
.newsletter-form-container input[type="text"] {
    background-color: #4a4a4a;
    color: #cccccc;            
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    flex-grow: 1;
    max-width: 300px; 
}


.newsletter-form-container button,
.newsletter-form-container input[type="submit"] {
    background-color: #CA1F26;
    color: #000000;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1.5; 
}

/* Sección de Redes Sociales */
.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;               
    margin-bottom: 30px;
}

.footer-social-links a img {
    width: 35px;    
    height: 35px;
    border-radius: 50%; 
    transition: opacity 0.3s;
}

.footer-social-links a img:hover {
    opacity: 0.8;
}

/* Sección de Enlaces  */
.footer-legal-links {
    margin-bottom: 20px;
}

.footer-legal-links a {
    color: #ffffff;        
    text-decoration: none; 
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: #C2A394; 
}

/* Sección de Copyright */
.footer-copyright {
    opacity: 0.8;
}

.footer-logo-superior {
    text-align: center; 
    margin-bottom: 20px; 
    padding: 10px 0;
}


.watercolor-footer-logo {
    max-width: 150px; 
    height: auto; 
    display: block; 
    margin: 0 auto; 
}

@media (max-width: 768px) {
    .watercolor-footer-logo {
        max-width: 100px; 
    }
}