/* Footer Profesional y Discreto */

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    padding-bottom: 40px;
}

.site-footer {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 32px 0 20px;
    margin-top: auto;
    font-size: 14px;
    color: #64748b;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    margin-bottom: 24px;
    align-items: start;
}

.footer-main {
    max-width: 600px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #334155;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-brand i {
    color: #1e3a8a;
    font-size: 16px;
}

.footer-brand strong {
    color: #1e3a8a;
    font-weight: 700;
}

.footer-description {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-link {
    color: #64748b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    transition: color 0.2s;
    white-space: nowrap;
}

.footer-link:hover {
    color: #1e3a8a;
}

.footer-link i {
    font-size: 14px;
}

.footer-link .fa-whatsapp {
    color: #25d366;
}

.footer-link .fa-envelope {
    color: #3b82f6;
}

.footer-link .fa-globe {
    color: #1e3a8a;
}

.btn-request {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-request:hover {
    background-color: #20ba5a;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.btn-request i {
    font-size: 16px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-contact {
        align-items: flex-start;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 24px 0 16px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-main {
        max-width: 100%;
    }
    
    .footer-brand {
        font-size: 14px;
        flex-wrap: wrap;
    }
    
    .footer-description {
        font-size: 12px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .footer-link {
        width: 100%;
    }
    
    .btn-request {
        width: 100%;
        justify-content: center;
    }
    
    .footer-bottom {
        padding-top: 16px;
    }
}

/* Para vistas que usan print (tickets) - ocultar footer */
@media print {
    .site-footer {
        display: none;
    }
}
