/*
<footer class="footer" id="Datos">
    <div class="footer-grid">
        <div class="footer-brand">
            <h4>Nombre Establecimiento</h4>
            <p>
                Sabores auténticos, atención cercana y una experiencia que
                te hará volver.
            </p>

            <div class="footer-social">
                <a href="#" target="_blank" aria-label="Facebook" title="Facebook">
                    <i class="bi bi-facebook"></i>
                </a>
                <a href="#" target="_blank" aria-label="Instagram" title="Instagram">
                    <i class="bi bi-instagram"></i>
                </a>
                <a href="#" target="_blank" aria-label="X/Twitter" title="X/Twitter">
                    <i class="bi bi-twitter-x"></i>
                </a>
                <a href="#" target="_blank" aria-label="Tik Tok" title="Tik Tok">
                    <i class="bi bi-tiktok"></i>
                </a>
            </div>
        </div>

        <div class="footer-location">
            <h4>Encuéntranos</h4>

            <iframe
                src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d25977.484672824878!2d-70.67260384160663!3d-33.43856627402739!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x9662c5a6fd47e465%3A0x5d0fa12b4d88ae82!2sPalacio%20de%20La%20Moneda!5e0!3m2!1ses-419!2scl!4v1761059457977!5m2!1ses-419!2scl"
                allowfullscreen=""
                loading="lazy"
                referrerpolicy="no-referrer-when-downgrade">
            </iframe>

            <a href="#" class="footer-a-Direccion">
                Calle **** #****, Ciudad ****, Región ****
            </a>
        </div>
    </div>

    <div class="footer-bottom">
        <p>© 2026 Briones Solución Digital Web — Todos los derechos reservados</p>
    </div>
</footer>
*/

.footer {
    background-color: #d9c3c3;
    border-top: 1px solid #ddd;
    padding: 3rem 1.5rem 2rem;
    margin-top: 4rem;
    text-align: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

body.dark .footer {
    background-color: #1e1e1e;
    border-top-color: #444;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-a-Direccion {
    display: inline-block;
    font-weight: 500;
    font-size: 1.0625rem;
    color: #7a2e2e;
    text-decoration: none;
    margin-top: 0.75rem;
    transition: color 0.25s ease;
}

.footer-location iframe {
    width: 100%;
    height: 250px;
    border-radius: 0.75rem;
    border: none;
    margin-top: 0.75rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background-color: #dec4c4;
    border: 1px solid #d6baba;
    color: #e63946;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-social a:hover {
    background-color: #e63946;
    color: #fff;
    transform: translateY(-2px);
}

body.dark .footer-social a {
    background-color: #2a2a2a;
    border-color: #444;
    color: #ef4444;
}

body.dark .footer-social a:hover {
    background-color: #ef4444;
    color: #1e1e1e;
}

.footer h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #7a2e2e;
    letter-spacing: -0.01em;
}

body.dark .footer h4 {
    color: #f87171;
}

.footer-brand p {
    color: #5a3a3a;
    line-height: 1.6;
    max-width: 32ch;
    margin: 0 auto;
}

body.dark .footer-brand p {
    color: #b5b5b5;
}

.footer-a-Direccion:hover {
    color: #e63946;
    text-decoration: underline;
}

body.dark .footer-a-Direccion {
    color: #cfcfcf;
}

body.dark .footer-a-Direccion:hover {
    color: #ef4444;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #d6baba;
    font-size: 0.9rem;
    color: #6b4b4b;
}

body.dark .footer-bottom {
    border-top-color: #333;
    color: #9a9a9a;
}

@media (min-width: 40rem) {
    .footer-social {
        justify-content: flex-start;
    }

    .footer {
        padding: 4rem 1.5rem 3rem;
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: minmax(0,1fr) minmax(0,1fr);
        align-items: start;
        text-align: left;
        gap: clamp(2rem, 4vw, 4rem);
    }

    .footer-brand {
        padding-right: 2rem;
    }

    .footer-location {
        padding-left: 2rem;
    }

    .footer-location iframe {
        width: 100%;
        height: 300px;
        border-radius: 0.75rem;
        border: none;
    }

    .footer-a-Direccion {
        font-size: 1.125rem;
        display: inline-block;
        margin-top: 1rem;
    }

    .footer-brand p {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-brand,
    .footer-location {
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 64rem) {
    .footer {
        padding: 5rem 1.5rem 4rem;
    }

    .footer-grid {
        gap: 4rem;
    }

    .footer-location iframe {
        height: 350px;
    }
}