:root {
  --rojo: #8b1e1e;
  --rojo-oscuro: #651414;
  --crema: #fff8ee;
  --crema-2: #f5e2c0;
  --dorado: #d9913d;
  --amarillo: #f2c66d;
  --texto: #2c1b12;
  --texto-suave: #674738;
  --blanco: #ffffff;
  --borde: #ead8bd;
  --sombra: 0 24px 70px rgba(44, 27, 18, 0.16);
  --sombra-suave: 0 12px 34px rgba(44, 27, 18, 0.08);
  --radio-xl: 32px;
  --radio-lg: 26px;
}

/* RESET GENERAL */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--crema);
  color: var(--texto);
  line-height: 1.5;
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

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

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 238, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--borde);
}

.header__content {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.logo__mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
  box-shadow: 0 10px 24px rgba(139, 30, 30, 0.18);
}

.logo__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.logo__title {
  display: block;
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
}

.logo__subtitle {
  display: block;
  margin-top: 4px;
  color: var(--rojo);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 850;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--rojo);
}

.menu-btn {
  display: none;
  background: var(--rojo);
  color: var(--blanco);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  cursor: pointer;
}

/* BOTONES */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--rojo);
  color: var(--blanco);
  box-shadow: 0 14px 34px rgba(139, 30, 30, 0.22);
}

.btn--primary:hover {
  background: var(--rojo-oscuro);
}

.btn--secondary {
  background: var(--blanco);
  color: var(--texto);
  border-color: var(--borde);
}

.btn--secondary:hover {
  color: var(--rojo);
  border-color: var(--rojo);
}

.btn--light {
  background: var(--blanco);
  color: var(--rojo);
}

.btn--light:hover {
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.16);
}

.btn--outline-light {
  color: var(--blanco);
  border-color: rgba(255, 255, 255, 0.34);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.58);
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 74px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero::before {
  width: 340px;
  height: 340px;
  right: -120px;
  top: 60px;
  background: rgba(242, 198, 109, 0.45);
}

.hero::after {
  width: 360px;
  height: 360px;
  left: -160px;
  bottom: 0;
  background: rgba(139, 30, 30, 0.1);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(600px, 1.15fr);
  align-items: center;
  gap: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--borde);
  color: var(--rojo);
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(44, 27, 18, 0.08);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.hero p {
  max-width: 590px;
  margin-top: 24px;
  color: var(--texto-suave);
  font-size: 18px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* HERO IMAGEN ROTATIVA */

.hero-card {
  position: relative;
  width: 100%;
  max-width: 700px;
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: transparent;
  border-radius: 42px;
  padding: 0;
}

.hero-card__image {
  height: 500px;
  min-height: 500px;
  border: 16px solid var(--rojo);
  border-radius: 42px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--sombra);
}

.hero-card__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-card__photo--changing {
  opacity: 0.35;
  transform: scale(1.02);
}

.hero-card__image--logo {
  align-items: center;
  justify-content: center;
}

