   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      width: 100%;
      min-height: 100vh;
      overflow-x: hidden;
      font-family: Inter, Roboto, "Segoe UI", Arial, sans-serif;
      background: #f8f2e8;
      color: #3f3a36;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .page {
      width: 100%;
      overflow: hidden;
      background: #f8f2e8;
    }




    /* ================= PAGE LOADER ================= */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(circle at 50% 40%, rgba(255, 250, 242, 0.92) 0%, rgba(248, 242, 232, 0.78) 38%, transparent 68%),
    linear-gradient(135deg, #f8f2e8 0%, #efe1cb 100%);

  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.65s ease,
    visibility 0.65s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-card {
  position: relative;

  width: min(100% - 48px, 360px);
  min-height: 360px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  border-radius: 50%;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(185, 143, 82, 0.18);

  box-shadow:
    0 34px 90px rgba(80, 65, 50, 0.16),
    inset 0 0 60px rgba(255, 255, 255, 0.42);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  animation: loaderFloat 2.8s ease-in-out infinite;
}

.loader-logo {
  margin-bottom: 34px;

  font-size: 34px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;

  color: #373431;
}

.loader-logo span {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #b98f52;
}

/* ================= MAGIC WAND ================= */

.magic-wand {
  position: relative;

  width: 130px;
  height: 130px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 26px;
}

.wand-stick {
  position: absolute;

  width: 96px;
  height: 8px;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    #373431 0%,
    #5c5044 42%,
    #b98f52 43%,
    #d8c3a5 100%
  );

  transform: rotate(-38deg);
  transform-origin: center;

  box-shadow: 0 10px 22px rgba(80, 65, 50, 0.18);

  animation: wandMove 1.8s ease-in-out infinite;
}

.wand-star {
  position: absolute;
  top: 22px;
  right: 24px;

  font-size: 32px;
  color: #b98f52;

  animation: starPulse 1.4s ease-in-out infinite;
}

.spark {
  position: absolute;

  color: #c7a66f;
  line-height: 1;

  animation: sparkBlink 1.6s ease-in-out infinite;
}

.spark-1 {
  top: 18px;
  left: 28px;
  font-size: 16px;
  animation-delay: 0s;
}

.spark-2 {
  top: 46px;
  right: 12px;
  font-size: 14px;
  animation-delay: 0.35s;
}

.spark-3 {
  bottom: 28px;
  left: 34px;
  font-size: 13px;
  animation-delay: 0.7s;
}

/* ================= TEXT ================= */

.loader-card p {
  max-width: 260px;
  margin: 0;

  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.02em;

  color: #62584e;
}

/* ================= ANIMATIONS ================= */

@keyframes loaderFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes wandMove {
  0%, 100% {
    transform: rotate(-38deg) translateY(0);
  }

  50% {
    transform: rotate(-32deg) translateY(-4px);
  }
}

@keyframes starPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.78;
  }

  50% {
    transform: scale(1.18) rotate(12deg);
    opacity: 1;
  }
}

@keyframes sparkBlink {
  0%, 100% {
    opacity: 0.25;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 520px) {
  .loader-card {
    width: 280px;
    min-height: 280px;
  }

  .loader-logo {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .magic-wand {
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
  }

  .wand-stick {
    width: 82px;
    height: 7px;
  }

  .wand-star {
    font-size: 28px;
  }

  .loader-card p {
    font-size: 14px;
  }
}





    /* ================= TOP BANNER ================= */

.top-banner {
  width: 100%;
  background: #d8c3a5;
  color: #3d3328;
  position: relative;
  z-index: 1000;
  font-family: inherit;
}

.top-banner-inner {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  min-height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  position: relative;
  padding: 10px 46px;
}

.top-banner p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: center;
}

.top-banner p strong {
  font-weight: 600;
  color: #2f281f;
}

.top-banner-link {
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #3d3328;
  text-decoration: none;

  border-bottom: 1px solid rgba(61, 51, 40, 0.45);
  padding-bottom: 3px;

  transition: opacity 0.25s ease, border-color 0.25s ease;
}

.top-banner-link:hover {
  opacity: 0.72;
  border-color: rgba(61, 51, 40, 0.85);
}

.top-banner-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 30px;
  height: 30px;

  border: 0;
  background: transparent;
  color: #3d3328;

  font-size: 24px;
  line-height: 1;
  font-weight: 300;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  opacity: 0.72;

  transition: opacity 0.25s ease, transform 0.25s ease;
}

