/* ============================================================
   MISUSHI - Estilos principales
   misushi.uy
   
   ESTRUCTURA:
   1. Variables (colores, fuentes, medidas)
   2. Reset & Base
   3. Logo
   4. Navegación
   5. Hero
   6. Strip Delivery
   7. Secciones (genérico)
   8. Categorías Sushi (carrusel horizontal)
   9. Paneles expandibles
   10. Grilla de Rolls
   11. Poke Bowls
   12. Sandwiches
   13. Bebidas / Menú lista
   14. Woks
   15. Sushi Bowls
   16. Surf Riders
   17. Pedí Online
   18. Locales
   19. Franquicias
   20. Contacto
   21. Footer
   22. Postres
   23. Animaciones
   24. Responsive
   ============================================================ */

/* ── 1. VARIABLES ── */
:root {
  /* Rojos de marca */
  --red: #c0392b;
  --red2: #e74c3c;
  --redd: #962d22;
  --rbg: rgba(192,57,43,.95);
  --rlight: rgba(192,57,43,.15);
  --rglow: rgba(192,57,43,.35);

  /* Fondos */
  --blk: #0c0c0c;
  --dk: #131313;
  --card: #191919;
  --cd2: #1e1e1e;

  /* Textos */
  --w: #fff;
  --g: #999;
  --g2: #555;
  --gold: #d4a853;
  --brd: rgba(255,255,255,.07);

  /* Tipografía */
  --f: 'Montserrat', sans-serif;
  --sf: 'Playfair Display', serif;

  /* Layout */
  --nh: 62px;
  --r: 6px;
}

/* ── 2. RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f);
  background: var(--blk);
  color: var(--w);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--f); }

/* ── 3. LOGO ── */
.logo-img {
  height: 40px;
  mix-blend-mode: screen;
  object-fit: contain;
}
.logo-hero-img {
  height: clamp(80px, 15vw, 130px);
  mix-blend-mode: screen;
  object-fit: contain;
  margin: 0 auto 8px;
  display: block;
}
.logo-footer-img {
  height: 60px;
  mix-blend-mode: screen;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
}

/* ── 4. NAVEGACIÓN ── */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  background: rgba(12,12,12,.8);
  backdrop-filter: blur(18px);
  border-bottom: 2px solid rgba(192,57,43,.4);
  height: var(--nh);
}
.nav-in {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.nls { display: flex; gap: 3px; list-style: none; }
.nls a {
  color: var(--g); font-size: .6rem; font-weight: 600;
  letter-spacing: 1.6px; text-transform: uppercase;
  padding: 6px 10px; border-radius: 4px; transition: .25s;
}
.nls a:hover { color: var(--w); background: rgba(255,255,255,.05); }
.ncta { background: var(--red) !important; color: var(--w) !important; }
.ncta:hover { background: var(--redd) !important; }

/* Hamburguesa mobile */
.ham {
  display: none; background: 0; border: 0; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
}
.ham span { width: 22px; height: 2px; background: var(--w); }

/* Menú mobile */
.mob {
  display: none; position: fixed; top: var(--nh); left: 0; right: 0; bottom: 0;
  background: rgba(12,12,12,.97); z-index: 998;
  padding: 24px; flex-direction: column; gap: 2px; overflow-y: auto;
}
.mob.open { display: flex; }
.mob a {
  display: block; padding: 13px 0; font-size: .82rem; font-weight: 600;
  letter-spacing: 2px; color: var(--g); border-bottom: 1px solid var(--brd);
}

/* ── 5. HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(192,57,43,.18) 0%, rgba(12,12,12,.9) 30%, rgba(12,12,12,.85) 60%, rgba(192,57,43,.10) 100%);
}
.hero::after {
  content: ''; position: absolute; top: -20%; right: -15%; width: 55%; height: 70%;
  background: radial-gradient(ellipse, rgba(192,57,43,.12), transparent 60%);
  pointer-events: none;
}
.hc {
  text-align: center; position: relative; z-index: 2;
  padding: 0 24px; animation: hi .9s ease-out;
}
@keyframes hi {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.hloc { font-size: .62rem; letter-spacing: 6px; color: var(--g); margin: 16px 0 24px; }
.htag {
  font-family: var(--sf); font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem); color: var(--gold); margin-bottom: 36px;
}
.hbtns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Botones genéricos */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 30px; font-size: .66rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  border: 2px solid transparent; cursor: pointer;
  transition: .3s; border-radius: var(--r);
}
.br { background: var(--red); color: var(--w); border-color: var(--red); }
.br:hover { background: var(--red2); border-color: var(--red2); }
.bo { background: transparent; color: var(--w); border-color: rgba(255,255,255,.25); }
.bo:hover { border-color: var(--w); }