.hero-card__logo {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.photo-placeholder {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--rojo);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* CARTELES DE PROMOCIONES */

.promo-cards {
  width: calc(100% + 90px);
  margin-left: -45px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.promo-card {
  position: static;
  width: auto;
  min-height: 128px;
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: 24px;
  padding: 18px 20px;
  box-shadow: 0 18px 42px rgba(44, 27, 18, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.promo-card__label {
  display: none;
}

.promo-card__top {
  width: 100%;
  max-width: 230px;
  margin: 0 auto 8px;
  color: var(--texto-suave);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

.promo-card strong {
  display: block;
  width: 100%;
  margin: 0 auto 7px;
  color: var(--rojo);
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-align: center;
}

.promo-card span {
  display: block;
  width: 100%;
  max-width: 210px;
  margin: 0 auto;
  color: var(--texto-suave);
  font-size: 12.5px;
  line-height: 1.22;
  font-weight: 850;
  text-align: center;
}

/* SECCIONES GENERALES */

.section {
  padding: 78px 0;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section__head--center {
  justify-content: center;
  text-align: center;
}

.section__label {
  margin-bottom: 8px;
  color: var(--rojo);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section__label--light {
  color: #f5d597;
}

.section h2 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.section__intro {
  max-width: 430px;
  color: var(--texto-suave);
  line-height: 1.75;
}

.section__intro--spaced {
  margin-top: 18px;
}

/* =========================================================
   CATERING PARA EVENTOS
   ========================================================= */

.catering-section {
  padding-top: 18px;
  padding-bottom: 78px;
}

.catering-card {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;

  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: var(--radio-xl);

  padding: 52px 56px;

  text-align: center;

  box-shadow: var(--sombra-suave);

  overflow: hidden;
}

.catering-card::before {
  content: "";
  position: absolute;

  width: 220px;
  height: 220px;

  top: -130px;
  right: -90px;

  border-radius: 50%;

  background: rgba(242, 198, 109, 0.16);

  pointer-events: none;
}

.catering-card::after {
  content: "";
  position: absolute;

  width: 180px;
  height: 180px;

  bottom: -120px;
  left: -80px;

  border-radius: 50%;

  background: rgba(139, 30, 30, 0.045);

  pointer-events: none;
}

.catering-card__content {
  position: relative;
  z-index: 1;

  max-width: 760px;
  margin: 0 auto;
}

.catering-card .section__label {
  margin-bottom: 12px;
}

.catering-card h2 {
  max-width: none;
  margin: 0 auto;

  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;

  letter-spacing: -0.045em;
  font-weight: 950;
}

.catering-card__text {
  max-width: 650px;

  margin: 18px auto 0;

  color: var(--texto-suave);

  font-size: 18px;
  line-height: 1.7;
}

.catering-card__events {
  margin-top: 14px;

  color: var(--rojo);

  font-size: 14px;
  line-height: 1.5;

  font-weight: 900;
}

.catering-card__button {
  margin-top: 26px;
}

.catering-card__closing {
  margin-top: 20px;

  color: var(--texto-suave);

  font-size: 13px;
  line-height: 1.5;

  font-weight: 750;
}

/* CARTA: FILTROS */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 1px solid var(--borde);
  background: var(--blanco);
  color: var(--texto);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.filter-btn--link {
  text-decoration: none;
}

.filter-btn:hover {
  transform: translateY(-1px);
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--rojo);
  color: var(--blanco);
  border-color: var(--rojo);
}

/* TARJETAS GENERALES */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: var(--radio-xl);
  padding: 24px;
  box-shadow: var(--sombra-suave);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 30, 30, 0.22);
  box-shadow: 0 20px 48px rgba(44, 27, 18, 0.11);
}

.card__icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: #fff0d2;
  color: var(--rojo);
  font-size: 25px;
}

.card h3 {
  font-size: 21px;
  line-height: 1.1;
  font-weight: 950;
}

.card p {
  margin-top: 12px;
  color: var(--texto-suave);
  line-height: 1.75;
  font-size: 15px;
}

.card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--rojo);
  font-size: 14px;
  font-weight: 950;
}

/* TARJETAS DE EMPANADAS CON IMAGEN */

.empanada-card__image-wrap {
  width: 96px;
  height: 96px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.empanada-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

/* BOTONES DE SECCIÓN */

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* POSTRES Y DULCES */

.carta-subsection {
  margin-top: 70px;
  padding-top: 42px;
  border-top: 1px solid var(--borde);
}

.carta-subsection h3 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.carta-subsection p:last-child {
  max-width: 560px;
  margin-top: 16px;
  color: var(--texto-suave);
  line-height: 1.75;
}

.dessert-grid {
  margin-top: 28px;
}

.dessert-card__image-wrap {
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.dessert-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

/* HISTORIA */

.story {
  background: var(--texto);
  color: var(--blanco);
}

.story__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 44px;
}

.story__box {
  background: var(--crema);
  color: var(--texto);
  border-radius: var(--radio-xl);
  padding: 34px;
  box-shadow: var(--sombra);
}

.story__text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.9;
}

/* PRODUCTOS OFICIALES Y ARGENTINOS */

.products-cards {
  margin-top: 28px;
}

.products-cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.product-card__image-wrap {
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.product-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

/* UBICACIÓN */

.location-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 36px;
  background: var(--rojo);
  color: var(--blanco);
  box-shadow: var(--sombra);
}

.location-box__content {
  padding: 44px;
}

.location-box__content p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.contact-list a,
.contact-list span {
  color: rgba(255, 255, 255, 0.92);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.contact-list a:hover {
  color: #f5d597;
  transform: translateX(3px);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* MAPA */

.map-placeholder {
  min-height: 430px;
  background: #fff0d2;
  padding: 22px;
}

.map-placeholder__inner {
  width: 100%;
  height: 100%;
  min-height: 386px;
  border-radius: 26px;
  border: 2px dashed var(--dorado);
  background: rgba(255, 255, 255, 0.58);
  color: var(--texto);
  overflow: hidden;
}

.map-frame-wrapper {
  padding: 0;
  display: block;
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 386px;
  display: block;
  border: 0;
  filter: saturate(0.95) contrast(1.02);
}

.map-link {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.map-link:hover {
  transform: translateY(-4px);
  border-color: var(--rojo);
  box-shadow: 0 18px 45px rgba(44, 27, 18, 0.14);
}

.map-placeholder__icon {
  font-size: 42px;
  margin-bottom: 10px;
}

.map-placeholder__inner p {
  margin-top: 8px;
  color: var(--texto-suave);
}

.map-link__cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--rojo);
  color: var(--blanco);
  font-size: 14px;
  font-weight: 900;
}

/* FOOTER */

.footer {
  border-top: 1px solid var(--borde);
  padding: 30px 0;
  color: var(--texto-suave);
  font-size: 14px;
  font-weight: 650;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer__links a {
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--rojo);
}

/* BOTÓN FLOTANTE WHATSAPP */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rojo);
  color: var(--blanco);
  box-shadow: 0 18px 45px rgba(139, 30, 30, 0.35);
  font-size: 26px;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
}