.top-banner-close:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}

/* cuando se oculta con JS */
.top-banner.is-hidden {
  display: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .top-banner-inner {
    width: 100%;
    min-height: auto;
    padding: 11px 42px 11px 18px;

    justify-content: flex-start;
    gap: 10px;
  }

  .top-banner p {
    font-size: 12px;
    text-align: left;
  }

  .top-banner-link {
    font-size: 11px;
    white-space: nowrap;
  }

  .top-banner-close {
    right: 8px;
  }
}

@media (max-width: 520px) {
  .top-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;

    padding: 12px 44px 12px 18px;
  }

  .top-banner p {
    font-size: 12px;
    max-width: 95%;
  }

  .top-banner-link {
    font-size: 10.5px;
  }
}

    /* ================= NAVBAR ================= */

    .navbar {
      width: 100%;
      height: 72px;
      padding: 0 6vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #fbf6ee;
      position: relative;
      z-index: 20;
      border-bottom: 1px solid rgba(80, 65, 50, 0.08);
    }

    .logo {
      font-size: 28px;
      line-height: 1;
      font-weight: 600;
      letter-spacing: -0.05em;
      color: #8f7a62;
      white-space: nowrap;
    }

    .logo span {
      font-style: italic;
      font-weight: 300;
      color: #bca98f;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 42px;
      list-style: none;
    }

    .nav-links a {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #4a4541;
    }

    .nav-links a:hover {
      color: #9a8469;
    }

    .nav-cta {
      height: 38px;
      padding: 0 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(100, 82, 62, 0.35);
      color: #4a4541;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: 0.25s ease;
    }

    .nav-cta:hover {
      background: #c9b89d;
      color: #fffaf2;
    }

    .mobile-menu-label {
      display: none;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #4a4541;
    }

/* ================= HERO ================= */

.hero {
    width: 100%;
    min-height: 88vh;
    display: grid;
    grid-template-columns: 55% 45%;
    background: linear-gradient(135deg,#f8f1e8 0%,#efe1cb 100%);
    overflow: hidden;
    align-items: center;
}

/* ================= IMAGE ================= */

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    /* antes era 4vw, bajamos para controlar mejor */
    padding: 3vw 4vw;
}

.hero-image img {
    width: min(100%, 520px);
    height: auto;

    /* antes 760px era demasiado grande */
    max-height: 580px;

    object-fit: contain;
    object-position: center;
    display: block;
    z-index: 2;

    transition: transform .5s ease;
}

.hero-image img:hover {
    transform: scale(1.025);
}

/* fondo decorativo */

.hero-image::before {
    content: "";
    position: absolute;

    /* también lo achicamos para que acompañe la imagen */
    width: min(46vw, 560px);
    height: min(46vw, 560px);

    background: radial-gradient(circle,
        rgba(255,255,255,.75) 0%,
        rgba(255,255,255,.35) 45%,
        transparent 75%
    );

    border-radius: 50%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top right,
        rgba(255,255,255,.3),
        transparent 45%);

    pointer-events: none;
    z-index: 3;
}

/* ================= CONTENT ================= */

.hero-content{

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;

    padding:0 8vw 0 3vw;

}

/* ================= TEXT ================= */

.eyebrow{

    margin-bottom:18px;

    color:#9c8265;

    font-size:13px;

    font-weight:700;

    letter-spacing:.22em;

    text-transform:uppercase;

}

