/* ---
    <main class="main" id="Inicio">
        
        <!-- Hero / Presentación -->
        <section class="hero-restaurant">
            <div class="hero-content">
                <h1>Restaurante Sabor Gourmet</h1>
                <p class="tagline">Una experiencia culinaria inolvidable</p>
                <ul class="footer-ul-horario">
                    <li>
                        <strong>Lunes a Viernes</strong>**:** - **:**
                    </li>
                    <li>
                        <strong>Sabado</strong>**:** - **:**
                    </li>
                    <li>
                        <strong>Domingos y Feriados</strong>**:** - **:**
                    </li>
                </ul>
                <div class="hero-buttons">
                    <a href="#menu-container" class="btn-primary">Ver Menú</a>
                    <a href="#reservas" class="btn-secondary">Reservar Mesa</a>
                </div>
            </div>
        </section>

        <!-- Información rápida -->
        <section class="info-restaurant">
            <div class="info-item">
                <h3>📍 Ubicación</h3>
                <p>Calle **** #****, Ciudad ****, Región ****</p>
            </div>

            <div class="info-item">
                <h3>💳 Métodos de Pago</h3>
                <p>Efectivo / Débito / Crédito / Transferencias</p>
            </div>

            <div class="info-item">
                <h3>🚗 Servicios</h3>
                <p>Estacionamiento disponible · WiFi · Área familiar</p>
            </div>
        </section>

        <!-- Especialidades -->
        <section class="specialties">
            <h2>Nuestras Especialidades</h2>
            <div class="specialty-grid">
                <article class="card">
                    <h3>🍝 Pastas Artesanales</h3>
                    <p>Preparadas al momento con ingredientes frescos.</p>
                </article>

                <article class="card">
                    <h3>🥩 Cortes Premium</h3>
                    <p>Carne seleccionada y cocción perfecta a tu gusto.</p>
                </article>

                <article class="card">
                    <h3>🍰 Postres Caseros</h3>
                    <p>El toque dulce ideal para cerrar tu experiencia.</p>
                </article>
            </div>
        </section>

        <div id="menu-container">
        </div>

    </main>
--- */

.main {
  margin-top: 5rem;
  min-height: calc(100vh - 5rem);
  padding: 0;
  transition: background-color 0.5s ease;
}

.hero-restaurant {
  position: relative;
  overflow: hidden;

  padding: 3rem 1.5rem;
  text-align: center;

  display: grid;
  place-items: center;

  background: linear-gradient(135deg, #d9c3c3 0%, #dec4c4 50%, #f6eded 100%);
  background-size: 200% 200%;
  animation: gradientFlow 15s ease infinite;

  background-image:
    radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(242, 139, 130, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 50%);

  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.05);
}

body.dark .hero-restaurant {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 50%, #121212 100%);
  background-size: 200% 200%;

  background-image:
    radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 85, 85, 0.10) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(239, 68, 68, 0.08) 0%, transparent 50%);

  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero-restaurant::before,
.hero-restaurant::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.16;
}

