/* AIA Consultores y Constructores - Footer Styles (Senior Level) */

:root {
    --f-bg: #1e1e1e;
    --f-bottom-bg: #181818;
    --f-text: #a1a1aa;
    --f-title: #ffffff;
    --f-accent: #f0842c;
    --f-border: rgba(255, 255, 255, 0.1);
    --f-transition: all 0.3s ease;
}

.main-footer {
    background-color: var(--f-bg);
    color: var(--f-text);
    padding: 80px 0 0 0;
    
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Column General Styles */
.footer-column h3 {
    color: var(--f-title);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Brand Section */
.footer-brand .footer-logo {
    height: 60px;
    margin-bottom: 25px;
}

.footer-brand p {
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Contact Section */
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--f-accent);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--f-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--f-title);
    text-decoration: none;
    transition: var(--f-transition);
}

.social-btn:hover {
    background: var(--f-accent);
    border-color: var(--f-accent);
    transform: translateY(-3px);
}

/* Partners & Events */
.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.btn-footer {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    transition: var(--f-transition);
}

.btn-ingresar {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-ingresar:hover {
    background: #f0f0f0;
}

.btn-ticket {
    background: linear-gradient(135deg, #0052d4, #4364f7);
    color: #ffffff;
    border: none;
}

.btn-ticket:hover {
    background: linear-gradient(135deg, #f0842c, #f0a04b);
    filter: brightness(1.1);
}

/* News Section */
.footer-news {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: var(--f-text);
    transition: var(--f-transition);
}

.news-item:hover {
    color: var(--f-title);
}

.news-thumb {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color:#ffffff;
    line-height: 1.4;
    margin: 0;
}

.news-content h4:hover {
    color: var(--f-accent);
}

/* Bottom Bar */
.footer-bottom {
    background-color: var(--f-bottom-bg);
    padding: 25px 0;
    border-top: 1px solid var(--f-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 25px;
    }
}
