/* Angelitos Pizza - styles */
/* Files requested: css/style.css and js/main.js */

:root{
  --bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --shadow: 0 10px 30px rgba(17, 24, 39, .08);
  --shadow2: 0 12px 40px rgba(17, 24, 39, .10);

  --accent: #ff4d4d;      /* rojo */
  --accent2: #22c55e;     /* verde */
  --accent3: #7c3aed;     /* morado */
  --accent4: #2563eb;     /* azul */
  --accent5: #f59e0b;     /* amarillo */

  --radius: 18px;
  --radius2: 26px;

  --fontTitle: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --fontBody: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--fontBody);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.brand-mark{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 800;
  font-family: var(--fontTitle);
  letter-spacing: .5px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,77,77,.35), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(34,197,94,.25), transparent 55%),
    linear-gradient(135deg, rgba(37,99,235,.20), rgba(124,58,237,.18));
  border: 1px solid rgba(17,24,39,.10);
}
.brand-text{ display:flex; flex-direction:column; gap: 2px; }
.brand-name{
  font-family: var(--fontTitle);
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.05;
}
.brand-tag{
  font-size: 12px;
  color: var(--muted);
}

.nav{
  display:flex;
  align-items:center;
  gap: 10px;
}
.nav-menu{
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(17,24,39,.05);
}
.nav-menu a{
  font-weight: 600;
  font-size: 13px;
  color: #111827;
  opacity: .9;
}
.nav-menu a:hover{ opacity: 1; text-decoration: none; }

.nav-toggle{
  display:none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  box-shadow: 0 6px 20px rgba(17,24,39,.05);
}
.burger{
  width: 18px;
  height: 2px;
  background: #111827;
  display:block;
  margin: 0 auto;
  position: relative;
}
.burger::before, .burger::after{
  content:"";
  position:absolute;
  left:0;
  width: 18px;
  height: 2px;
  background: #111827;
}
.burger::before{ top: -6px; }
.burger::after{ top: 6px; }

.cta-whatsapp{
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(34,197,94,.25);
  background: linear-gradient(135deg, rgba(34,197,94,.16), rgba(34,197,94,.06));
  box-shadow: 0 10px 30px rgba(34,197,94,.12);
  white-space: nowrap;
}
.cta-whatsapp strong{ font-weight: 800; }

/* Hero */
.hero{
  position: relative;
  padding: 46px 0 28px;
  overflow: hidden;
}
.hero-decor{
  position:absolute;
  inset: -120px -120px auto -120px;
  height: 520px;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,77,77,.18), transparent 55%),
    radial-gradient(circle at 65% 10%, rgba(37,99,235,.14), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(34,197,94,.12), transparent 55%),
    radial-gradient(circle at 35% 80%, rgba(124,58,237,.10), transparent 55%);
  filter: blur(0px);
  pointer-events:none;
}

.hero-grid{
  position: relative;
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 22px;
  align-items: start;
}

.kicker{
  display:inline-block;
  font-family: var(--fontTitle);
  font-weight: 800;
  letter-spacing: .8px;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(245,158,11,.14);
  border: 1px solid rgba(245,158,11,.22);
}
.hero h1{
  font-family: var(--fontTitle);
  font-weight: 800;
  margin: 14px 0 10px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.6px;
}
.lead{
  margin: 0;
  font-size: 16px;
  color: #111827;
}
.sep{
  opacity: .35;
  margin: 0 8px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,77,77,.12);
  border: 1px solid rgba(255,77,77,.18);
  margin-left: 10px;
}
.badge-outline{
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(17,24,39,.12);
}

.notice{
  margin-top: 16px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(37,99,235,.18);
  background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(124,58,237,.06));
  box-shadow: 0 12px 32px rgba(37,99,235,.10);
}
.notice-icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  font-weight: 900;
  font-family: var(--fontTitle);
  background: rgba(37,99,235,.14);
  border: 1px solid rgba(37,99,235,.18);
}
.notice-text{ color: #111827; }

.hero-actions{
  display:flex;
  gap: 12px;
  margin: 18px 0 18px;
  flex-wrap: wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(17,24,39,.12);
  font-weight: 800;
  font-family: var(--fontTitle);
  font-size: 13px;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  text-decoration:none;
  box-shadow: var(--shadow);
}
.btn-primary{
  color: #0b1b10;
  background: linear-gradient(135deg, rgba(34,197,94,.22), rgba(34,197,94,.10));
  border-color: rgba(34,197,94,.28);
}
.btn-secondary{
  color: #111827;
  background: linear-gradient(135deg, rgba(255,77,77,.18), rgba(245,158,11,.10));
  border-color: rgba(255,77,77,.20);
}
.btn-ghost{
  background: rgba(255,255,255,.75);
}

.mini-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

/* Precios de mostrador */
.mostrador-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 14px 0 16px;
}
.mini-card{
  border-radius: var(--radius);
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 30px rgba(17,24,39,.06);
  padding: 14px 14px;
}
.mini-card h3{
  margin: 0 0 6px;
  font-family: var(--fontTitle);
  font-weight: 800;
  font-size: 14px;
}
.mini-card p{ margin: 0; color: #111827; }
.mini-card .muted{ color: var(--muted); font-size: 12px; }
.mini-card .price{
  margin-top: 10px;
  font-family: var(--fontTitle);
  font-weight: 900;
  font-size: 22px;
}
.mini-card.highlight{
  border-color: rgba(255,77,77,.18);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,77,77,.12), transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(245,158,11,.10), transparent 55%),
    rgba(255,255,255,.82);
}
.pill{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  background: rgba(255,77,77,.12);
  border: 1px solid rgba(255,77,77,.18);
}

