/* ===================================
   ESTILOS PARA FOOTER - COMPARTIDO
   ===================================*/

footer {
    background: linear-gradient(135deg, #2c3e50, #34495e) !important;
    color: white !important;
    padding: 3rem 0 1rem 0 !important;
    margin-top: 4rem !important;
}

footer .container {
    position: relative;
}

/* Footer Sections */
.footer-section {
    padding: 1rem;
}

.footer-section h5 {
    color: #52c5b8 !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    display: flex !important;
    align-items: center !important;
}

.footer-section h5 i {
    margin-right: 10px !important;
    font-size: 1.2rem !important;
}

.footer-section p {
    color: #ecf0f1 !important;
    line-height: 1.8 !important;
    margin-bottom: 1rem !important;
}

/* Company Info */
.company-quote {
    background: rgba(82, 197, 184, 0.1) !important;
    padding: 1rem !important;
    border-radius: 10px !important;
    border-left: 3px solid #52c5b8 !important;
}

.company-quote p {
    margin: 0 !important;
    color: #52c5b8 !important;
    font-weight: 500 !important;
}

.company-quote i {
    margin-right: 8px !important;
}

/* Contact Info */
.contact-item {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 1rem !important;
    padding: 0.75rem !important;
    background: rgba(255,255,255,0.05) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.contact-item:hover {
    background: rgba(82, 197, 184, 0.1) !important;
}

.contact-item i {
    color: #52c5b8 !important;
    margin-right: 12px !important;
    width: 20px !important;
}

.contact-item a {
    color: #ecf0f1 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.contact-item a:hover {
    color: #52c5b8 !important;
}

/* Navigation Links */
.footer-nav {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.5rem !important;
    margin-bottom: 2rem !important;
}

.footer-nav a {
    color: #ecf0f1 !important;
    text-decoration: none !important;
    padding: 0.5rem !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
}

.footer-nav a:hover {
    background: rgba(82, 197, 184, 0.1) !important;
    color: #52c5b8 !important;
}

.footer-nav a i {
    margin-right: 8px !important;
    width: 16px !important;
}

/* Hours Section */
.hours-info {
    background: rgba(255,255,255,0.05) !important;
    padding: 1rem !important;
    border-radius: 10px !important;
    margin-bottom: 1.5rem !important;
}

.hours-info h6 {
    color: #52c5b8 !important;
    margin-bottom: 0.75rem !important;
    font-weight: 600 !important;
}

.hours-info h6 i {
    margin-right: 8px !important;
}

.hours-info p {
    color: #ecf0f1 !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
}

.hours-info strong {
    color: #52c5b8 !important;
}

/* Social Media */
.social-media {
    margin-top: 1.5rem !important;
}

.social-media h6 {
    color: #52c5b8 !important;
    margin-bottom: 1rem !important;
    font-weight: 600 !important;
}

.social-media h6 i {
    margin-right: 8px !important;
}

.social-links {
    display: flex !important;
    gap: 1rem !important;
}

.social-link {
    color: #ecf0f1 !important;
    padding: 0.75rem !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 45px !important;
    height: 45px !important;
    text-decoration: none !important;
}

.social-link.facebook {
    background: rgba(59, 89, 152, 0.2) !important;
}

.social-link.facebook:hover {
    background: #3b5998 !important;
    transform: translateY(-2px) !important;
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.2) !important;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #e1306c, #fd1d1d) !important;
    transform: translateY(-2px) !important;
}

/* Copyright */
.footer-copyright {
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
    text-align: center !important;
}

.footer-copyright p {
    color: #bdc3c7 !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
}

.footer-copyright strong {
    color: #52c5b8 !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1rem 0 !important;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr !important;
    }
    
    .social-links {
        justify-content: center !important;
    }
    
    .contact-item {
        padding: 0.5rem !important;
    }
    
    .hours-info {
        text-align: center !important;
    }
}
