/*
    <footer class="footer" id="Datos">

        <div class="footer-container">

            <!-- Columna 1: Información -->
            <div class="footer-column">
                <h3>Restaurante Sabor Gourmet</h3>
                <p>Disfruta de una experiencia gastronómica única en un ambiente acogedor y familiar.</p>

                <a href="#" class="footer-address">
                    📍 Calle **** #****, Ciudad ****, Región ****
                </a>

                <a href="tel:+56900000000" class="footer-phone">
                    📞 +56 9 0000 0000
                </a>
            </div>

            <!-- Columna 2: Horarios -->
            <div class="footer-column">
                <h3>Horarios de Atención</h3>
                <ul class="footer-ul-horario">
                    <li><strong>Lunes a Viernes:</strong> 12:00 - 23:00</li>
                    <li><strong>Sábado:</strong> 13:00 - 00:00</li>
                    <li><strong>Domingos y Feriados:</strong> 13:00 - 22:00</li>
                </ul>

                <p class="footer-payments">
                    💳 Aceptamos: Efectivo / Débito / Crédito
                </p>
            </div>

            <!-- Columna 3: Ubicación -->
            <div class="footer-column">
                <h3>Ubicación</h3>
                <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>
            </div>

        </div>

        <!-- Redes Sociales -->
        <div class="footer-social">
            <h4>Síguenos</h4>
            <ul>
                <li>
                    <a href="#" target="_blank" aria-label="Facebook" title="Facebook">
                        <i class="bi bi-facebook"></i>
                    </a>
                </li>
                <li>
                    <a href="#" target="_blank" aria-label="Instagram" title="Instagram">
                        <i class="bi bi-instagram"></i>
                    </a>
                </li>
                <li>
                    <a href="#" target="_blank" aria-label="X/Twitter" title="X/Twitter">
                        <i class="bi bi-twitter-x"></i>
                    </a>
                </li>
                <li>
                    <a href="#" target="_blank" aria-label="TikTok" title="TikTok">
                        <i class="bi bi-tiktok"></i>
                    </a>
                </li>
            </ul>
        </div>

        <!-- Derechos -->
        <div class="footer-bottom">
            <p>© 2026 Restaurante Sabor Gourmet | Todos los derechos reservados</p>
            <p>Desarrollado por Briones Solución Digital Web</p>
        </div>

    </footer>
*/

.footer {
  margin-top: 4rem;
  padding: 3rem 1.5rem 2rem;
  text-align: center;

  background-color: #d9c3c3;
  border-top: 1px solid #ddd;

  transition: background-color 0.3s ease, border-color 0.3s ease;
}

body.dark .footer {
  background-color: #1e1e1e;
  border-top-color: #444;
}

.footer-container {
  max-width: 70rem;
  margin: 0 auto;

  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.footer-column {
  padding: 1.25rem 1.25rem;
  border-radius: 1rem;

  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);

  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.footer-column:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

body.dark .footer-column {
  background: rgba(30, 30, 30, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.10);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-column h3 {
  margin: 0 0 0.85rem 0;

  font-size: 1.35rem;
  font-weight: 800;

  color: #e63946;
  position: relative;
  display: inline-block;
  padding-bottom: 0.45rem;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 0;

  width: 3rem;
  height: 0.25rem;
  border-radius: 999px;

  background: linear-gradient(90deg, transparent, #e63946, transparent);
}

body.dark .footer-column h3 {
  color: #ef4444;
}

body.dark .footer-column h3::after {
  background: linear-gradient(90deg, transparent, #ef4444, transparent);
}

.footer-column p {
  margin: 0.6rem 0;
  line-height: 1.7;
  color: #4d3333;
}

body.dark .footer-column p {
  color: #a0a0a0;
}

.footer-address,
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  margin-top: 0.75rem;
  text-decoration: none;

  padding: 0.75rem 1rem;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);

  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);

  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;

  color: #4d3333;
}

.footer-address:hover,
.footer-phone:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

body.dark .footer-address,
body.dark .footer-phone {
  background: rgba(30, 30, 30, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.10);

  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.60),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  color: #a0a0a0;
}

body.dark .footer-address:hover,
body.dark .footer-phone:hover {
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.70),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-ul-horario {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 1.1rem 1.1rem;

  border-radius: 1rem;

  background-color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

body.dark .footer-ul-horario {
  background-color: rgba(30, 30, 30, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.10);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-ul-horario li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);

  display: flex;
  justify-content: space-between;
  gap: 0.5rem;

  color: #4d3333;
  font-size: 1rem;
}

.footer-ul-horario li:last-child {
  border-bottom: 0;
}

body.dark .footer-ul-horario li {
  color: #a0a0a0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-ul-horario strong {
  color: #222222;
}

body.dark .footer-ul-horario strong {
  color: #f0f0f0;
}

.footer-payments {
  margin-top: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;

  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

body.dark .footer-payments {
  background: rgba(30, 30, 30, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.10);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-column iframe {
  width: 100%;
  height: 260px;

  border: 0;
  border-radius: 1rem;

  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);

  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.footer-column iframe:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.14);
}

body.dark .footer-column iframe {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65);
}

.footer-social {
  max-width: 70rem;
  margin: 1.75rem auto 0;
  padding-top: 1.25rem;

  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

body.dark .footer-social {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social h4 {
  margin: 0 0 0.9rem 0;
  font-size: 1.25rem;
  font-weight: 800;

  color: #222222;
}

body.dark .footer-social h4 {
  color: #f0f0f0;
}

.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 3rem;
  height: 3rem;
  border-radius: 999px;

  text-decoration: none;
  font-size: 1.5rem;

  background-color: #dec4c4;
  border: 2px solid #ddd;
  color: #e63946;

  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

body.dark .footer-social a {
  background-color: #2a2a2a;
  border-color: #444;
  color: #ef4444;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.70);
}

body.dark .footer-social a:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
}

.footer-bottom {
  max-width: 70rem;
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;

  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

body.dark .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0.35rem 0;
  color: #4d3333;
  line-height: 1.6;
}

body.dark .footer-bottom p {
  color: #a0a0a0;
}

@media (min-width: 48rem) {
  .footer { padding: 4rem 1.5rem 3rem; }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-column iframe { height: 320px; }

  .footer-social a {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.7rem;
  }
}

@media (min-width: 64rem) {
  .footer { padding: 5rem 1.5rem 4rem; }

  .footer-container {
    grid-template-columns: 1.1fr 1fr 1.2fr;
    gap: 1.75rem;
  }

  .footer-column iframe { height: 380px; }
}

.footer a:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 3px;
}

body.dark .footer a:focus-visible {
  outline-color: #ef4444;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}