.hero-panel .panel-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow2);
  padding: 16px;
}
.hero-panel .panel-card + .panel-card{ margin-top: 12px; }
.panel-title{
  margin: 0 0 10px;
  font-family: var(--fontTitle);
  font-weight: 900;
  letter-spacing: -.2px;
}
.panel-list{
  margin: 0;
  padding: 0 0 0 18px;
  color: #111827;
}
.panel-list li{ margin: 10px 0; }
.panel-price{
  font-family: var(--fontTitle);
  font-weight: 900;
  margin-left: 6px;
}
.full{ width: 100%; margin-top: 12px; }
.subtle{
  background: rgba(255,255,255,.70);
}

/* Sections */
.section{
  padding: 54px 0;
}
.section.alt{
  background: linear-gradient(180deg, rgba(17,24,39,.02), rgba(17,24,39,.00));
  border-top: 1px solid rgba(17,24,39,.06);
  border-bottom: 1px solid rgba(17,24,39,.06);
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section-head h2{
  margin:0;
  font-family: var(--fontTitle);
  font-weight: 900;
  letter-spacing: -.3px;
  font-size: clamp(22px, 2.4vw, 30px);
}
.section-head p{
  margin:0;
  color: var(--muted);
  max-width: 520px;
}

.mostrador-note{ margin-top: 10px; }

/* Price grid */
.price-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.price-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(17,24,39,.10);
  background: #fff;
  box-shadow: 0 12px 34px rgba(17,24,39,.07);
  padding: 16px;
  position: relative;
  overflow:hidden;
}
.price-card::before{
  content:"";
  position:absolute;
  inset: -80px -80px auto -80px;
  height: 180px;
  background: radial-gradient(circle at 30% 30%, rgba(0,0,0,.08), transparent 60%);
  opacity:.12;
}
.price-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}
.price-top h3{
  margin:0;
  font-family: var(--fontTitle);
  font-weight: 900;
  letter-spacing: .6px;
}
.chip{
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.12);
  background: rgba(255,255,255,.72);
}
.price-rows{
  position: relative;
  margin-top: 14px;
  display:grid;
  gap: 10px;
}
.row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.08);
  background: rgba(17,24,39,.02);
}
.row span{ color: var(--muted); font-weight: 700; }
.row strong{
  font-family: var(--fontTitle);
  font-weight: 900;
  font-size: 18px;
}

.size-cuadrada{ border-left: 6px solid rgba(34,197,94,.85); }
.size-grande{ border-left: 6px solid rgba(245,158,11,.85); }
.size-jumbo{ border-left: 6px solid rgba(124,58,237,.85); }

/* Flyers (Precios de mostrador) */
.flyer-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.flyer-card{
  margin: 0;
  border-radius: var(--radius2);
  border: 1px solid rgba(17,24,39,.10);
  background: #fff;
  box-shadow: 0 12px 34px rgba(17,24,39,.07);
  overflow: hidden;
}
.flyer-card img{
  width: 100%;
  height: auto;
  display: block;
}

/* Flavors */
.flavor-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.flavor-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(17,24,39,.10);
  background: #fff;
  padding: 14px 14px;
  box-shadow: 0 10px 30px rgba(17,24,39,.06);
}
.flavor-card h3{
  margin:0 0 8px;
  font-family: var(--fontTitle);
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 14px;
}
.flavor-card p{
  margin:0;
  color: #111827;
}
.muted{ color: var(--muted); }

