/* ============================================
   FOOTER - ESTILOS COMPLETOS
   Extraído de los templates para centralizar
   ============================================ */

.custom-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 2.5rem 0;
    margin-top: 4rem;
    font-family: system-ui, -apple-system, sans-serif;
    position: relative;
    z-index: 10;
}
.custom-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.custom-footer .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .custom-footer .grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.custom-footer h4 {
    color: #f97316;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}
.custom-footer p, .custom-footer li {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.5;
}
.custom-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.custom-footer ul li {
    color: #d1d5db;
}
.custom-footer a {
    text-decoration: none;
    color: #d1d5db;
    transition: color 0.2s ease;
}
.custom-footer a:hover {
    color: #fb923c;
}
.custom-footer a.underline-link {
    text-decoration: underline;
}
.custom-footer .seo-text {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #1e3a8a;
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.6;
}
.custom-footer .footer-bottom {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #1e3a8a;
    font-size: 0.75rem;
    color: #6b7280;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
@media (min-width: 768px) {
    .custom-footer .footer-bottom {
        flex-direction: row;
    }
    .custom-footer .separator {
        display: inline;
    }
}
.custom-footer .separator {
    display: none;
}
.custom-footer .dev-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.custom-footer .dev-name {
    color: #fb923c;
    font-weight: 700;
}