.hero h1{

    max-width:650px;

    color:#37322f;

    font-size:clamp(52px,5vw,82px);

    line-height:.95;

    letter-spacing:-0.05em;

    font-weight:400;

    margin-bottom:28px;

}

.hero p{

    max-width:520px;

    color:#5f554b;

    font-size:18px;

    line-height:1.8;

    margin-bottom:42px;

}

/* ================= BUTTONS ================= */

.hero-actions{

    display:flex;

    gap:16px;

    flex-wrap:wrap;

}

.btn{

    min-width:220px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:0 32px;

    border:1px solid rgba(70,60,48,.35);

    background:transparent;

    color:#3d3833;

    text-transform:uppercase;

    font-size:13px;

    font-weight:700;

    letter-spacing:.08em;

    transition:.3s;

}

.btn:hover{

    background:#3d3833;

    color:white;

}

.btn-filled{

    background:#c9b89d;

    color:white;

    border-color:#c9b89d;

}

.btn-filled:hover{

    background:#3d3833;

    border-color:#3d3833;

}

/* ================= RESPONSIVE ================= */

@media (max-width:960px){

.hero{

    grid-template-columns:1fr;

    min-height:auto;

}

.hero-image{

    order:1;

    padding:40px 25px 10px;

}

.hero-image img{

    max-height:420px;

}

.hero-content{

    order:2;

    padding:40px 8vw 70px;

    text-align:center;

    align-items:center;

}

.hero h1{

    font-size:clamp(42px,10vw,58px);

}

.hero p{

    font-size:16px;

}

.hero-actions{

    justify-content:center;

}

.btn{

    width:100%;

    min-width:unset;

}

}
    /* ================= SECTIONS ================= */

    .section {
      width: 100%;
      padding: 110px 6vw;
      background: #fbf6ee;
    }

    .section.alt {
      background: #f3eadc;
    }

    .section-inner {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
    }

    .section-title {
      max-width: 760px;
      margin-bottom: 54px;
    }

    .section-title .label {
      margin-bottom: 16px;
      display: block;
      color: #9a8469;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .section-title h2 {
      color: #373431;
      font-size: clamp(36px, 4vw, 62px);
      line-height: 1;
      font-weight: 400;
      letter-spacing: -0.06em;
      margin-bottom: 22px;
    }

    .section-title p {
      max-width: 660px;
      color: #62584e;
      font-size: 17px;
      line-height: 1.75;
    }

/* ================= CONCEPTO ================= */

.concept-section {
  background: #fffaf2;
}

.concept-title {
  max-width: 820px;
}

/* dos columnas */
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

/* columna izquierda */
.concept-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* cards */
.concept-card {
  position: relative;

  padding: 32px;
  background: #f3eadc;
  border: 1px solid rgba(80, 65, 50, 0.08);

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.concept-card:hover {
  transform: translateY(-4px);
  background: #efe1cb;
  box-shadow: 0 18px 44px rgba(80, 65, 50, 0.08);
}

.concept-card-main {
  min-height: 320px;
  justify-content: flex-end;

  background:
    radial-gradient(circle at top right, rgba(255, 250, 242, 0.9) 0%, transparent 46%),
    #efe1cb;
}

/* cards chicas abajo */
.concept-small-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.concept-small-grid .concept-card {
  min-height: 220px;
}

.concept-number {
  position: absolute;
  top: 24px;
  left: 28px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #b99862;
}

.concept-card h3 {
  margin: 0 0 14px;

  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.04em;

  color: #373431;
}

.concept-small-grid .concept-card h3 {
  font-size: 24px;
}

.concept-card p {
  margin: 0;

  font-size: 15px;
  line-height: 1.7;
  color: #62584e;
}

.concept-link {
  width: fit-content;
  margin-top: 26px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #8f6f43;
  text-decoration: none;

  border-bottom: 1px solid rgba(143, 111, 67, 0.42);
  padding-bottom: 5px;

  transition: color 0.25s ease, border-color 0.25s ease;
}

.concept-link:hover {
  color: #373431;
  border-color: #373431;
}

/* imagen derecha */
.concept-image {
  position: relative;

  min-height: 564px;
  overflow: hidden;

  background: #efe1cb;
  border: 1px solid rgba(80, 65, 50, 0.08);
}

.concept-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.6s ease;
}

