:root {
  --rojo:      #C8161D;
  --rojo-dark: #9e0f14;
  --blanco:    #FFFFFF;
  --gris:      #F5F5F5;
  --negro:     #1a1a1a;
  --texto:     #2d2d2d;
}

/* ─── Reset ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--texto);
  background: var(--blanco);
  overflow-x: hidden;
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--rojo);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  height: 70px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, .35);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo svg {
  width: 40px;
  height: 40px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text .tilde {
  font-family: 'Lato', sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, .75);
  text-transform: uppercase;
}

.nav-logo-text .brand {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--blanco);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover { color: var(--blanco); }

.nav-cta {
  background: var(--blanco);
  color: var(--rojo) !important;
  padding: 8px 20px;
  border-radius: 3px;
  font-weight: 700 !important;
  transition: background .2s, color .2s !important;
}

.nav-cta:hover {
  background: var(--negro) !important;
  color: var(--blanco) !important;
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
   /* ══════════════════════════════════════════════════════════════
      HERO
      ══════════════════════════════════════════════════════════════ */
   #hero {
     min-height: 100vh;
     background: var(--rojo);
     display: grid;
     grid-template-columns: 1fr 1fr;
     align-items: center;
     padding: 100px 6vw 60px;
     position: relative;
     overflow: hidden;
   }

   /* Patrón de fondo */
   #hero::before {
     content: '';
     position: absolute;
     inset: 0;
     background-image:
       repeating-linear-gradient(
         45deg,
         rgba(255, 255, 255, .04) 0px,
         rgba(255, 255, 255, .04) 1px,
         transparent 1px,
         transparent 40px
       ),
       repeating-linear-gradient(
         -45deg,
         rgba(255, 255, 255, .04) 0px,
         rgba(255, 255, 255, .04) 1px,
         transparent 1px,
         transparent 40px
       );
     pointer-events: none;
   }

   .hero-text {
     position: relative;
     z-index: 2;
   }

   .hero-tag {
     display: inline-block;
     font-family: 'Lato', sans-serif;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 4px;
     text-transform: uppercase;
     color: rgba(255, 255, 255, .7);
     border: 1px solid rgba(255, 255, 255, .3);
     padding: 5px 14px;
     border-radius: 2px;
     margin-bottom: 24px;
     animation: fadeUp .6s ease both;
   }

   .hero-title {
     font-family: 'Oswald', sans-serif;
     font-size: clamp(48px, 7vw, 90px);
     font-weight: 700;
     line-height: .95;
     color: var(--blanco);
     text-transform: uppercase;
     animation: fadeUp .7s .1s ease both;
   }

   .hero-title span {
     display: block;
     color: #ffff;
     font-size: .55em;
     letter-spacing: 6px;
     font-weight: 400;
   }

   .hero-desc {
     margin-top: 24px;
     font-size: 16px;
     line-height: 1.7;
     color: rgba(255, 255, 255, .8);
     max-width: 420px;
     animation: fadeUp .7s .2s ease both;
   }

   .hero-actions {
     margin-top: 40px;
     display: flex;
     gap: 16px;
     flex-wrap: wrap;
     animation: fadeUp .7s .3s ease both;
   }

   .hero-visual{
       display:flex;
       justify-content:center;
       align-items:center;
   }

   .pizza-ring{
       position:relative;
       width:550px;
       height:550px;
       border-radius:50%;
       display:flex;
       justify-content:center;
       align-items:center;
   }

   .pizza-ring::before{
       content:"";
       position:absolute;
       width:100%;
       height:100%;
       border:2px solid rgba(255,255,255,.15);
       border-radius:50%;
   }

   .pizza-ring::after{
       content:"";
       position:absolute;
       width:85%;
       height:85%;
       border:1px dashed rgba(255,255,255,.15);
       border-radius:50%;
   }

   .pizza-img{
       width:450px;
       height:450px;
       object-fit:contain;
       animation:girarPizza 25s linear infinite;
       filter:drop-shadow(0 15px 25px rgba(0,0,0,.25));
   }

   @keyframes girarPizza{
       from{
           transform:rotate(0deg);
       }
       to{
           transform:rotate(360deg);
       }
   }

   .badge{
       position:absolute;
       left:-20px;
       bottom:100px;
       width:110px;
       height:110px;
       border-radius:50%;
       background:#fff;
       display:flex;
       flex-direction:column;
       justify-content:center;
       align-items:center;
       z-index:2;
   }

   .badge strong{
       color:#c91b1b;
       font-size:38px;
       line-height:1;
   }

   .badge span{
       color:#c91b1b;
       text-transform:uppercase;
       font-size:12px;
       letter-spacing:2px;
   }

