﻿.footer-section {
    background-color: black;
    color: white;
    font-family: 'Rokkitt', serif;
    padding: 4rem 2rem 2rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: center; /* Centra el grupo de columnas */
    align-items: flex-start; /* Alinea arriba las columnas */
    flex-wrap: wrap;
    margin: 0 auto;
    padding-left: 2rem;
    gap: 4rem; /* Espacio entre columnas */
    text-align: left; /* Todo el texto alineado a la izquierda */
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    font-size: 2rem;
    font-weight: inherit;
    margin-top: -2.5rem;
}

.footer-subsection {
    margin-bottom: 2rem;
}

    .footer-subsection h3 {
        font-weight: bold;
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }

    .footer-subsection p {
        margin: 0.2rem 0;
        font-size: 1rem;
    }

.footer-links {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    padding-top: 1.2rem;
}

    .footer-links a {
        color: white;
        text-decoration: none;
        margin: 0 0.2rem;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

.footer-copyright {
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-credit {
    font-size: 0.8rem;
}

    .footer-credit a {
        color: white;
        text-decoration: none;
    }

        .footer-credit a:hover {
            text-decoration: underline;
        }

/* Responsive ajustes */
@media (max-width: 992px) {
    .footer-content {
        padding-top: 2rem;
        gap: 0rem; /* Menos espacio en tablet */
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-title {
        font-size: 1.8rem;
    }

    .footer-subsection h3 {
        font-size: 1.1rem;
    }

    .footer-subsection p,
    .footer-links,
    .footer-credit {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 3rem 1rem;
    }

    .footer-title {
        font-size: 1.6rem;
    }

    .footer-subsection h3 {
        font-size: 1rem;
    }

    .footer-subsection p,
    .footer-links,
    .footer-credit {
        font-size: 0.85rem;
    }
}