.concept-image:hover img {
  transform: scale(1.04);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .concept-grid {
    grid-template-columns: 1fr;
  }

  .concept-image {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .concept-small-grid {
    grid-template-columns: 1fr;
  }

  .concept-card,
  .concept-card-main {
    min-height: auto;
    padding: 30px 24px;
  }

  .concept-card-main {
    min-height: 300px;
  }

  .concept-card h3,
  .concept-small-grid .concept-card h3 {
    font-size: 25px;
  }

  .concept-card p {
    font-size: 14.5px;
  }

  .concept-image {
    min-height: 310px;
  }
}


/* Ocultar imagen de concepto en mobile */
@media (max-width: 640px) {
  .concept-image {
    display: none;
  }

  .concept-grid {
    grid-template-columns: 1fr;
  }

  .concept-content {
    gap: 18px;
  }

  .concept-small-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .concept-card,
  .concept-card-main {
    min-height: auto;
    padding: 28px 22px;
  }

  .concept-card-main {
    min-height: auto;
  }
}



    /* HOW */

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .step {
      min-height: 270px;
      padding: 32px 28px;
      background: #fbf6ee;
      border: 1px solid rgba(80, 65, 50, 0.10);
    }

    .step-number {
      display: block;
      color: #b7a184;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.12em;
      margin-bottom: 34px;
    }

    .step h3 {
      color: #373431;
      font-size: 24px;
      line-height: 1.1;
      font-weight: 400;
      letter-spacing: -0.04em;
      margin-bottom: 16px;
    }

    .step p {
      color: #62584e;
      font-size: 15px;
      line-height: 1.65;
    }



 /* ================= BOXES GRID ================= */

.boxes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ================= CARD ================= */

.box-card {
  min-height: 420px;
  padding: 24px;
  background: #f3eadc;
  border: 1px solid rgba(80, 65, 50, 0.08);
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
  cursor: pointer;
}

.box-card:hover {
  transform: translateY(-4px);
  background: #efe1cb;
}

/* ================= IMAGE / CAROUSEL ================= */

.box-image {
  position: relative;
  width: 100%;
  height: 250px;
  margin-bottom: 16px;
  background: #f7f1e7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.box-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.box-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease;
}

.box-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* ================= CAROUSEL BUTTONS ================= */

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 34px;
  height: 34px;

  border: 1px solid rgba(80, 65, 50, 0.12);
  border-radius: 50%;

  background: rgba(255, 250, 242, 0.78);
  color: #373431;

  font-size: 28px;
  line-height: 1;
  font-weight: 300;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 5;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  opacity: 0;
  transition:
    opacity 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.box-card:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: #fffaf2;
  transform: translateY(-50%) scale(1.06);
}

/* ================= CAROUSEL DOTS ================= */

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 6px;

  z-index: 6;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(55, 52, 49, 0.24);
  transition: 0.25s ease;
}

.carousel-dot.active {
  width: 18px;
  border-radius: 999px;
  background: rgba(55, 52, 49, 0.72);
}

/* ================= TAG ================= */

.box-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8f7a62;
  backdrop-filter: blur(6px);
  z-index: 7;
}

/* ================= TEXT ================= */

.box-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #373431;
}

.box-card p {
  font-size: 15px;
  color: #62584e;
  line-height: 1.6;
}

/* ================= BUTTON ================= */