/* Teléfonos en hero */
.hph { margin-top: 40px; display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.hp { text-align: center; }
.hp .l { font-size: .48rem; letter-spacing: 3px; color: var(--red2); text-transform: uppercase; font-weight: 700; margin-bottom: 2px; }
.hp .n { font-size: .8rem; font-weight: 600; letter-spacing: 1px; }

/* ── 6. STRIP DELIVERY ── */
.strip { background: var(--red); padding: 40px 24px; text-align: center; }
.strip h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; letter-spacing: 4px; }
.strip p { font-size: .72rem; letter-spacing: 2px; opacity: .9; margin-top: 4px; }

/* ── 7. SECCIONES (genérico) ── */
.sec { padding: 80px 24px; max-width: 1280px; margin: 0 auto; }
.sf { padding: 80px 24px; }
.sdk { background: var(--dk); border-left: 3px solid var(--red); }
.sred { background: linear-gradient(135deg, rgba(192,57,43,.18), rgba(192,57,43,.08)); }

/* Headers de sección */
.sh { text-align: center; margin-bottom: 44px; }
.sl { font-size: .56rem; letter-spacing: 5px; color: var(--red2); text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.st { font-size: clamp(1.5rem, 3.8vw, 2.3rem); font-weight: 800; letter-spacing: 3px; color: var(--w); }
.sd { font-family: var(--sf); font-style: italic; color: var(--g); font-size: .88rem; max-width: 520px; margin: 12px auto 0; line-height: 1.7; }
.dv { width: 50px; height: 3px; background: var(--red); margin: 12px auto; }

/* Línea roja lateral en secciones oscuras */
.sdk { border-left: none; position: relative; }
.sdk::before {
  content: ''; position: absolute; left: 0; top: 10%; bottom: 10%; width: 3px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
}

/* ── 8. CATEGORÍAS SUSHI (carrusel horizontal) ── */
.cats-scroll {
  display: flex; gap: 14px; overflow-x: auto; padding: 0 0 16px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--red) var(--card);
}
.cats-scroll::-webkit-scrollbar { height: 4px; }
.cats-scroll::-webkit-scrollbar-track { background: var(--card); border-radius: 2px; }
.cats-scroll::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

.ccat {
  flex: 0 0 200px; scroll-snap-align: start; position: relative;
  overflow: hidden; border-radius: var(--r); height: 240px;
  cursor: pointer; border: 2px solid transparent; transition: border .3s;
}
.ccat:hover, .ccat.active { border-color: var(--red); }
.ccat img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ccat:hover img { transform: scale(1.05); }
.ccat-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(192,57,43,.75) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,.1) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 16px;
}
.ccat-n { font-size: .72rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; }
.ccat-s { font-size: .6rem; color: rgba(255,255,255,.75); margin-top: 2px; }
.ccat-arr {
  position: absolute; top: 10px; right: 10px; background: var(--red);
  border-radius: 50%; width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
}
.ccat-arr svg { width: 12px; height: 12px; fill: var(--w); transition: transform .3s; }
.ccat.active .ccat-arr svg { transform: rotate(180deg); }

/* ── 9. PANELES EXPANDIBLES ── */
.cpan { max-height: 0; overflow: hidden; transition: max-height .5s ease; }
.cpan.open { max-height: 5000px; }
.cpan-in { padding: 24px 0; }
.cpan-close {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--red); color: var(--w); border: 0;
  padding: 7px 18px; font-size: .58rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; border-radius: var(--r); margin-bottom: 16px;
}

/* ── 10. GRILLA DE ROLLS ── */
.rg { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.rc {
  background: var(--card); overflow: hidden; border-radius: var(--r);
  border: 1px solid var(--brd); transition: .3s;
}
.rc:hover {
  border-color: var(--rglow); transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(192,57,43,.15); border-left: 3px solid var(--red);
}
.ri-w { overflow: hidden; position: relative; }
.ri { width: 100%; height: 150px; object-fit: cover; transition: transform .5s; }
.rc:hover .ri { transform: scale(1.04); }
.ri-w::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 30px;
  background: linear-gradient(to top, var(--card), transparent);
}
.rb { padding: 12px 14px; }
.rn { font-size: .62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 3px; color: var(--w); }
.rd { font-size: .7rem; color: var(--g); line-height: 1.5; }