/* ANIMACIONES */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE TABLET */

@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--blanco);
    border: 1px solid var(--borde);
    border-radius: 24px;
    padding: 12px;
    box-shadow: var(--sombra);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px;
    border-radius: 16px;
  }

  .nav a:hover {
    background: var(--crema);
  }

  .header .btn {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .hero {
    padding: 64px 0 74px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-card {
    max-width: none;
    justify-self: stretch;
  }

  .hero-card__image {
    height: 430px;
    min-height: 430px;
  }

  .promo-cards {
    width: 100%;
    margin-left: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section__head {
    display: block;
  }

  .section__intro {
    margin-top: 14px;
  }

  .story__grid,
  .location-box {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .map-placeholder {
    min-height: 380px;
  }

  .map-placeholder__inner,
  .map-frame {
    min-height: 340px;
  }
}

/* RESPONSIVE MÓVIL */

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .header__content {
    min-height: 70px;
  }

  .nav {
    top: 70px;
  }

  .logo__mark {
    width: 50px;
    height: 50px;
  }

  .logo__title {
    font-size: 18px;
  }

  .logo__subtitle {
    font-size: 9px;
  }

  .hero {
    padding: 52px 0 66px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero__actions,
  .location-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-card {
    max-width: none;
    gap: 14px;
    border-radius: 34px;
    padding: 0;
  }

  .hero-card__image {
    height: 360px;
    min-height: 360px;
    border: 12px solid var(--rojo);
    border-radius: 34px;
    padding: 0;
  }

  .promo-cards {
    width: 100%;
    margin-left: 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .promo-card {
    min-height: auto;
    padding: 16px 18px;
  }

  .promo-card__top {
    max-width: none;
    white-space: normal;
    font-size: 13px;
  }

  .promo-card strong {
    font-size: 30px;
  }

  .promo-card span {
    max-width: none;
    font-size: 12px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .section h2 {
    font-size: 38px;
  }

  .section-cta {
    margin-top: 26px;
  }

  .carta-subsection {
    margin-top: 54px;
    padding-top: 34px;
  }

  .carta-subsection h3 {
    font-size: 34px;
  }

  .empanada-card__image-wrap {
    width: 86px;
    height: 86px;
  }

  .product-card__image-wrap,
  .dessert-card__image-wrap {
    width: 68px;
    height: 68px;
  }

  .location-box {
    border-radius: 28px;
  }

  .location-box__content {
    padding: 30px 22px;
  }

  .map-placeholder {
    min-height: 330px;
    padding: 14px;
  }

  .map-placeholder__inner,
  .map-frame {
    min-height: 300px;
    border-radius: 22px;
  }

  .footer__content {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* MÓVILES MUY PEQUEÑOS */

@media (max-width: 420px) {
  .hero h1 {
    font-size: 42px;
  }

  .photo-placeholder {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .promo-card strong {
    font-size: 29px;
  }

  .empanada-card__image-wrap {
    width: 80px;
    height: 80px;
  }
}