:root{ --mint:#00C896; --fg:#0f0f0f; --muted:#666; --softpink:#ffeef6; }

*{ box-sizing:border-box; }
html,body{ margin:0; }
body{
  font-family: Arial, Helvetica, sans-serif;
  color: var(--fg);
  background: #fff;
  text-align: center;
}

.container{ max-width:1100px; margin:0 auto; padding:0 16px; }
.section{ padding:60px 20px; }
.section-title{ margin:0 0 28px; font-size:28px; font-weight:800; }

/* HERO */
.hero{
  min-height:100vh;
  display:grid; place-items:center;
  background:#fff; padding:20px;
}
.hero-box{
  background:var(--softpink);
  padding:60px 30px;
  border-radius:20px;
  box-shadow:0 8px 30px rgba(0,0,0,.05);
  display:inline-block;
  max-width:780px;
  width:100%;
}
.logo-big{
  width:200px; /* balanceado */
  max-width:80%;
  height:auto;
  margin-bottom:14px;
}
.hero h1{ margin:0 0 6px; font-size:clamp(28px,5vw,48px); font-weight:800; }
.sub{ margin:0 0 18px; color:var(--muted); font-weight:600; }

/* CTA */
.cta{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.btn{
  display:inline-block; padding:12px 24px;
  border-radius:999px; text-decoration:none; font-weight:800;
  border:1px solid #ddd;
}
.btn.mint{ background:var(--mint); color:#000; border-color:transparent; }
.btn.dark{ background:#111; color:#fff; border-color:#111; }

/* GRIDS (menu + locations) */
.img-grid{
  display:grid; gap:16px;
  /* Se acomodan solas en varias columnas */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.img-grid img{
  width:100%; height:auto; display:block;
  border-radius:16px; box-shadow:0 4px 12px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.zoomable:hover img{
  transform: scale(1.04);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

/* SOCIAL */
.social-banner{ display:block; max-width:560px; margin:0 auto; }
.social-banner img{ width:100%; height:auto; border-radius:16px; }

/* FOOTER */
.footer{ background:#222; color:#fff; padding:20px; font-size:14px; }