/* Branches */
.branch-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.branch-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(17,24,39,.10);
  background: #111827;
  color: #fff;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(17,24,39,.20);
}
.branch-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.branch-card h3{
  margin:0;
  font-family: var(--fontTitle);
  font-weight: 900;
}
.badge-dark{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
  color: #fff;
  margin-left: 0;
}
.branch-phones{
  margin: 10px 0 8px;
  font-family: var(--fontTitle);
  font-weight: 900;
  letter-spacing: .4px;
}
.branch-phones a{ color:#fff; text-decoration: underline; }
.dot{ opacity: .6; margin: 0 8px; }
.branch-address{ margin: 0 0 6px; opacity: .95; }
.branch-note{ margin: 0; opacity: .75; }

.cta-strip{
  margin-top: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(34,197,94,.22);
  background: linear-gradient(135deg, rgba(34,197,94,.14), rgba(37,99,235,.06));
  padding: 12px;
}
.cta-strip-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 8px;
}
.cta-strip strong{ font-family: var(--fontTitle); font-weight: 900; }

/* Transfer */
.transfer-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(37,99,235,.18);
  background: #fff;
  box-shadow: 0 12px 40px rgba(37,99,235,.10);
  padding: 10px;
}
.transfer-row{
  display:grid;
  grid-template-columns: 180px 1fr 110px;
  gap: 10px;
  align-items:center;
  padding: 12px 12px;
  border-radius: 18px;
}
.transfer-row + .transfer-row{ margin-top: 8px; }
.transfer-row:nth-child(odd){
  background: rgba(37,99,235,.04);
  border: 1px solid rgba(37,99,235,.10);
}
.transfer-label{
  color: var(--muted);
  font-weight: 800;
  font-family: var(--fontTitle);
  font-size: 12px;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.transfer-value{
  font-family: var(--fontTitle);
  font-weight: 900;
  letter-spacing: .3px;
}
.copy-btn{
  justify-self: end;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(17,24,39,.12);
  background: rgba(255,255,255,.75);
  font-weight: 900;
  font-family: var(--fontTitle);
  cursor:pointer;
}
.copy-btn:hover{ box-shadow: var(--shadow); transform: translateY(-1px); }
.transfer-footnote{
  margin: 10px 12px 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

/* Footer */
.site-footer{
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-grid{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-logo{
  font-family: var(--fontTitle);
  font-weight: 900;
  font-size: 18px;
}
.footer-cols{
  display:flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-col h4{
  margin: 0 0 8px;
  font-family: var(--fontTitle);
  font-weight: 900;
}
.footer-col p{ margin:0; color: var(--muted); }
.footer-col a{ color: var(--muted); text-decoration: underline; }

/* Floating WhatsApp */
.float-wa{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(34,197,94,.28);
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 40px rgba(17,24,39,.12);
}
.float-wa:hover{ text-decoration:none; transform: translateY(-1px); }
.float-wa-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(34,197,94,.95);
  box-shadow: 0 0 0 6px rgba(34,197,94,.16);
}
.float-wa-text{
  font-family: var(--fontTitle);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.float-wa-num{
  font-family: var(--fontTitle);
  font-weight: 900;
}

/* Floating Google */
.float-google{
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 59;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(59,130,246,.28);
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 40px rgba(17,24,39,.12);
}
.float-google:hover{ text-decoration:none; transform: translateY(-1px); }
.float-google-icon{
  width: 22px;
  height: 22px;
  display:grid;
  place-items: center;
  border-radius: 999px;
  font-family: var(--fontTitle);
  font-weight: 900;
  font-size: 12px;
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.18);
}
.float-google-text{
  font-family: var(--fontTitle);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.float-google-num{
  font-family: var(--fontTitle);
  font-weight: 900;
}

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  z-index: 80;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.12);
  background: rgba(17,24,39,.92);
  color: #fff;
  font-weight: 800;
  font-family: var(--fontTitle);
  font-size: 13px;
  opacity: 0;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}
.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(-6px);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .nav-menu{ display:none; }
  .nav-toggle{ display:block; }
  .nav-menu.open{
    display:flex;
    position:absolute;
    right: 16px;
    top: 72px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: min(320px, calc(100% - 32px));
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow2);
  }
  .cta-whatsapp{ display:none; }
  .mini-cards{ grid-template-columns: 1fr; }
  .mostrador-cards{ grid-template-columns: 1fr; }
  .price-grid{ grid-template-columns: 1fr; }
  .flavor-grid{ grid-template-columns: 1fr; }
  .branch-grid{ grid-template-columns: 1fr; }
  .transfer-row{ grid-template-columns: 1fr; }
  .copy-btn{ justify-self: start; width: 100%; }
  .cta-strip-inner{ flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px){
  .float-wa{ left: 14px; right: 14px; justify-content: center; }
  .float-google{ left: 14px; right: 14px; justify-content: center; }
}