.box-btn {
  margin-top: auto;
  padding: 13px 18px;
  border: none;
  background: #373431;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}

.box-btn:hover {
  background: #000;
}

/* ================= MODAL ================= */

.box-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.box-modal.active {
  display: flex;
}

.box-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 20, 16, 0.62);
  backdrop-filter: blur(6px);
}

.box-modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 34px;
  background: #fffaf2;
  border: 1px solid rgba(80, 65, 50, 0.12);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  animation: modalFade 0.25s ease;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= CLOSE ================= */

.box-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  color: #5a5047;
  cursor: pointer;
}

.box-modal-close:hover {
  color: #000;
}

/* ================= MODAL TEXT ================= */

.box-modal-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: #efe1cb;
  color: #8f7a62;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.box-modal-content h3 {
  margin-bottom: 10px;
  font-size: 30px;
  color: #373431;
}

.box-modal-description {
  margin-bottom: 24px;
  color: #62584e;
  font-size: 15px;
  line-height: 1.7;
}

/* ================= QUANTITY ================= */

.quantity-selector {
  padding: 18px;
  margin-bottom: 22px;
  background: #f3eadc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.quantity-selector span {
  font-size: 14px;
  font-weight: 700;
  color: #373431;
}

.quantity-options {
  display: flex;
  gap: 8px;
}