/* ─── Botones ─── */
.btn-primary {
  background: var(--blanco);
  color: var(--rojo);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 3px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
}

.btn-secondary {
  background: transparent;
  color: var(--blanco);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 3px;
  border: 2px solid rgba(255, 255, 255, .5);
  transition: border-color .2s, background .2s;
}

.btn-secondary:hover {
  border-color: var(--blanco);
  background: rgba(255, 255, 255, .1);
}

/* ─── Visual Hero ─── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  animation: floatIn .9s .2s ease both;
}

.pizza-ring {
  width: clamp(280px, 38vw, 500px);
  height: clamp(280px, 38vw, 500px);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 2px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spin 30s linear infinite;
}

.pizza-ring::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, .2);
}

.pizza-icon-wrap {
  animation: spin 30s linear infinite reverse;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pizza-icon-wrap svg {
  width: clamp(160px, 22vw, 280px);
  height: clamp(160px, 22vw, 280px);
}

/* ─── Badge flotante ─── */
.badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--blanco);
  color: var(--rojo);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
  animation: spin 30s linear infinite reverse;
}

.badge strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.badge span {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════════════════════════════ */
.stats {
  background: var(--negro);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 40px 6vw;
  gap: 1px;
}

.stats-item {
  padding: 16px 10px;
  border-right: 1px solid rgba(255, 255, 255, .07);
}

.stats-item:last-child { border: none; }

.stats-num {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--rojo);
  line-height: 1;
}

.stats-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-top: 6px;
}

/* ══════════════════════════════════════════════════════════════
   SECCIONES GENÉRICAS
   ══════════════════════════════════════════════════════════════ */
section { padding: 100px 6vw; }

.section-tag {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rojo);
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--negro);
}

.section-title em {
  color: var(--rojo);
  font-style: normal;
}

.section-sub {
  margin-top: 16px;
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  max-width: 540px;
}

/* ══════════════════════════════════════════════════════════════
   MENÚ
   ══════════════════════════════════════════════════════════════ */
#menu { background: var(--gris); }

.menu-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.tab {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 2px;
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--blanco);
  color: #999;
  transition: all .2s;
}

.tab.active,
.tab:hover {
  background: var(--rojo);
  color: var(--blanco);
  border-color: var(--rojo);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* ─── Pizza Card ─── */
.product-card {
  background: var(--blanco);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .14);
}

.card-img {
  background: var(--rojo);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.card-img svg {
  width: 100px;
  height: 100px;
  opacity: .9;
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--negro);
  color: var(--blanco);
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
}

.card-body { padding: 20px; }

.card-name {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--negro);
}

.card-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  margin-top: 6px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.card-price {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--rojo);
}

.card-price small {
  font-size: 13px;
  font-weight: 400;
  color: #aaa;
}

.btn-add {
  background: var(--rojo);
  color: var(--blanco);
  border: none;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 3px;
  transition: background .2s;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}




.btn-add:hover { background: var(--rojo-dark); }

/* ══════════════════════════════════════════════════════════════
   NOSOTROS
   ══════════════════════════════════════════════════════════════ */
#nosotros {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-box {
  background: var(--rojo);
  border-radius: 6px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-box svg { width: 60%; height: 60%; }

.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--negro);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
  font-family: 'Oswald', sans-serif;
}

.about-accent strong {
  font-size: 42px;
  font-weight: 700;
  color: var(--rojo);
  line-height: 1;
}

.about-accent span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

.about-list {
  list-style: none;
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.about-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rojo);
  margin-top: 7px;
}

.about-list li p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.about-list li strong { color: var(--negro); }

/* ══════════════════════════════════════════════════════════════
   PROMOCIONES
   ══════════════════════════════════════════════════════════════ */
#promo {
  background: var(--negro);
  padding: 80px 6vw;
}

#promo .section-title { color: var(--blanco); }

.promo-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.promo-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rojo);
}

.promo-card:hover { border-color: rgba(200, 22, 29, .4); }

.promo-emoji {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.promo-name {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--blanco);
  text-transform: uppercase;
}

.promo-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  margin-top: 8px;
  line-height: 1.6;
}

.promo-discount {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--rojo);
  margin-top: 20px;
}
.promo-grid {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.promo-card {
  flex: 1;
  max-width: 420px;
}
.hidden{
    display:none !important;
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

/* ══════════════════════════════════════════════════════════════
   CONTACTO / FOOTER
   ══════════════════════════════════════════════════════════════ */
#contacto {
  background: var(--rojo);
  text-align: center;
  padding: 100px 6vw 60px;
}

#contacto .section-title { color: var(--blanco); }

#contacto .section-sub {
  color: rgba(255, 255, 255, .75);
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.contact-item {
  background: rgba(255, 255, 255, .12);
  border-radius: 6px;
  padding: 28px 20px;
  backdrop-filter: blur(4px);
}

.contact-item .ico {
  font-size: 30px;
  margin-bottom: 12px;
}

.contact-item h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

.contact-item p {
  font-size: 15px;
  color: var(--blanco);
  margin-top: 6px;
  line-height: 1.5;
}
.contact-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 60px auto;
}

