:root {
  --olivo: #3f493b;
  --olivo-oscuro: #1d241d;
  --dorado: #c6a35b;
  --dorado-claro: #ead9ae;
  --crema: #f7f1e7;
  --crema-claro: #fcfaf6;
  --blanco: #ffffff;
  --texto: #20221f;
  --texto-suave: #67675f;
  --borde: rgba(121, 98, 48, 0.2);
  --sombra: 0 22px 60px rgba(31, 34, 29, 0.12);
  --ancho: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  color: var(--texto);
  background: var(--crema-claro);
  font-family: "Montserrat", sans-serif;
  line-height: 1.65;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.contenedor {
  width: min(calc(100% - 2rem), var(--ancho));
  margin-inline: auto;
}

.barra-superior {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 250, 246, 0.9);
  border-bottom: 1px solid var(--borde);
  backdrop-filter: blur(16px);
}

.navegacion {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.marca {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.marca-monograma {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--dorado);
  border-radius: 50%;
  color: var(--dorado);
  background: var(--olivo-oscuro);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.marca-texto strong,
.marca-texto small {
  display: block;
}

.marca-texto strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1;
}

.marca-texto small {
  margin-top: 0.25rem;
  color: var(--texto-suave);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.menu a:hover {
  color: var(--dorado);
}

.boton {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border: 1px solid var(--olivo-oscuro);
  border-radius: 999px;
  color: var(--blanco);
  background: var(--olivo-oscuro);
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.boton:hover {
  transform: translateY(-2px);
  background: var(--olivo);
  box-shadow: 0 12px 28px rgba(29, 36, 29, 0.18);
}

.boton-secundario {
  color: var(--olivo-oscuro);
  background: transparent;
  border-color: var(--dorado);
}

.boton-compacto {
  min-height: 42px;
  padding-inline: 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 6rem;
  background: var(--crema);
}

.hero-fondo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(198, 163, 91, 0.2), transparent 25rem),
    radial-gradient(circle at 90% 15%, rgba(63, 73, 59, 0.12), transparent 30rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 55%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 4rem;
}

.sobrelinea {
  color: var(--dorado);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.02;
}

h1 {
  margin-top: 0.7rem;
  font-size: clamp(4rem, 9vw, 7.6rem);
  font-weight: 600;
  letter-spacing: -0.05em;
}

h1 span {
  color: var(--olivo);
}

.hero-lema {
  margin-top: 0.55rem;
  color: var(--dorado);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-descripcion {
  max-width: 620px;
  margin-top: 1.5rem;
  color: var(--texto-suave);
  font-size: 1.05rem;
}

.acciones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.microtexto {
  margin-top: 1.2rem;
  color: var(--texto-suave);
  font-size: 0.76rem;
}

.hero-visual {
  position: relative;
}

.hero-marco {
  overflow: hidden;
  padding: 0.7rem;
  border: 1px solid var(--dorado);
  border-radius: 200px 200px 26px 26px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--sombra);
}

.hero-marco img {
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
  border-radius: 190px 190px 20px 20px;
}

.sello {
  position: absolute;
  left: -2rem;
  bottom: 2rem;
  max-width: 240px;
  padding: 1rem 1.2rem;
  border: 1px solid var(--dorado);
  color: var(--dorado-claro);
  background: var(--olivo-oscuro);
  box-shadow: var(--sombra);
}

.sello span,
.sello strong {
  display: block;
}

.sello span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
}

.sello strong {
  margin-top: 0.25rem;
  color: var(--blanco);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

section {
  padding: 6rem 0;
}

.presentacion {
  background: var(--olivo-oscuro);
}

.presentacion-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
  color: var(--blanco);
}

.presentacion h2,
.encabezado-seccion h2,
.compra h2,
.contacto h2 {
  margin-top: 0.7rem;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.presentacion-texto {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.03rem;
}

.presentacion-texto p + p {
  margin-top: 1rem;
}

.seccion-productos {
  background: var(--crema-claro);
}

.seccion-alterna {
  background: var(--crema);
}

.encabezado-seccion {
  max-width: 760px;
  margin-bottom: 2.8rem;
}

.encabezado-seccion > p:last-child {
  margin-top: 1rem;
  color: var(--texto-suave);
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.productos-grid-tres {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.producto {
  overflow: hidden;
  border: 1px solid var(--borde);
  border-radius: 24px;
  background: var(--blanco);
  box-shadow: 0 14px 35px rgba(31, 34, 29, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.producto:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra);
}

.producto-imagen {
  width: 100%;
  padding: 0;
  border: 0;
  background: #f4f0e8;
  cursor: zoom-in;
}

.producto-imagen img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.producto:hover .producto-imagen img {
  transform: scale(1.025);
}

.producto-horizontal .producto-imagen img {
  aspect-ratio: 1 / 1.08;
}

.producto-info {
  padding: 1.25rem 1.35rem 1.4rem;
}

.producto-categoria {
  color: var(--dorado);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.producto h3 {
  margin-top: 0.25rem;
  font-size: 2rem;
  font-weight: 600;
}

.producto-pie {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--borde);
}

.producto-pie strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.producto-pie a {
  color: var(--olivo);
  font-size: 0.78rem;
  font-weight: 700;
}

.producto-pie a:hover {
  color: var(--dorado);
}

.compra {
  color: var(--blanco);
  background: var(--olivo-oscuro);
}

.compra-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.compra-intro > p:not(.sobrelinea) {
  margin: 1rem 0 1.6rem;
  color: rgba(255, 255, 255, 0.72);
}

.compra .boton {
  color: var(--olivo-oscuro);
  background: var(--dorado-claro);
  border-color: var(--dorado-claro);
}

.pasos {
  display: grid;
  gap: 1rem;
}

.paso {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: 1.35rem;
  border: 1px solid rgba(234, 217, 174, 0.25);
  background: rgba(255, 255, 255, 0.035);
}

.paso > span {
  color: var(--dorado);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.paso h3 {
  font-size: 1.7rem;
}

.paso p {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.contacto {
  background: var(--crema);
}

.contacto-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--dorado);
  background: rgba(255, 255, 255, 0.55);
}

.contacto-panel > div:first-child > p:last-child {
  margin-top: 1rem;
  color: var(--texto-suave);
}

.contacto-datos {
  display: grid;
  gap: 0.8rem;
}

.contacto-datos a {
  padding: 1rem;
  border-bottom: 1px solid var(--borde);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
}

footer {
  color: rgba(255, 255, 255, 0.72);
  background: #151a15;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding: 3.5rem 0 2rem;
}

.footer-grid strong {
  color: var(--blanco);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.footer-grid p {
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: var(--dorado);
}

.footer-final {
  padding: 1.2rem 0 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.whatsapp-flotante {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--dorado);
  border-radius: 50%;
  color: var(--blanco);
  background: var(--olivo-oscuro);
  box-shadow: var(--sombra);
  font-weight: 700;
}

dialog {
  width: min(92vw, 900px);
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

dialog::backdrop {
  background: rgba(11, 14, 11, 0.85);
  backdrop-filter: blur(5px);
}

dialog img {
  max-height: 90vh;
  object-fit: contain;
}

.cerrar-modal {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--blanco);
  background: rgba(0, 0, 0, 0.66);
  font-size: 1.4rem;
  cursor: pointer;
}

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

.revelar.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu {
    display: none;
  }

  .hero-grid,
  .presentacion-grid,
  .compra-grid,
  .contacto-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 3rem;
  }

  .hero-visual {
    max-width: 720px;
  }

  .productos-grid-tres {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contacto-panel {
    gap: 1.5rem;
  }
}

@media (max-width: 650px) {
  .contenedor {
    width: min(calc(100% - 1.2rem), var(--ancho));
  }

  .marca-texto small,
  .navegacion > .boton {
    display: none;
  }

  .hero {
    padding: 4.5rem 0 4rem;
  }

  .hero-grid {
    gap: 2.4rem;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 5.2rem);
  }

  .hero-lema {
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .sello {
    left: 0.8rem;
    bottom: 1rem;
  }

  section {
    padding: 4.3rem 0;
  }

  .productos-grid,
  .productos-grid-tres,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .producto-imagen img,
  .producto-horizontal .producto-imagen img {
    aspect-ratio: auto;
  }

  .producto-pie strong {
    font-size: 1.75rem;
  }

  .footer-grid {
    gap: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .revelar {
    opacity: 1;
    transform: none;
  }
}
