#prinx-custom-footer {
    background-color: #000000; 
    color: #ffffff;            
    padding: 40px 20px;
    text-align: center;        
}

/* Sección del Newsletter */
.footer-newsletter-section {
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.newsletter-title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}


.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; 
    display: block;
  margin: 0 auto;
}


.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 Legales */
.footer-legal-links {
    margin-bottom: 20px;
}

.footer-legal-links a {
    color: #ffffff;        
    text-decoration: none; 
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: #CA1F26; 
}

/* Sección de Copyright */
.footer-copyright {
    font-size: 12px;
    opacity: 0.8;
}