/* ============================================
   FOOTER STYLES
   ============================================ */
.hm-footer {
    background: var(--bg-footer);
    padding-top: 80px;
    position: relative;
}
.hm-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px; /* <-- Grosor de 1 píxel */
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hm-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}
.hm-footer-brand { display: flex; flex-direction: column; gap: 16px; }
.hm-footer-logo {
    display: flex; align-items: center; color: var(--text); margin-bottom: 8px;
}
.hm-footer-logo-img {
    height: 70px;
    width: auto;
    display: block;
}
.hm-footer-tagline { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.hm-footer-social { display: flex; gap: 12px; margin-top: 8px; }
.hm-footer-social a {
    width: 40px; height: 40px; border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.05); border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); transition: all var(--transition-fast);
}
.hm-footer-social a:hover {
    background: var(--accent); border-color: var(--accent); color: white; transform: translateY(-3px);
}
.hm-footer-social a svg { width: 18px; height: 18px; }
.hm-footer-column h4 {
    font-family: var(--font-heading); font-size: 1.2rem; letter-spacing: 1px;
    text-transform: uppercase; color: var(--text); margin-bottom: 20px;
    position: relative; padding-bottom: 12px;
}
.hm-footer-column h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 30px; height: 2px; background: var(--accent);
}
.hm-footer-links { display: flex; flex-direction: column; gap: 10px; }
.hm-footer-links a {
    color: var(--text-muted); font-size: 0.9rem;
    transition: all var(--transition-fast);
}
.hm-footer-links a:hover { color: var(--accent); transform: translateX(4px); }
.hm-footer-contact { display: flex; flex-direction: column; gap: 12px; }
.hm-footer-contact-item {
    display: flex; align-items: flex-start; gap: 10px;
    color: var(--text-muted); font-size: 0.9rem;
}
.hm-footer-contact-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.hm-footer-newsletter p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.hm-newsletter-form { display: flex; gap: 0; }
.hm-newsletter-input {
    flex: 1; padding: 12px 16px; background: var(--bg-secondary);
    border: 1px solid var(--border-color); border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--text); font-family: var(--font-body); font-size: 0.9rem; outline: none;
}
.hm-newsletter-input::placeholder { color: var(--text-muted); }
.hm-newsletter-input:focus { border-color: var(--accent); }
.hm-newsletter-btn {
    padding: 12px 20px; background: var(--accent); border: 1px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: white; cursor: pointer; transition: all var(--transition-fast);
}
.hm-newsletter-btn:hover { background: var(--accent-hover); }
.hm-newsletter-btn svg { width: 20px; height: 20px; }
.hm-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0;
}
.hm-footer-bottom .container {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.hm-footer-copyright { color: var(--text-muted); font-size: 0.8rem; }
@media (max-width: 1024px) { .hm-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .hm-footer { padding-top: 48px; }
    .hm-footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .hm-footer-bottom .container { justify-content: center; text-align: center; }
}
