/* --- 
<main class="main" id="Inicio">
  <section class="main-hero">

    <div class="main-hero-content">
      <div class="main-hero-badge">🍽️ Cocina fresca todos los días</div>

      <h1 class="main-hero-title">Nombre Establecimiento</h1>

      <p class="main-hero-subtitle">
        Ven a disfrutar platos preparados al momento...
      </p>

      <div class="main-hero-features">
        <div class="feature-item">
          <span class="feature-icon">💳</span>
          <span>Aceptamos: Efectivo / Débito / Crédito</span>
        </div>
        ...
      </div>

      <div class="main-hero-actions">
        <a href="#menu-container" class="btn-main">Ver Menú</a>
        <a href="#Datos" class="btn-outline">Cómo llegar</a>
      </div>
    </div>

    <div class="main-hero-highlight">
      <p class="highlight-text">⭐ Más de 500 clientes satisfechos</p>
    </div>

  </section>
</main>
--- */

.main {
  margin-top: 5rem;
  min-height: calc(100vh - 5rem);
  padding: 0;
  transition: background-color 0.5s ease;
}

.main-hero {
  position: relative;
  min-height: calc(100vh - 5rem);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 3rem 1.5rem;
  overflow: hidden;

  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);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark .main-hero {
  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.1) 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);
}

.main-hero::before,
.main-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.15;
  filter: blur(60px);
}

.main-hero::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, #f28b82 0%, transparent 70%);
  animation: floatParticle1 20s ease-in-out infinite;
}

.main-hero::after {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, #e63946 0%, transparent 70%);
  animation: floatParticle2 25s ease-in-out infinite;
}

body.dark .main-hero::before {
  background: radial-gradient(circle, #ef4444 0%, transparent 70%);
  opacity: 0.2;
}

body.dark .main-hero::after {
  background: radial-gradient(circle, #ff5555 0%, transparent 70%);
  opacity: 0.18;
}

.main-hero-content {
  position: relative;
  z-index: 2;
  max-width: 52rem;
  width: 100%;
  display: grid;
  gap: 1.25rem;
}

.main-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  margin: 0 auto;

  padding: 0.6rem 1.1rem;
  border-radius: 999px;

  font-weight: 700;
  letter-spacing: 0.02em;

  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);

  animation: fadeInUp 0.9s ease-out backwards;
}

body.dark .main-hero-badge {
  background: rgba(30, 30, 30, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.main-hero-title {
  margin: 0;

  font-size: 2.5rem;
  font-weight: 800;
  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: gradientShift 5s ease infinite, fadeInUp 1s ease-out backwards;
}

body.dark .main-hero-title {
  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));
}

.main-hero-subtitle {
  margin: 0 auto;
  max-width: 44rem;

  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;

  color: #222;

  padding: 0.95rem 1.35rem;
  border-radius: 1rem;

  background: rgba(255, 255, 255, 0.6);
  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 10px 30px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(230, 57, 70, 0.08);

  animation: fadeInUp 1s ease-out backwards;
  animation-delay: 0.25s;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.main-hero-subtitle:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(230, 57, 70, 0.12);
}

body.dark .main-hero-subtitle {
  color: #f0f0f0;
  background: rgba(30, 30, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    0 2px 10px rgba(239, 68, 68, 0.12);
}

body.dark .main-hero-subtitle:hover {
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.55),
    0 4px 16px rgba(239, 68, 68, 0.18);
}

.main-hero-features {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;

  padding: 0.85rem 1.15rem;
  border-radius: 1rem;

  color: #222;
  font-weight: 600;

  background: 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 10px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  animation: fadeInUp 1s ease-out backwards;
}

.feature-item:nth-child(1) { animation-delay: 0.35s; }
.feature-item:nth-child(2) { animation-delay: 0.45s; }
.feature-item:nth-child(3) { animation-delay: 0.55s; }

body.dark .feature-item {
  color: #f0f0f0;
  background: rgba(30, 30, 30, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transform: translateY(-1px);
}

.main-hero-actions {
  margin-top: 0.5rem;

  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;

  animation: fadeInUp 1s ease-out backwards;
  animation-delay: 0.65s;
}

.btn-main,
.btn-outline {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;

  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  will-change: transform;
}

.btn-main:hover,
.btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.btn-main:active,
.btn-outline:active {
  transform: translateY(-1px);
}

.main-hero-highlight {
  position: relative;
  z-index: 2;
  margin-top: 1.25rem;
}

.highlight-text {
  margin: 0;

  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;

  font-weight: 800;
  letter-spacing: 0.02em;

  background: 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 10px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  animation: fadeInUp 1s ease-out backwards;
  animation-delay: 0.8s;
}

body.dark .highlight-text {
  background: rgba(30, 30, 30, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatParticle1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(50px, -30px) scale(1.1); }
  66%      { transform: translate(-30px, 40px) scale(0.9); }
}

@keyframes floatParticle2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33%      { transform: translate(-60px, 40px) rotate(120deg) scale(1.15); }
  66%      { transform: translate(40px, -50px) rotate(240deg) scale(0.85); }
}

@media (min-width: 48rem) {
  .main-hero {
    padding: 4rem 3rem;
  }

  .main-hero-title {
    font-size: 3.5rem;
  }

  .main-hero-subtitle {
    font-size: 1.25rem;
    padding: 1.05rem 1.8rem;
  }

  .feature-item {
    justify-content: center;
    padding: 0.95rem 1.4rem;
  }

  .main-hero::before { width: 400px; height: 400px; }
  .main-hero::after  { width: 500px; height: 500px; }
}

@media (min-width: 64rem) {
  .main-hero {
    padding: 5rem 4rem;
  }

  .main-hero-title {
    font-size: 4.5rem;
    letter-spacing: -0.03em;
  }

  .main-hero-subtitle {
    font-size: 1.375rem;
  }

  .main-hero::before { width: 500px; height: 500px; }
  .main-hero::after  { width: 600px; height: 600px; }
}

@media (min-width: 90rem) {
  .main-hero {
    padding: 6rem 6rem;
  }

  .main-hero-title {
    font-size: 5.5rem;
  }

  .main-hero-subtitle {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}