/* ── 11. POKE BOWLS ── */
.pk-preview { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; max-width: 960px; margin: 0 auto; }
.pk-c {
  background: var(--card); border-radius: var(--r); display: flex;
  align-items: center; gap: 14px; padding: 16px;
  border: 2px solid var(--brd); transition: .3s;
}
.pk-c:hover { border-color: var(--rglow); }
.pk-im { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--red); }
.pk-n { font-size: .68rem; font-weight: 700; letter-spacing: 1.5px; color: var(--red2); margin-bottom: 3px; text-transform: uppercase; }
.pk-d { font-size: .68rem; color: var(--g); line-height: 1.4; }
.pk-all { max-height: 0; overflow: hidden; transition: max-height .6s ease; }
.pk-all.open { max-height: 5000px; }

/* ── 12. SANDWICHES ── */
.swg { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; max-width: 960px; margin: 0 auto; }
.swc { background: var(--card); border-radius: var(--r); overflow: hidden; border: 1px solid rgba(192,57,43,.15); }
.swi { width: 100%; height: 190px; object-fit: cover; }
.swb { padding: 16px; }
.swn { font-size: .8rem; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 4px; color: var(--red2); }
.swd { font-size: .72rem; color: var(--g); line-height: 1.5; margin-bottom: 6px; }
.swp { font-weight: 700; color: var(--red2); font-size: .88rem; }

/* ── 13. BEBIDAS / MENÚ LISTA ── */
.ml { max-width: 700px; margin: 0 auto; }
.mi {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--brd);
}
.mi:last-child { border-bottom: 0; }
.mi-l { display: flex; align-items: center; gap: 12px; }
.mi-img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--r); flex-shrink: 0; }
.mi-n { font-size: .78rem; font-weight: 600; letter-spacing: 1px; }
.mi-p { font-weight: 700; color: var(--red2); font-size: .88rem; white-space: nowrap; }
.mi-ph {
  width: 56px; height: 56px; border-radius: var(--r); flex-shrink: 0;
  background: var(--card); border: 1px solid var(--brd);
  display: flex; align-items: center; justify-content: center;
  font-size: .45rem; color: var(--g2); letter-spacing: 1px;
  font-weight: 700; text-align: center; line-height: 1.2;
}

/* ── 14. WOKS ── */
.wkl { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.wkg { margin-bottom: 20px; }
.wkgt {
  font-size: .58rem; font-weight: 700; letter-spacing: 3px;
  color: var(--red2); text-transform: uppercase;
  margin-bottom: 6px; padding-bottom: 4px; border-bottom: 1px solid var(--brd);
}
.wki { padding: 4px 0; font-size: .76rem; display: flex; gap: 6px; }
.wki .nm { font-weight: 700; color: var(--red2); font-size: .66rem; min-width: 14px; }
.wki .tx { color: var(--g); font-size: .7rem; line-height: 1.4; }
.wkim { width: 100%; border-radius: var(--r); margin-top: 8px; }

/* ── 15. SUSHI BOWLS ── */
.bwg { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 18px; max-width: 920px; margin: 0 auto; }
.bwc {
  text-align: center; padding: 20px; background: var(--card);
  border-radius: var(--r); border: 2px solid rgba(192,57,43,.2); transition: .3s;
}
.bwc:hover { border-color: var(--red); transform: translateY(-3px); }
.bwc img { border-radius: var(--r); margin-bottom: 12px; }
.bwn { font-size: .82rem; font-weight: 800; letter-spacing: 2px; color: var(--red2); margin-bottom: 6px; }
.bwd { font-size: .7rem; color: var(--g); line-height: 1.4; text-transform: uppercase; letter-spacing: .5px; }

/* ── 16. SURF RIDERS ── */
.surf-list { max-width: 900px; margin: 0 auto; }
.surf-item { border: 1px solid var(--brd); border-radius: var(--r); margin-bottom: 10px; overflow: hidden; transition: border-color .3s; }
.surf-item.active { border-color: var(--red); }
.surf-head { display: flex; align-items: center; gap: 14px; padding: 14px 18px; cursor: pointer; transition: background .3s; }
.surf-head:hover { background: rgba(192,57,43,.06); }
.surf-thumb { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--red); flex-shrink: 0; }
.surf-hname { font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; flex: 1; }
.surf-harr { width: 24px; height: 24px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .3s; flex-shrink: 0; }
.surf-item.active .surf-harr { transform: rotate(180deg); }
.surf-harr svg { width: 12px; height: 12px; fill: var(--w); }
.surf-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.surf-item.active .surf-body { max-height: 600px; }
.surf-body-in { padding: 0 18px 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.surf-info { font-size: .74rem; color: var(--g); line-height: 1.6; }
.surf-info strong { color: var(--w); display: block; margin-bottom: 4px; }
.surf-quote { font-family: var(--sf); font-style: italic; color: var(--g); font-size: .76rem; line-height: 1.6; margin-top: 8px; padding-left: 12px; border-left: 2px solid var(--red); }
.surf-photo { width: 100%; border-radius: var(--r); object-fit: cover; max-height: 220px; }

/* ── 17. PEDÍ ONLINE (botones app/store) ── */
.abtn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blk); color: var(--w);
  padding: 11px 20px; font-size: .66rem; font-weight: 600;
  border-radius: var(--r); border: 1px solid var(--brd); transition: .3s;
}
.abtn:hover { background: var(--red); border-color: var(--red); }
.abtn svg { width: 16px; height: 16px; fill: currentColor; }

