/*
	
	css/layout/_footer.css
	Contiene Estilos para el pie de página.
	
*/


.main-footer {
    background-color: var(--dark-neutral);
    color: rgba(248, 249, 250, 0.8); /* Usar RGB de light-neutral */
    padding: 40px 20px 20px;
    font-size: 0.95em;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto 30px;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: var(--accent-color);
    font-size: 1.3em;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
    position: relative;
    padding-bottom: 5px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--complementary-color);
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section a {
    color: rgba(248, 249, 250, 0.7); /* Usar RGB de light-neutral */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-section.links ul {
    list-style: none;
    padding: 0;
}

.footer-section.links ul li {
    margin-bottom: 8px;
}

.social-icons a {
    color: var(--light-neutral);
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: var(--complementary-color);
    transform: translateY(-5px) scale(1.1);
}

.contact-info {
    display: flex;
    align-items: center;
    margin-top: 10px;
    color: rgba(248, 249, 250, 0.9); /* Usar RGB de light-neutral */
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 1.1em;
}

/* --- Footer Bottom --- */
.footer-bottom {
    border-top: 1px solid rgba(248, 249, 250, 0.15); /* Usar RGB de light-neutral */
    padding-top: 25px;
    margin-top: 35px;
    text-align: center;
    color: rgba(248, 249, 250, 0.7); /* Usar RGB de light-neutral */
    font-size: 0.9em;
}