.hero-restaurant::before {
  width: 320px;
  height: 320px;
  top: -110px;
  left: -110px;
  background: radial-gradient(circle, #f28b82 0%, transparent 70%);
  animation: float1 20s ease-in-out infinite;
}

.hero-restaurant::after {
  width: 440px;
  height: 440px;
  right: -170px;
  bottom: -170px;
  background: radial-gradient(circle, #e63946 0%, transparent 70%);
  animation: float2 25s ease-in-out infinite;
}

body.dark .hero-restaurant::before {
  background: radial-gradient(circle, #ef4444 0%, transparent 70%);
  opacity: 0.20;
}

body.dark .hero-restaurant::after {
  background: radial-gradient(circle, #ff5555 0%, transparent 70%);
  opacity: 0.18;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(50px, -30px) scale(1.08); }
  66%      { transform: translate(-30px, 40px) scale(0.92); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33%      { transform: translate(-60px, 40px) rotate(120deg) scale(1.12); }
  66%      { transform: translate(40px, -50px) rotate(240deg) scale(0.88); }
}

.hero-content {
  width: min(60rem, 100%);
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.15rem;
  justify-items: center;
}

.hero-content h1 {
  margin: 0;

  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;

  background: linear-gradient(135deg, #e63946 0%, #f28b82 50%, #d62839 100%);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  filter: drop-shadow(0 4px 12px rgba(230, 57, 70, 0.2));
  animation: titleShift 5s ease infinite, fadeInUp 0.9s ease-out backwards;
}

body.dark .hero-content h1 {
  background: linear-gradient(135deg, #ef4444 0%, #ff5555 50%, #ff6b6b 100%);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  filter: drop-shadow(0 4px 12px rgba(239, 68, 68, 0.3));
}

@keyframes titleShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.tagline {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.7;

  color: #222222;

  padding: 0.9rem 1.6rem;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);

  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);

  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);

  animation: fadeInUp 1s ease-out backwards;
  animation-delay: 0.15s;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tagline:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.70);
}

body.dark .tagline {
  color: #f0f0f0;
  background: rgba(30, 30, 30, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.10);

  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.40),
    0 2px 8px rgba(239, 68, 68, 0.15);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;

  margin-top: 0.25rem;
  animation: fadeInUp 1s ease-out backwards;
  animation-delay: 0.35s;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-weight: 900;

  padding: 0.85rem 1.25rem;
  border-radius: 999px;

  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  will-change: transform;
}

.btn-primary {
  color: #dec4c4;
  background-color: #e63946;
  box-shadow: 0 14px 30px rgba(230, 57, 70, 0.18);
}

.btn-secondary {
  color: #e63946;
  background-color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.35);

  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);

  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.10);
}

body.dark .btn-secondary {
  color: #ef4444;
  background-color: rgba(30, 30, 30, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.55);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.14),
    0 6px 14px rgba(0, 0, 0, 0.08);
}

.btn-primary:active,
.btn-secondary:active {
  transform: scale(0.97);
}

.info-restaurant {
  padding: 2.5rem 1.5rem;
  display: grid;
  gap: 1rem;

  max-width: 70rem;
  margin: 0 auto;
}

.info-item {
  padding: 1.25rem 1.25rem;
  border-radius: 1.25rem;

  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;
}

body.dark .info-item {
  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);
}

.info-item: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);
}

.info-item h3 {
  margin: 0 0 0.4rem 0;
  font-size: 1.1rem;
  font-weight: 900;
  color: #222222;
}

body.dark .info-item h3 { color: #f0f0f0; }

.info-item p {
  margin: 0;
  line-height: 1.7;
  color: #4d3333;
}

body.dark .info-item p { color: #a0a0a0; }

.specialties {
  padding: 2.5rem 1.5rem 3rem;
  max-width: 70rem;
  margin: 0 auto;
}

.specialties h2 {
  margin: 0 0 1.25rem 0;
  text-align: center;

  font-size: 1.75rem;
  font-weight: 900;
  color: #222222;
}

body.dark .specialties h2 { color: #f0f0f0; }

.specialty-grid {
  display: grid;
  gap: 1rem;
}

.card {
  border-radius: 1.25rem;
  padding: 1.25rem 1.25rem;

  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);

  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.dark .card {
  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);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.card h3 {
  margin: 0 0 0.4rem 0;
  font-size: 1.15rem;
  font-weight: 900;
  color: #222222;
}

body.dark .card h3 { color: #f0f0f0; }

.card p {
  margin: 0;
  line-height: 1.7;
  color: #4d3333;
}

body.dark .card p { color: #a0a0a0; }

#menu-container {
  max-width: 70rem;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
}

@media (min-width: 48rem) {
  .hero-restaurant { padding: 4rem 2rem; }

  .hero-content h1 { font-size: 3.5rem; }
  .tagline { font-size: 1.25rem; padding: 1rem 2.25rem; }

  .info-restaurant {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .specialty-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 64rem) {
  .hero-content h1 { font-size: 4.5rem; }
  .footer-ul-horario { padding: 1.4rem 1.5rem; }
}

.hero-buttons a:focus-visible {
  outline: 2px solid #e63946;
  outline-offset: 3px;
}

body.dark .hero-buttons a:focus-visible {
  outline-color: #ef4444;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}