.contact-item {
  width: 250px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--blanco);
  letter-spacing: 1px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}

/* ══════════════════════════════════════════════════════════════
   ANIMACIONES
   ══════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatIn {
  from { opacity: 0; transform: scale(.88) rotate(-4deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  #hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual { margin-top: 40px; }
  .hero-actions { justify-content: center; }
  .hero-desc { margin: 24px auto 0; }

  .stats { grid-template-columns: repeat(2, 1fr); }

  #nosotros { grid-template-columns: 1fr; }

  .nav-links { display: none; }
}

/* ─── Sistema de páginas/pestañas ─── */
.pagina {
  display: none;

}





.pagina.activa {
  display: block;
}

/* ─── Nav link activo ─── */
.nav-links a.nav-activo {
  color: var(--blanco);
  border-bottom: 2px solid var(--blanco);
  padding-bottom: 2px;
}.logo-img{
  width:60px;
  height:60px;
  object-fit:contain;
}

.logo-img{
  width:140px;
  height:120px;
  object-fit:contain;
}
.about-img{
   width:100%;
   height:100%;
   object-fit:cover;
   border-radius:18px;
   display:block;
}
.whatsapp-float {
  position: fixed;
  bottom: 6rem;  /* ← antes era 2rem, ahora sube */
  right: 1.5rem;
  width: 56px;
  height: 58px;
  background: #CB0D12;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}
/* ══ RESERVACIÓN ══ */
#reservacion {
  background: #ffff;
}

.reservacion-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.reservacion-inner > p {
  color: #000 !important;
}
/* Icono del calendario */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

/* Icono del reloj */
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}


/* TÍTULO */
.reservacion-inner .section-title {
  margin-bottom: 0.8rem;
  color: #000;
}
.section-label {
color:#CB0D12;
}

.reservacion-inner .section-title span {
  color: var(--rojo);
}

.reservacion-inner > p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 0.5rem;
}

/* CASILLAS */
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--rojo);
  border: 1px solid var(--rojo);
  color: #fff;
  padding: 0.75rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

/* PLACEHOLDERS */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.8);
}

/* FECHA Y HORA */
.form-group input[type="date"],
.form-group input[type="time"] {
  color: #fff;
}

/* MENÚS DESPLEGABLES */
.form-group select option {
  background: #fff;
  color: #000;
}

/* FOCUS */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #000;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-full {
  grid-column: 1 / -1;
}

/* BOTÓN (SE MANTIENE IGUAL) */
.form-submit {
  margin-top: 1.5rem;
  width: 100%;
}
/* CONTENEDOR GENERAL */
.payment-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

/* CAJÓN DE CADA MÉTODO DE PAGO */
.payment-card {
    width: 250px;
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    transition: all .3s ease;
    border-top: 5px solid #d41018;
}

.payment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,.18);
}

/* IMAGEN */
.payment-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* TÍTULO */
.payment-card h3 {
    color: #d41018;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* DESCRIPCIÓN */
.payment-card p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

/* BOTÓN */
.payment-card a {
    display: inline-block;
    background: #d41018;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.payment-card a:hover {
    background: #a90d12;
}



.pizza-img{
    width: 900px;
    height: 900px;
}

.pagina {
    display: none;
}

.pagina.activa {
    display: block;
}
@media (max-width: 768px) {
    
    /* AQUÍ VAN LOS CAMBIOS EXCLUSIVOS PARA CELULAR */

    .hero-visual {
        width: 100%;
        padding: 0;
    }

    .pizza-ring {
        width: 310px;
        height: 310px;
    }

    .pizza-img {
        width: 500px;
        height: 500px;
    }
   #promo {
    padding: 55px 5vw;
  }

  .promo-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
    width: 100%;
  }

  .promo-card {
    width: 100%;
    max-width: none;
    flex: none;
    box-sizing: border-box;
    padding: 28px 24px;
  }

  .promo-emoji {
    font-size: 34px;
    margin-bottom: 12px;
  }

  .promo-name {
    font-size: 25px;
    line-height: 1.25;
  }

  .promo-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
  }

  .promo-discount {
    font-size: 38px;
    margin-top: 18px;
  }
  /* =========================
 
}
