:root {
    --color-dark-bg: #101828;
    --color-dark-accent: #1E2939;
    --color-text-white: white;
    --color-text-link: #D1D5DC;
    --color-accent-orange: #F54900;
}


.main-footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background: var(--color-dark-bg);
    color: var(--color-text-white);
    padding: 48px 16px 0 16px;
    z-index: 200;
    margin-top: auto;
}

.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}


.footer-sections-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    padding-bottom: 33px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}


.logo-wrapper {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    height: 32px;
}

.logo-icon-container {
    color: var(--color-accent-orange);
    width: 32px;
    height: 32px;
    position: relative;
    overflow: hidden;
}
.system-name {
    color: var(--color-text-white);
    font-size: 20px;
    line-height: 28px;
    font-family: Arial, sans-serif;
    font-weight: 400;
}


.section-title {
    color: var(--color-text-white);
    font-size: 18px;
    line-height: 27px;
    font-family: Arial, sans-serif;
    font-weight: 400;
}


.footer-nav ul, .horario-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link, .horario-list li {
    color: var(--color-text-link);
    font-size: 14px;
    line-height: 20px;
    font-family: Arial, sans-serif;
    text-decoration: none;
}
.footer-link:hover {
    text-decoration: underline;
    color: var(--color-text-white);
}


.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 20px;
}
.contact-icon {
    color: var(--color-accent-orange);

    width: 16px;
    height: 16px;
}


.social-links {
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
}
.social-icon {
    color: var(--color-accent-orange);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: var(--color-dark-accent);
    border-radius: 50%;

}


.footer-bottom {
    align-self: stretch;
    padding-top: 33px;
    border-top: 1px solid var(--color-dark-accent);
    display: flex;
    justify-content: center;
}
.copyright-text {
    text-align: center;
    color: var(--color-text-link);
    font-size: 14px;
    line-height: 20px;
    font-family: Arial, sans-serif;
    margin: 0;
}

@media (min-width: 768px) {
    .footer-sections-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footer-section {
        width: 20%;
    }
}