:root {
  --n: #0b0a09;
  --o: #ff6200;
  --r: #c92418;
  --c: #fff8ec;
  --g: #6b6258;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--n);
  color: #fff;
  font-family: Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
.nav {
  height: 80px;
  padding: 10px 5vw;
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff20;
}
.nav img,
footer img {
  width: 120px;
  height: 58px;
  object-fit: contain;
}
.nav nav {
  display: flex;
  gap: 28px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.nav > button {
  border: 0;
  border-radius: 50px;
  background: var(--o);
  color: #fff;
  padding: 11px 17px;
  font-weight: 800;
}
.nav > button b {
  background: #111;
  border-radius: 50%;
  padding: 6px 9px;
  margin-left: 5px;
}
.hero {
  min-height: 760px;
  padding: 130px 6vw 60px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 40%, #4a1605, transparent 45%), #0b0908;
}
.ceja {
  text-transform: uppercase;
  color: var(--o);
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 900;
}
.hero h1 {
  font-size: clamp(55px, 7vw, 105px);
  line-height: 0.86;
  letter-spacing: -0.07em;
  margin: 22px 0;
}
.hero h1 em,
.frase em {
  font-style: normal;
  color: var(--o);
}
.hero-copy > p:not(.ceja) {
  color: #d5cbc0;
  font-size: 18px;
  line-height: 1.6;
  max-width: 580px;
}
.acciones {
  display: flex;
  gap: 12px;
  margin: 30px 0;
}
.acciones a {
  padding: 16px 22px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
}
.primario {
  background: var(--o);
}
.secundario {
  border: 1px solid #ffffff55;
}
.datos {
  display: flex;
  gap: 20px;
  color: #c6bbb0;
  font-size: 12px;
}
.hero-img {
  position: relative;
}
.hero-img img {
  width: 115%;
  filter: drop-shadow(0 30px 25px #000);
  max-height: 550px;
  object-fit: contain;
}
.hero-img span {
  position: absolute;
  right: 3%;
  top: 0;
  z-index: 2;
  color: var(--o);
  border: 2px solid var(--o);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  transform: rotate(10deg);
}
.catalogo {
  padding: 95px 6vw;
  background: var(--c);
  color: var(--n);
}
.titulo {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.titulo h2,
.contacto h2 {
  font-size: clamp(40px, 5vw, 70px);
  letter-spacing: -0.06em;
  margin: 8px 0;
}
.titulo > p {
  max-width: 420px;
  color: var(--g);
  line-height: 1.6;
}
.filtros {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 35px 0 25px;
}
.filtros button {
  border: 1px solid #cfc1af;
  background: transparent;
  padding: 11px 17px;
  font-weight: 800;
}
.filtros button.activo {
  background: var(--n);
  color: #fff;
}
.grilla {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.producto {
  grid-column: span 2;
  background: #fff;
  border: 1px solid #ded1c0;
  display: flex;
  flex-direction: column;
}
.foto {
  height: 270px;
  background: #050505;
  position: relative;
  overflow: hidden;
}
.foto img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.35s;
}
.producto:hover img {
  transform: scale(1.04);
}
.foto span {
  position: absolute;
  top: 13px;
  left: 13px;
  background: var(--o);
  color: #fff;
  padding: 8px 10px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.cuerpo {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.linea {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.linea h3 {
  margin: 0;
  font-size: 21px;
}
.linea strong {
  color: var(--r);
  white-space: nowrap;
}
.cuerpo > p {
  color: var(--g);
  line-height: 1.55;
  font-size: 14px;
}
.control {
  margin-top: auto;
}
.agregar {
  border: 0;
  background: var(--n);
  color: #fff;
  padding: 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-weight: 800;
}
.cantidad {
  display: inline-flex;
  background: #f0e6da;
  align-items: center;
}
.cantidad button {
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  font-size: 20px;
}
.cantidad b {
  min-width: 28px;
  text-align: center;
}
.frase {
  text-align: center;
  padding: 100px 5vw;
  background:
    linear-gradient(#0009, #0009),
    url("../img/productos/focaccia.webp") center/cover fixed;
}
.frase > p {
  color: var(--o);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.frase h2 {
  font-size: clamp(42px, 6vw, 82px);
  letter-spacing: -0.06em;
  line-height: 0.95;
}
.contacto {
  padding: 95px 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  align-items: center;
}
.direccion {
  font-size: 33px;
  line-height: 1.0;
}
.servicios {
  border: 1px solid #ffffff20;
}
.servicios p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 15px;
  border-bottom: 1px solid #ffffff20;
}
.servicios span {
  color: #bdb2a7;
}
.contacto aside {
  background: var(--o);
  padding: 42px;
  box-shadow: 16px 16px 0 var(--r);
}
.contacto aside h3 {
  font-size: 50px;
  margin: 12px 0;
}
.contacto aside a {
  display: block;
  text-align: center;
  background: #111;
  padding: 16px;
  margin: 25px 0;
  font-weight: 900;
}
.contacto aside > span {
  font-size: 13px;
}
footer {
  padding: 30px 6vw;
  display: flex;
  align-items: center;
  gap: 25px;
  color: #bcb3a9;
  border-top: 1px solid #ffffff20;
}
footer a {
  margin-left: auto;
  color: var(--o);
  font-weight: 800;
}
.fondo-carrito {
  display: none;
  position: fixed;
  inset: 0;
  background: #000b;
  z-index: 20;
  justify-content: end;
}
.fondo-carrito.abierto {
  display: flex;
}
.carrito {
  width: min(470px, 100%);
  height: 100%;
  overflow: auto;
  background: var(--c);
  color: var(--n);
  padding: 35px;
}
.cerrar {
  float: right;
  border: 0;
  background: transparent;
  font-size: 35px;
}
.carrito h2 {
  font-size: 42px;
  margin: 12px 0 28px;
}
.item {
  padding: 16px 0;
  border-bottom: 1px solid #d8cbbb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.item small {
  display: block;
  color: var(--g);
  margin-top: 5px;
}
.total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
}
.total strong {
  font-size: 28px;
}
.whatsapp {
  display: block;
  background: #20a45a;
  color: #fff;
  text-align: center;
  padding: 16px;
  font-weight: 900;
}
.alias {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 12px;
  border: 1px solid #d8cbbb;
  background: #fff;
  padding: 15px;
  margin-top: 13px;
}
.alias small {
  grid-column: 1/-1;
}
.alias b {
  font-size: 20px;
}
.alias button {
  border: 0;
  background: #111;
  color: #fff;
  padding: 9px;
}
.vacio {
  color: var(--g);
}
@media (max-width: 850px) {
  .nav {
    height: 70px;
    padding: 8px 18px;
  }
  .nav nav {
    display: none;
  }
  .nav img {
    width: 100px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    padding: 105px 20px 45px;
    min-height: 830px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-copy > p:not(.ceja) {
    font-size: 16px;
  }
  .datos {
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero-img {
    margin-top: 20px;
  }
  .hero-img img {
    width: 115%;
    margin-left: -7%;
  }
  .hero-img span {
    width: 80px;
    height: 80px;
    font-size: 12px;
  }
  .catalogo,
  .contacto {
    padding: 70px 20px;
  }
  .titulo {
    display: block;
  }
  .filtros {
    overflow: auto;
    flex-wrap: nowrap;
  }
  .filtros button {
    white-space: nowrap;
  }
  .grilla {
    display: block;
  }
  .producto {
    margin-bottom: 17px;
  }
  .foto {
    height: 240px;
  }
  .linea {
    display: block;
  }
  .linea strong {
    display: block;
    margin-top: 7px;
  }
  .frase {
    padding: 75px 20px;
    background-attachment: scroll;
  }
  .contacto {
    display: block;
  }
  .contacto aside {
    margin-top: 50px;
    padding: 28px;
    box-shadow: 10px 10px 0 var(--r);
  }
  .contacto aside h3 {
    font-size: 40px;
  }
  .servicios p {
    display: block;
  }
  .servicios span {
    display: block;
    margin-top: 5px;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  footer a {
    margin: 0;
  }
  .carrito {
    padding: 25px;
  }
  .acciones {
    flex-wrap: wrap;
  }
}
.datos-contacto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.contacto aside .datos-contacto > a,
.datos-contacto > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  padding: 14px 15px;
  background: #fff;
  color: #17110d;
  text-align: left;
}
.datos-contacto small {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #765847;
}
.datos-contacto strong {
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .datos-contacto {
    grid-template-columns: 1fr;
  }
  .datos-contacto strong {
    font-size: 20px;
  }
}
.accesos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.accesos a {
  min-height: 96px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  border: 1px solid #ffffff2b;
  background: #171411;
}
.accesos a:hover {
  border-color: var(--o);
  transform: translateY(-3px);
}
.accesos span {
  grid-row: 1/3;
  font-size: 29px;
  color: var(--o);
}
.accesos b {
  font-size: 17px;
}
.accesos small {
  font-size: 12px;
  color: #bfb4aa;
}
@media (max-width: 520px) {
  .accesos {
    grid-template-columns: 1fr;
  }
  .accesos a {
    min-height: 82px;
  }
}
.aviso-web {
  position: relative;
  z-index: 4;
  background: var(--o);
  color: #160a03;
  padding: 14px 6vw;
  text-align: center;
  font-weight: 900;
}
.slider-seccion {
  padding: 70px 0;
  background: #050505;
  overflow: hidden;
}
.slider-titulo {
  padding: 0 6vw 25px;
}
.slider-titulo h2 {
  font-size: clamp(34px, 5vw, 64px);
  margin: 7px 0;
}
.slider-ventana {
  overflow: hidden;
}
.slider-pista {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: deslizar 24s linear infinite;
}
.slider-pista:hover {
  animation-play-state: running;
}
.promociones {
  padding: 90px 6vw;
  background: linear-gradient(135deg, #fff8ec, #f5e3cd);
  color: var(--n);
}
.grilla-ofertas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.oferta-publica {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border: 2px solid #ddc9b0;
  background: #fff;
  box-shadow: 8px 8px 0 #ddc9b0;
}
.oferta-publica::before {
  content: "%";
  position: absolute;
  right: -12px;
  top: -35px;
  color: #ff620014;
  font-size: 180px;
  font-weight: 1000;
}
.oferta-publica.activa {
  border-color: var(--o);
  color: #fff;
  background: linear-gradient(145deg, #2a0d03, #111);
  box-shadow: 10px 10px 0 var(--r);
}
.oferta-publica .estado-oferta {
  display: inline-block;
  padding: 7px 10px;
  background: #171411;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.oferta-publica.activa .estado-oferta {
  background: var(--o);
}
.oferta-publica h3 {
  position: relative;
  margin: 20px 0 10px;
  font-size: 30px;
  line-height: 1;
}
.oferta-publica p {
  position: relative;
  line-height: 1.55;
}
.oferta-publica small {
  position: relative;
  display: block;
  margin-top: 20px;
  color: var(--r);
  font-weight: 900;
}
.oferta-publica.activa small {
  color: #ffb27d;
}
.slide {
  width: min(72vw, 500px);
  height: 330px;
  position: relative;
  background: #111;
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.slide b {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: #000c;
  padding: 9px 12px;
}
.separador-media {
  max-height: 420px;
  overflow: hidden;
  background: #000;
}
.separador-media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
}
.resenas {
  padding: 90px 6vw;
  background: #171411;
}
.resenas .titulo > a {
  color: var(--o);
  font-weight: 900;
}
.grilla-resenas {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.resena {
  background: #fff8ed;
  color: #171411;
  padding: 20px;
  min-height: 170px;
}
.resena .estrellas {
  color: #f5a900;
  letter-spacing: 2px;
}
.resena p {
  line-height: 1.45;
}
.servicios-extra {
  margin-top: 14px;
}
.modal-ofertas {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: #000d;
  display: grid;
  place-items: center;
  padding: 18px;
}
.modal-ofertas[hidden] {
  display: none;
}
.ofertas-panel {
  background: #111;
  color: #fff;
  width: min(620px, 96vw);
  max-height: 92vh;
  overflow: auto;
  padding: 26px;
  border: 2px solid var(--o);
  box-shadow: 12px 12px 0 var(--r);
  position: relative;
}
.cerrar-ofertas {
  position: absolute;
  right: 10px;
  top: 7px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 35px;
}
.oferta-activa {
  margin: 18px 0;
  border-top: 1px solid #ffffff33;
  padding-top: 17px;
}
.oferta-activa h2 {
  font-size: 34px;
  margin: 8px 0;
  color: var(--o);
}
.oferta-activa p {
  line-height: 1.5;
}
.flyer-wrap {
  position: relative;
  max-width: 420px;
  margin: auto;
}
.flyer-wrap img {
  width: 100%;
  display: block;
}
.flyer-correccion {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20.6%;
  background: var(--o);
  color: #111;
  padding: 8px 4px;
  text-align: center;
  font-size: clamp(17px, 4vw, 27px);
  font-weight: 1000;
  text-transform: uppercase;
}
.ofertas-panel > .whatsapp {
  margin-top: 18px;
}
.datos-contacto strong {
  font-size: 24px !important;
}
.contacto aside .datos-contacto > a,
.datos-contacto > div {
  border: 2px solid #17110d;
}
.alias b {
  font-size: 25px;
}
.alias small {
  font-weight: 900;
  font-size: 12px;
}
.alias button {
  font-weight: 900;
}
@keyframes deslizar {
  to {
    transform: translateX(calc(-50% - 8px));
  }
}
@media (max-width: 900px) {
  .grilla-ofertas {
    grid-template-columns: 1fr;
  }
  .grilla-resenas {
    grid-template-columns: 1fr 1fr;
  }
  .slide {
    height: 260px;
  }
}
@media (max-width: 520px) {
  .promociones {
    padding: 65px 20px;
  }
  .grilla-resenas {
    grid-template-columns: 1fr;
  }
  .aviso-web {
    padding: 12px 18px;
    font-size: 14px;
  }
  .resenas {
    padding: 65px 20px;
  }
  .ofertas-panel {
    padding: 22px 17px;
  }
  .flyer-correccion {
    bottom: 20.4%;
  }
}
