.main-footer {
    background-color: #1e293b;
    color: #f8fafc;
    padding: 60px 10% 20px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00b4d8; /* Azul claro para títulos */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none !important;
    padding: 0;
	margin-left: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a{
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-link {
	background-color: transparent !important;
}


.footer-column ul li a:hover {
    color: #ffffff;
}


.main-footer a {
    background: none;
    text-decoration: none;
}

.main-footer a:hover {
    background: none;
    color: #ffffff;
}


.footer-logo {
    max-width: 150px;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
}



.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Efecto Hover */
.social-links a:hover {
    background: #00b4d8;
    color: #ffffff;
    transform: translateY(-3px);
}

.section-question > div::after {
    content: "";
    display: block;
    clear: both;
}