.quantity-btn {
  min-width: 52px;
  height: 40px;
  border: 1px solid rgba(80, 65, 50, 0.2);
  background: #fffaf2;
  color: #373431;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.quantity-btn:hover,
.quantity-btn.active {
  background: #373431;
  color: #fff;
}

/* ================= DETAILS ================= */

.box-detail-block {
  margin-bottom: 22px;
}

.box-detail-block h4 {
  margin-bottom: 12px;
  font-size: 15px;
  color: #373431;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.box-detail-block ul {
  padding-left: 18px;
  margin: 0;
}

.box-detail-block li {
  margin-bottom: 8px;
  color: #62584e;
  font-size: 15px;
  line-height: 1.5;
}

/* ================= PRICE ================= */

.box-price-row {
  margin: 24px 0;
  padding: 18px 0;
  border-top: 1px solid rgba(80, 65, 50, 0.12);
  border-bottom: 1px solid rgba(80, 65, 50, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.box-price-row span {
  font-size: 14px;
  color: #62584e;
}

.box-price-row strong {
  font-size: 24px;
  color: #373431;
}

/* ================= WHATSAPP CTA ================= */

.box-whatsapp-btn {
  width: 100%;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #373431;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.box-whatsapp-btn:hover {
  background: #000;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 980px) {
  .boxes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-btn {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .boxes-grid {
    grid-template-columns: 1fr;
  }

  .box-card {
    min-height: auto;
    padding: 18px;
  }

  .box-image {
    height: 230px;
  }

  .box-card h3 {
    font-size: 23px;
  }

  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 25px;
  }

  .carousel-prev {
    left: 8px;
  }

  .carousel-next {
    right: 8px;
  }

  .box-modal {
    padding: 14px;
    align-items: flex-end;
  }

  .box-modal-content {
    max-height: 88vh;
    padding: 28px 22px;
  }

  .box-modal-content h3 {
    font-size: 26px;
  }

  .quantity-selector {
    align-items: flex-start;
    flex-direction: column;
  }

  .quantity-options,
  .quantity-btn {
    width: 100%;
  }

  .quantity-btn {
    flex: 1;
  }

  .box-price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}




    /* BENEFITS */

    .benefits {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 70px;
      align-items: start;
    }

    .benefits-copy h2 {
      color: #373431;
      font-size: clamp(36px, 4vw, 62px);
      line-height: 1;
      font-weight: 400;
      letter-spacing: -0.06em;
      margin-bottom: 24px;
    }

    .benefits-copy p {
      color: #62584e;
      font-size: 17px;
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .benefit-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .benefit {
      padding: 24px;
      background: #fbf6ee;
      border: 1px solid rgba(80, 65, 50, 0.10);
      color: #4f4943;
      font-size: 15px;
      line-height: 1.4;
      font-weight: 700;
    }

/* ================= FINAL CTA PROMO ================= */

.final-cta {
  width: 100%;
  margin: 0;
  padding: 96px 0;
  background: linear-gradient(135deg, #efe1cb 0%, #f8f2e8 100%);
  color: #3f3a36;
  overflow: hidden;
}

.final-cta-inner {
  width: min(100% - 56px, 1180px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.final-cta-content {
  max-width: 620px;
}

.final-cta-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;
  padding: 8px 12px;

  background: rgba(255, 250, 242, 0.68);
  color: #9a7a4d;

  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin: 0 0 20px;

  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.05em;

  color: #373431;
}

.final-cta p {
  max-width: 560px;
  margin: 0 0 30px;

  font-size: 16px;
  line-height: 1.75;
  color: #62584e;
}

/* ================= BANNER LINK ================= */

.final-cta-banner-link {
  display: block;
  width: 100%;
  min-width: 0;

  color: inherit;
  text-decoration: none;

  cursor: pointer;
}

.final-cta-banner-link:visited,
.final-cta-banner-link:hover,
.final-cta-banner-link:focus,
.final-cta-banner-link:active {
  color: inherit;
  text-decoration: none;
}

.final-cta-banner-link:focus-visible {
  outline: 2px solid rgba(185, 143, 82, 0.55);
  outline-offset: 8px;
}

/* ================= BANNER VISUAL ================= */

.final-cta-banner {
  width: 100%;
  min-height: 360px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

.final-cta-banner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;

  width: 320px;
  height: 320px;

  transform: translate(-50%, -50%);

  background: radial-gradient(
    circle,
    rgba(255, 250, 242, 0.92) 0%,
    rgba(255, 250, 242, 0.48) 48%,
    transparent 72%
  );

  border-radius: 50%;
  pointer-events: none;
}

.promo-card {
  position: relative;
  z-index: 2;

  width: 330px;
  height: 330px;
  min-width: 330px;
  min-height: 330px;

  border-radius: 50%;
  background: #fffaf2;
  border: 1px solid rgba(154, 122, 77, 0.22);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  box-shadow: 0 28px 70px rgba(80, 65, 50, 0.16);
  text-align: center;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.promo-card span {
  display: block;

  margin: 0;

  font-size: 92px;
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.08em;

  color: #b98f52;
}

.promo-card p {
  max-width: none;
  margin: 8px 0 10px;

  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;

  color: #373431;
}

.promo-card small {
  display: block;

  margin: 0;

  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: #9a7a4d;
}

.final-cta-banner-link:hover .promo-card {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 34px 80px rgba(80, 65, 50, 0.22);
  border-color: rgba(154, 122, 77, 0.34);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .final-cta {
    padding: 76px 0;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
  }

  .final-cta-content {
    max-width: 100%;
  }

  .final-cta p {
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta-banner {
    min-height: 280px;
  }

  .final-cta-banner::before {
    width: 280px;
    height: 280px;
  }

  .promo-card {
    width: 260px;
    height: 260px;
    min-width: 260px;
    min-height: 260px;
  }

  .promo-card span {
    font-size: 72px;
  }

  .promo-card p {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .final-cta {
    padding: 64px 0;
  }

  .final-cta-inner {
    width: min(100% - 32px, 1180px);
    gap: 38px;
  }

  .final-cta h2 {
    font-size: 38px;
  }

  .final-cta p {
    font-size: 15px;
  }

  .final-cta-banner {
    min-height: 245px;
  }

  .final-cta-banner::before {
    width: 250px;
    height: 250px;
  }

  .promo-card {
    width: 230px;
    height: 230px;
    min-width: 230px;
    min-height: 230px;
  }

  .promo-card span {
    font-size: 64px;
  }

  .promo-card p {
    font-size: 24px;
  }

  .promo-card small {
    font-size: 10.5px;
  }
}







/* ================= FOOTER ================= */

.footer {
  width: 100%;
  padding: 70px 24px 26px;
  background: #373431;
  color: #fffaf2;
}

.footer-inner {
  width: min(100%, 1180px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 54px;
  align-items: start;
}

.footer-logo {
  margin-bottom: 18px;

  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;

  color: #fffaf2;
}

.footer-logo span {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.footer-brand p {
  max-width: 430px;
  margin: 0;

  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 250, 242, 0.72);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links a {
  width: fit-content;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: rgba(255, 250, 242, 0.76);
  text-decoration: none;

  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: #fffaf2;
  transform: translateX(4px);
}

.footer-quote {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 250, 242, 0.18);
}

.footer-quote p {
  margin: 0;

  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.04em;

  color: #efe1cb;
}

.footer-bottom {
  width: min(100%, 1180px);
  margin: 54px auto 0;
  padding-top: 22px;

  border-top: 1px solid rgba(255, 250, 242, 0.12);

  display: flex;
  justify-content: space-between;
  gap: 18px;

  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 250, 242, 0.5);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .footer {
    padding: 56px 20px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-quote {
    padding-left: 0;
    padding-top: 26px;
    border-left: 0;
    border-top: 1px solid rgba(255, 250, 242, 0.14);
  }

  .footer-bottom {
    margin-top: 38px;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .footer-logo {
    font-size: 30px;
  }

  .footer-brand p {
    font-size: 14px;
  }

  .footer-quote p {
    font-size: 26px;
  }
}



  /* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 999;

  width: 58px;
  height: 58px;
  min-width: 58px;
  max-width: 58px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #c9b89d;
  color: #fffaf2;

  border: 1px solid rgba(90, 70, 50, 0.20);
  border-radius: 50%;

  box-shadow: 0 18px 42px rgba(63, 58, 54, 0.18);

  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  animation: showWhatsapp 0.7s ease forwards;
  animation-delay: 5s;

  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  background: #3d3833;
  color: #fbf6ee;
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(63, 58, 54, 0.24);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  display: block;
  flex: 0 0 auto;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

@keyframes showWhatsapp {
  to {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .navbar {
    padding: 0 32px;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero-content {
    padding: 0 6vw;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .boxes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 860px) {
  .navbar {
    height: 66px;
    padding: 0 22px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-label {
    display: block;
  }

  .logo {
    font-size: 25px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    min-height: 410px;
  }

  .hero-content {
    min-height: 470px;
    padding: 70px 28px 130px;
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .hero p {
    font-size: 16px;
  }

  .ribbon {
    bottom: 58px;
    left: -18%;
    width: 136%;
    height: 110px;
  }

  .ribbon-path {
    stroke-width: 30;
  }

  .section {
    padding: 82px 28px;
  }

  .concept-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .concept-card {
    min-height: auto;
    padding: 36px;
  }

  .concept-image {
    min-height: 340px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .hero-image {
    min-height: 340px;
  }

  .hero-content {
    min-height: 440px;
    padding: 56px 22px 120px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero p {
    font-size: 15px;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-actions {
    width: 100%;
  }

  .ribbon {
    bottom: 50px;
    left: -34%;
    width: 168%;
    height: 100px;
  }

  .ribbon text {
    font-size: 13px;
  }

  .ribbon-path {
    stroke-width: 28;
  }

  .steps,
  .boxes-grid,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .box-card {
    min-height: 300px;
  }

  .final-cta {
    padding: 90px 24px;
  }

  .whatsapp-float {
    right: 18px;
    left: auto;
    bottom: 18px;

    width: 54px;
    height: 54px;
    min-width: 54px;
    max-width: 54px;

    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-icon {
    width: 25px;
    height: 25px;
  }
}