@font-face {
    font-family: "normal";
    src: url('../fuentes/AlteHaasGrotesk_Bold.woff') format('woff');
}
@font-face {
    font-family: "etheris";
    src: url('../fuentes/TARSICARegular.woff') format('woff');
} 
*{
    font-family: normal;
}
.footer {
    background-color: #3E5C76;
    color: #f6eee6;
    padding: 25px 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-family: 'etheris', sans-serif;
    font-size: 1.3em;
    color: #F3B562;
    margin-bottom: 10px;
}

.footer-section p {
    color: #f6eee6;
    text-decoration: none;
    line-height: 1.5;
    font-size: 0.9em;
    margin: 0;
}

.footer-bottom {
    width: 100%;
    max-width: 1200px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(246, 238, 230, 0.2);
    font-size: 0.8em;
}

/* Responsive styles for the footer */
@media (max-width: 768px) {
    .footer {
        padding: 20px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 15px;
    }

    .footer-section {
        margin-bottom: 15px;
    }

    .footer-section:last-child {
        margin-bottom: 0;
    }

    .footer-section h3 {
        font-size: 1.2em;
        margin-bottom: 8px;
    }
    .footer-section h3.about-us-text {
        display: none;
    }
    .footer-section p.about-us-text {
        display: none;
    }

    .footer-section p {
        font-size: 0.85em;
    }

    .footer-bottom {
        font-size: 0.75em;
    }
}