/* ── 18. LOCALES ── */
.lcg { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; max-width: 1060px; margin: 0 auto; }
.lcc {
  padding: 22px; background: var(--card); border-radius: var(--r);
  border-top: 3px solid var(--red);
  border-left: 1px solid rgba(192,57,43,.2);
  border-right: 1px solid rgba(192,57,43,.2);
  border-bottom: 1px solid rgba(192,57,43,.2);
}
.lcn { font-size: .82rem; font-weight: 800; letter-spacing: 3px; color: var(--red2); margin-bottom: 10px; }
.lca { font-size: .72rem; color: var(--g); line-height: 1.5; margin-bottom: 8px; }
.lcp { font-size: .78rem; font-weight: 600; margin-bottom: 2px; }
.lch { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--brd); }
.lchl { font-size: .5rem; letter-spacing: 2.5px; color: var(--gold); font-weight: 700; text-transform: uppercase; margin-bottom: 3px; }
.lch p { font-size: .7rem; color: var(--g); line-height: 1.4; }

/* ── 19. FRANQUICIAS ── */
.franq { background: var(--red); padding: 60px 24px; text-align: center; }
.franq h2 { font-size: 1.4rem; font-weight: 900; letter-spacing: 4px; margin-bottom: 6px; }
.franq p { font-size: .76rem; opacity: .9; margin-bottom: 14px; }
.franq a { color: var(--w); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

/* ── 20. CONTACTO ── */
.cf { max-width: 460px; margin: 0 auto; }
.fg { margin-bottom: 12px; }
.fg label { display: block; font-size: .58rem; font-weight: 600; letter-spacing: 2px; color: var(--g); margin-bottom: 4px; text-transform: uppercase; }
.fg input, .fg textarea {
  width: 100%; padding: 10px 12px; background: var(--card);
  border: 1px solid var(--brd); border-radius: var(--r);
  color: var(--w); font-family: var(--f); font-size: .78rem;
  outline: 0; transition: border .3s;
}
.fg input:focus, .fg textarea:focus { border-color: var(--red); }
.fg textarea { resize: vertical; min-height: 80px; }

/* ── 21. FOOTER ── */
.footer {
  background: linear-gradient(180deg, var(--dk), rgba(192,57,43,.06));
  padding: 44px 24px 20px; text-align: center;
  border-top: 2px solid rgba(192,57,43,.4);
}
.fso { display: flex; gap: 16px; justify-content: center; margin: 14px 0; flex-wrap: wrap; }
.fso a { color: var(--g); font-size: .68rem; letter-spacing: 1px; transition: color .3s; }
.fso a:hover { color: var(--w); }
.fcp { font-size: .58rem; color: var(--g2); letter-spacing: 1px; }
.fnt { font-size: .55rem; color: var(--g2); letter-spacing: 1px; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--brd); }

/* ── 22. POSTRES ── */
.postres-img { width: 100%; max-width: 760px; margin: 0 auto; border-radius: var(--r); }

/* ── 23. ANIMACIONES (scroll reveal) ── */
.fi { opacity: 0; transform: translateY(16px); transition: opacity .5s, transform .5s; }
.fi.vis { opacity: 1; transform: translateY(0); }

/* ── 24. RESPONSIVE ── */
@media (max-width: 768px) {
  .nls { display: none; }
  .ham { display: flex; }
  .hph { flex-direction: column; gap: 12px; }
  .ccat { flex: 0 0 160px; height: 200px; }
  .rg { grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); gap: 8px; }
  .ri { height: 105px; }
  .wkl { grid-template-columns: 1fr; gap: 18px; }
  .pk-preview { grid-template-columns: 1fr; }
  .swg { grid-template-columns: 1fr; }
  .surf-body-in { grid-template-columns: 1fr; }
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}
