/* ============================================
   footer.css - Estilos del footer unificado
   ============================================ */

footer {
    background-color: #454545 !important;
    padding: 50px 0 !important;
    display: block !important;
}

footer {
    background-color: #454545;
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 60px;
    width: 100%;
    display: block;
}

footer .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-logo img {
    height: 60px;
}

.footer-info {
    flex: 1;
    text-align: right;
}

.footer-info p {
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-info .whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 5px;
    margin: 10px 0;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-info .whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-info .whatsapp-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaaaaa;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-logo img {
        height: 50px;
    }
}