   * {
      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;
  overflow: hidden;
}

.top-banner-track {
  position: relative;
  width: 100%;
  min-height: 44px;

  display: flex;
  align-items: center;

  padding-right: 46px;
  overflow: hidden;
}

.top-banner-marquee {
  width: 100%;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.top-banner-marquee-content {
  display: flex;
  align-items: center;
  gap: 18px;

  min-width: max-content;

  padding: 12px 18px;

  animation: topBannerScroll 28s linear infinite;
}

.top-banner:hover .top-banner-marquee-content {
  animation-play-state: paused;
}

.top-banner-marquee-content span {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.top-banner-marquee-content strong {
  font-weight: 700;
  color: #2f281f;
}

.top-banner-link {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  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: 12px;
  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);
}

.top-banner.is-hidden {
  display: none;
}

/* movimiento */

@keyframes topBannerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .top-banner-track {
    min-height: 42px;
    padding-right: 44px;
  }

  .top-banner-marquee-content {
    gap: 14px;
    padding: 11px 14px;
    animation-duration: 24s;
  }

  .top-banner-marquee-content span {
    font-size: 12px;
  }

  .top-banner-link {
    font-size: 11px;
  }

  .top-banner-close {
    right: 8px;
  }
}

@media (max-width: 520px) {
  .top-banner-track {
    min-height: 40px;
  }

  .top-banner-marquee-content {
    gap: 12px;
    padding: 10px 12px;
    animation-duration: 20s;
  }

  .top-banner-marquee-content span {
    font-size: 11.5px;
  }

  .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: 99999;

  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;
  text-decoration: none;
  position: relative;
  z-index: 100002;
}

.logo span {
  font-style: italic;
  font-weight: 300;
  color: #bca98f;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;

  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a4541;
  text-decoration: none;
}

.nav-links a:hover {
  color: #9a8469;
}

/* ================= HAMBURGER ================= */

.nav-toggle {
  display: none;

  width: 42px;
  height: 42px;
  padding: 0;

  border: 1px solid rgba(80, 65, 50, 0.14);
  background: #fbf6ee;

  cursor: pointer;

  position: relative;
  z-index: 100002;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: #4a4541;
  transition: 0.25s ease;
}

.navbar.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.navbar.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.navbar.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .navbar {
    height: 68px;
    padding: 0 22px;
    position: relative;
    z-index: 99999;
  }

  .nav-toggle {
    display: flex !important;
  }

  .nav-links {
    position: fixed !important;
    top: 68px !important;
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;
    height: auto !important;
    max-height: calc(100vh - 68px) !important;

    padding: 30px 22px 36px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 22px !important;

    background: #fbf6ee !important;
    border-bottom: 1px solid rgba(80, 65, 50, 0.08);
    box-shadow: 0 24px 60px rgba(63, 58, 54, 0.14);

    overflow-y: auto;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);

    z-index: 99998;

    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .navbar.is-open .nav-links {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    display: block;
    padding: 8px 0;
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .navbar {
    height: 64px;
    padding: 0 18px;
  }

  .nav-links {
    top: 64px !important;
    max-height: calc(100vh - 64px) !important;
    padding: 28px 18px 34px !important;
  }

  .logo {
    font-size: 26px;
  }
}



/* ================= HERO ================= */

.hero {
  width: 100%;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 52% 48%;
  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: flex-end;
  padding: 2.5vw 1.8vw 2.5vw 4.5vw;
}

.hero-image img {
  width: min(100%, 690px);
  height: auto;
  max-height: 640px;
  object-fit: contain;
  object-position: center;
  display: block;
  z-index: 2;
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: scale(1.025);
}

/* fondo decorativo */

.hero-image::before {
  content: "";
  position: absolute;
  right: 0;
  width: min(50vw, 680px);
  height: min(50vw, 680px);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(255, 255, 255, 0.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, 0.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 5vw 0 2vw;
  transform: translateX(-10px);
}

/* ================= TEXT ================= */

.eyebrow {
  margin-bottom: 18px;
  color: #9c8265;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  color: #37322f;
  font-size: clamp(54px, 5vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 400;
  margin-bottom: 28px;
}

.hero p {
  max-width: 540px;
  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, 0.35);
  background: transparent;
  color: #3d3833;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: 0.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 TABLET ================= */

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 50% 50%;
  }

  .hero-image {
    padding: 2vw 1vw 2vw 3vw;
  }

  .hero-image img {
    width: min(100%, 620px);
    max-height: 580px;
  }

  .hero-content {
    padding: 0 4vw 0 1.5vw;
    transform: translateX(-6px);
  }

  .hero h1 {
    font-size: clamp(48px, 5vw, 72px);
  }
}

/* ================= RESPONSIVE MOBILE ================= */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    order: 1;
    justify-content: center;
    padding: 24px 14px 0;
  }

  .hero-image img {
    width: min(100%, 680px);
    max-height: 520px;
  }

  .hero-image::before {
    right: auto;
    width: min(92vw, 620px);
    height: min(92vw, 620px);
  }

  .hero-content {
    order: 2;
    padding: 24px 7vw 62px;
    text-align: center;
    align-items: center;
    transform: none;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(42px, 10vw, 60px);
    margin-bottom: 22px;
  }

  .hero p {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 34px;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .btn {
    width: 100%;
    min-width: unset;
  }
}

/* ================= RESPONSIVE SMALL MOBILE ================= */

@media (max-width: 560px) {
  .hero-image {
    padding: 16px 8px 0;
  }

  .hero-image img {
    width: 100%;
    max-height: 430px;
  }

  .hero-image::before {
    width: min(100vw, 500px);
    height: min(100vw, 500px);
  }

  .hero-content {
    padding: 22px 22px 56px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero p {
    font-size: 15px;
  }
}


    /* ================= SECTIONS ================= */

    .section {
      width: 100%;
      background: #fbf6ee;
    }

    .section.alt {
      background: #f3eadc;
    }

    .section-inner {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
    }

    .section-title {
      padding-top: 30px;
      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;
  padding-top: 30px;
}

.concept-title {
  max-width: 820px;
}

/* ================= GRID ================= */

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  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 ================= */

.concept-small-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.concept-small-grid .concept-card {
  min-height: 220px;
}

/* ================= TEXTOS ================= */

.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;

  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 620px;

  overflow: hidden;

  background: #efe1cb;
  border: 1px solid rgba(80, 65, 50, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;
}

.concept-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;

  transition: transform 0.6s ease;
}

.concept-image:hover img {
  transform: scale(1.04);
}

/* ================= RESPONSIVE TABLET ================= */

@media (max-width: 900px) {
  .concept-grid {
    grid-template-columns: 1fr;
  }

  .concept-image {
    width: 100%;
    height: auto;
    min-height: unset;
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .concept-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ================= RESPONSIVE MOBILE ================= */

@media (max-width: 640px) {
  .concept-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .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;
  }

  .concept-card h3,
  .concept-small-grid .concept-card h3 {
    font-size: 25px;
  }

  .concept-card p {
    font-size: 14.5px;
  }

  .concept-image {
    display: flex;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: unset;
    max-height: 320px;
  }

  .concept-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}



    /* 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(2, 1fr);
  gap: 26px;
}

/* ================= CARD ================= */

.box-card {
  min-height: 520px;
  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;
}

.box-image {
  position: relative;
  width: 100%;
  height: 320px;
  margin-bottom: 20px;
  background: #f7f1e7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.box-image img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.box-card:hover .box-image img {
  transform: scale(1.025);
}

.box-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8f7a62;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
}

/* ================= CARD TEXT ================= */

.box-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.box-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #373431;
}

.box-card p {
  font-size: 15px;
  color: #62584e;
  line-height: 1.65;
}

/* ================= THEME PREVIEW ================= */

.theme-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}

.theme-preview span {
  padding: 7px 10px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(80, 65, 50, 0.08);
  color: #8f7a62;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ================= CARD BUTTON ================= */

.box-btn {
  margin-top: auto;
  padding: 14px 18px;
  border: none;
  background: #c9b89d;
  color: #fffaf2;
  font-size: 12px;
  font-weight: 800;
  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);
  -webkit-backdrop-filter: blur(6px);
}

.box-modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  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;
  z-index: 5;
}

.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;
}

/* ================= THEME SELECTOR ================= */

.theme-selector {
  margin-bottom: 22px;
  padding: 18px;
  background: #f3eadc;
  border: 1px solid rgba(80, 65, 50, 0.08);
}

.theme-selector label {
  display: block;
  margin-bottom: 10px;
  color: #373431;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.theme-selector select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(80, 65, 50, 0.16);
  background: #fffaf2;
  color: #373431;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  cursor: pointer;
}

/* ================= MODAL CAROUSEL ================= */

.modal-carousel {
  margin-bottom: 26px;
}

.modal-carousel-image {
  position: relative;
  width: 100%;
  height: 340px;
  background: #f3eadc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-carousel-image img {
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
}

.modal-theme-name {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 13px;
  background: rgba(255, 250, 242, 0.84);
  color: #8f7a62;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ================= MODAL CAROUSEL BUTTONS ================= */

.modal-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 38px;
  height: 38px;

  border: 1px solid rgba(80, 65, 50, 0.12);
  border-radius: 50%;

  background: rgba(255, 250, 242, 0.82);
  color: #373431;

  font-size: 30px;
  line-height: 1;
  font-weight: 300;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 4;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.modal-carousel-prev {
  left: 12px;
}

.modal-carousel-next {
  right: 12px;
}

.modal-carousel-btn:hover {
  background: #fffaf2;
  transform: translateY(-50%) scale(1.06);
}

/* ================= MODAL DOTS ================= */

.modal-carousel-dots {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.modal-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(55, 52, 49, 0.24);
  cursor: pointer;
  transition: 0.25s ease;
}

.modal-carousel-dot.active {
  width: 20px;
  border-radius: 999px;
  background: rgba(55, 52, 49, 0.72);
}

/* ================= DETAILS ================= */

.box-detail-block {
  margin-bottom: 22px;
}

.box-detail-block h4,
.box-extra-pack 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;
}

/* ================= EXTRA PACK ================= */

.box-extra-pack {
  margin: 24px 0;
  padding: 18px;
  background: #f3eadc;
  border: 1px solid rgba(80, 65, 50, 0.08);
}

.box-extra-pack p {
  margin: 0;
  color: #62584e;
  font-size: 15px;
  line-height: 1.65;
}

/* ================= MORE THEMES ================= */

.more-themes-box {
  margin: 24px 0;
  padding: 18px;
  background: rgba(243, 234, 220, 0.55);
  border: 1px solid rgba(80, 65, 50, 0.08);
}

.more-themes-box p {
  margin: 0 0 14px;
  color: #62584e;
  font-size: 15px;
  line-height: 1.6;
}

.more-themes-btn {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(80, 65, 50, 0.18);
  background: transparent;
  color: #8f7a62;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}

.more-themes-btn:hover {
  background: #efe1cb;
  color: #373431;
}

/* ================= PRICE / BASE ================= */

.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 MARIA Z ================= */

.box-whatsapp-btn {
  width: 100%;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #c9b89d;
  color: #fffaf2;

  border: 1px solid rgba(90, 70, 50, 0.18);
  text-decoration: none;

  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition: 0.2s ease;
}

.box-whatsapp-btn:hover {
  background: #b79f7d;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 980px) {
  .boxes-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .box-card {
    min-height: auto;
  }

  .box-image {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .box-card {
    padding: 18px;
  }

  .box-image {
    height: 240px;
  }

  .box-card h3 {
    font-size: 24px;
  }

  .box-card p {
    font-size: 14px;
  }

  .theme-preview span {
    font-size: 10px;
  }

  .box-modal {
    padding: 14px;
    align-items: flex-end;
  }

  .box-modal-content {
    max-height: 88vh;
    padding: 28px 22px;
  }

  .box-modal-content h3 {
    font-size: 26px;
  }

  .modal-carousel-image {
    height: 260px;
  }

  .modal-carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 26px;
  }

  .modal-carousel-prev {
    left: 8px;
  }

  .modal-carousel-next {
    right: 8px;
  }

  .box-price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}


/* ================= PRICE ================= */

.box-price-row {
  margin: 24px 0;
  padding: 18px;
  background: #f3eadc;
  border: 1px solid rgba(80, 65, 50, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.box-price-row span {
  font-size: 14px;
  font-weight: 700;
  color: #62584e;
}

.box-price-row strong {
  font-size: 28px;
  color: #373431;
}

/* ================= EXTRA PACK ================= */

.box-extra-pack {
  margin: 24px 0;
  padding: 18px;
  background: #f3eadc;
  border: 1px solid rgba(80, 65, 50, 0.08);
}

.box-extra-pack h4 {
  margin-bottom: 12px;
  font-size: 15px;
  color: #373431;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.box-extra-pack p {
  margin: 0 0 16px;
  color: #62584e;
  font-size: 15px;
  line-height: 1.65;
}

.extra-pack-btn {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(80, 65, 50, 0.18);
  background: #fffaf2;
  color: #8f7a62;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}

.extra-pack-btn:hover {
  background: #efe1cb;
  color: #373431;
}

.extra-pack-btn.active {
  background: #373431;
  color: #fffaf2;
}

/* ================= WHATSAPP CTA MARIA Z ================= */

.box-whatsapp-btn {
  width: 100%;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #c9b89d;
  color: #fffaf2;

  border: 1px solid rgba(90, 70, 50, 0.18);
  text-decoration: none;

  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition: 0.2s ease;
}

.box-whatsapp-btn:hover {
  background: #b79f7d;
}

@media (max-width: 640px) {
  .box-price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .box-price-row strong {
    font-size: 25px;
  }
}




    /* 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;
  }
}





/* ================= PARTY CAROUSEL SECTION ================= */

.party-carousel-section {
  padding: 84px 24px;
  background: #fffaf2;
}

/* ================= HEADER ================= */

.party-carousel-header {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.party-carousel-header span {
  display: inline-block;
  margin-bottom: 14px;

  color: #9c8265;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.party-carousel-header h2 {
  margin: 0 0 18px;

  color: #3f3a36;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.party-carousel-header p {
  max-width: 640px;
  margin: 0 auto;

  color: rgba(63, 58, 54, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

/* ================= CAROUSEL BASE ================= */

.party-carousel {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;

  overflow: hidden;

  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.72) 0%, transparent 42%),
    linear-gradient(135deg, #f8f2e8 0%, #efe1cb 100%);

  border: 1px solid rgba(63, 58, 54, 0.1);
  box-shadow: 0 24px 70px rgba(63, 58, 54, 0.1);
}

.party-carousel input {
  display: none;
}

.party-carousel-track {
  display: flex;
  width: 200%;
  transition: transform 0.55s ease;
}

.party-slide {
  width: 50%;
  padding: 58px;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

/* ================= SLIDE CONTENT ================= */

.party-slide-content {
  position: relative;
  z-index: 3;
}

.party-slide-eyebrow {
  display: inline-block;
  margin-bottom: 16px;

  color: #9c8265;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.party-slide h3 {
  margin: 0 0 26px;
  max-width: 620px;

  color: #3f3a36;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.party-slide p {
  max-width: 620px;
  margin: 0 0 14px;

  color: rgba(63, 58, 54, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.party-slide-btn {
  width: fit-content;
  min-width: 285px;
  min-height: 54px;
  margin-top: 26px;
  padding: 0 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #c9b89d;
  color: #fffaf2;

  border: 1px solid rgba(63, 58, 54, 0.14);
  text-decoration: none;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;

  transition: 0.25s ease;
}

.party-slide-btn:hover {
  background: #3f3a36;
  color: #fffaf2;
}

/* ================= VISUAL ================= */

.party-slide-visual {
  position: relative;
  min-height: 430px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.party-slide-image-wrap {
  position: relative;
  z-index: 3;

  width: min(100%, 440px);
  aspect-ratio: 4 / 5;

  overflow: hidden;

  background: #eadcc8;
  border: 1px solid rgba(63, 58, 54, 0.12);

  box-shadow:
    0 28px 70px rgba(63, 58, 54, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.party-slide-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    linear-gradient(
      to bottom,
      rgba(255, 250, 242, 0.04),
      rgba(63, 58, 54, 0.08)
    );

  pointer-events: none;
}

.party-slide-image {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  object-position: center;

  transform: scale(1.01);
}

.party-image-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;

  padding: 7px 11px;

  background: rgba(255, 250, 242, 0.88);
  color: rgba(63, 58, 54, 0.78);

  border: 1px solid rgba(63, 58, 54, 0.12);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;

  backdrop-filter: blur(8px);
}

/* fondo decorativo suave */

.party-slide-visual::before {
  content: "";
  position: absolute;
  z-index: 1;

  width: 78%;
  aspect-ratio: 1 / 1;

  background: rgba(255, 250, 242, 0.45);
  border-radius: 50%;

  filter: blur(4px);
}

.party-slide-visual::after {
  content: "";
  position: absolute;
  z-index: 1;

  width: 62%;
  height: 34%;
  bottom: 8%;

  border: 1px solid rgba(201, 184, 157, 0.45);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;

  transform: rotate(-12deg);
}

/* ================= SPARKLES ================= */

.party-sparkle {
  position: absolute;
  z-index: 4;

  color: #b99862;
  font-size: 24px;
  line-height: 1;

  pointer-events: none;
}

.sparkle-1 {
  left: 6%;
  top: 10%;
}

.sparkle-2 {
  right: 10%;
  top: 7%;
}

.sparkle-3 {
  left: 14%;
  bottom: 12%;
}

/* ================= CAROUSEL LOGIC ================= */

#party-slide-1:checked ~ .party-carousel-track {
  transform: translateX(0);
}

#party-slide-2:checked ~ .party-carousel-track {
  transform: translateX(-50%);
}

/* ================= ARROWS ================= */

.party-carousel-arrows {
  position: absolute;
  inset: 0;
  z-index: 10;

  pointer-events: none;
}

.party-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 250, 242, 0.82);
  color: #3f3a36;

  border: 1px solid rgba(63, 58, 54, 0.12);
  border-radius: 50%;

  font-size: 34px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;
  pointer-events: auto;

  backdrop-filter: blur(8px);
  box-shadow: 0 16px 34px rgba(63, 58, 54, 0.12);

  transition: 0.25s ease;
}

.party-arrow:hover {
  background: #3f3a36;
  color: #fffaf2;
}

.party-arrow-1 {
  left: 22px;
}

.party-arrow-2 {
  right: 22px;
}

/* Mostrar flecha útil según slide */

#party-slide-1:checked ~ .party-carousel-arrows .party-arrow-1 {
  opacity: 0.35;
}

#party-slide-2:checked ~ .party-carousel-arrows .party-arrow-2 {
  opacity: 0.35;
}

/* ================= DOTS ================= */

.party-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 12;

  display: flex;
  gap: 9px;

  transform: translateX(-50%);
}

.party-carousel-dots label {
  width: 9px;
  height: 9px;

  display: block;

  background: rgba(63, 58, 54, 0.25);
  border-radius: 50%;

  cursor: pointer;
  transition: 0.25s ease;
}

#party-slide-1:checked ~ .party-carousel-dots label:nth-child(1),
#party-slide-2:checked ~ .party-carousel-dots label:nth-child(2) {
  width: 28px;
  border-radius: 999px;
  background: #9c8265;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 980px) {
  .party-carousel-section {
    padding: 72px 20px;
  }

  .party-slide {
    grid-template-columns: 1fr;
    padding: 46px 34px 68px;
    gap: 36px;
  }

  .party-slide-content {
    text-align: center;
  }

  .party-slide h3,
  .party-slide p {
    margin-left: auto;
    margin-right: auto;
  }

  .party-slide-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .party-slide-visual {
    min-height: auto;
  }

  .party-slide-image-wrap {
    width: min(100%, 420px);
    aspect-ratio: 4 / 5;
  }

  .party-arrow {
    top: auto;
    bottom: 22px;
    transform: none;

    width: 40px;
    height: 40px;

    font-size: 30px;
  }

  .party-arrow-1 {
    left: 24px;
  }

  .party-arrow-2 {
    right: 24px;
  }
}

@media (max-width: 640px) {
  .party-carousel-section {
    padding: 56px 16px;
  }

  .party-carousel-header {
    margin-bottom: 30px;
  }

  .party-carousel-header span {
    font-size: 11px;
  }

  .party-carousel-header h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .party-carousel-header p {
    font-size: 15px;
    line-height: 1.65;
  }

  .party-slide {
    padding: 34px 22px 74px;
  }

  .party-slide-eyebrow {
    font-size: 11px;
  }

  .party-slide h3 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .party-slide p {
    font-size: 15px;
    line-height: 1.65;
  }

  .party-slide-btn {
    width: 100%;
    min-width: unset;
    height: auto;
    min-height: 52px;
    padding: 14px 18px;
  }

  .party-slide-image-wrap {
    width: 100%;
    max-width: 330px;
    aspect-ratio: 4 / 5;
  }

  .party-image-label {
    top: 10px;
    left: 10px;
    padding: 6px 9px;
    font-size: 9px;
  }

  .party-sparkle {
    font-size: 19px;
  }

  .sparkle-1 {
    left: -2px;
    top: 8%;
  }

  .sparkle-2 {
    right: 4%;
    top: 4%;
  }

  .sparkle-3 {
    left: 8%;
    bottom: 8%;
  }

  .party-arrow {
    bottom: 18px;
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .party-arrow-1 {
    left: 18px;
  }

  .party-arrow-2 {
    right: 18px;
  }

  .party-carousel-dots {
    bottom: 32px;
  }
}












/* ================= CUSTOM BIRTHDAY SECTION ================= */

.custom-birthday-section {
  padding: 80px 24px;
  background: #fffaf2;
}

.custom-birthday-container {
  max-width: 1180px;
  margin: 0 auto;
}

/* ================= HEADER ================= */

.custom-birthday-header {
  max-width: 860px;
  margin-bottom: 58px;
}

.custom-birthday-eyebrow {
  display: inline-block;
  margin-bottom: 18px;

  color: #9c8265;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.custom-birthday-header h2 {
  margin: 0 0 24px;

  color: #3f3a36;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.custom-birthday-header p {
  max-width: 680px;
  margin: 0;

  color: rgba(63, 58, 54, 0.74);
  font-size: 18px;
  line-height: 1.75;
}

/* ================= GRID ================= */

.custom-birthday-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ================= CARD ================= */

.custom-birthday-card {
  position: relative;
  min-height: 300px;
  padding: 34px 30px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.88), transparent 44%),
    linear-gradient(135deg, #f8f2e8 0%, #efe1cb 100%);

  box-shadow: 0 18px 48px rgba(63, 58, 54, 0.08);
  overflow: hidden;
}

.custom-birthday-card::after {
  content: "✦";
  position: absolute;
  right: 24px;
  top: 22px;

  color: rgba(185, 152, 98, 0.35);
  font-size: 24px;
  line-height: 1;
}

.custom-birthday-number {
  display: inline-block;
  margin-bottom: 54px;

  color: rgba(156, 130, 101, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.custom-birthday-card h3 {
  margin: 0 0 16px;

  color: #3f3a36;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.custom-birthday-card p {
  margin: 0;

  color: rgba(63, 58, 54, 0.72);
  font-size: 15.5px;
  line-height: 1.72;
}

/* ================= NOTE / CTA ================= */

.custom-birthday-note {
  margin-top: 56px;
  padding-top: 38px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;

  border-top: 1px solid rgba(63, 58, 54, 0.09);
}

.custom-birthday-note p {
  max-width: 670px;
  margin: 0;

  color: rgba(63, 58, 54, 0.74);
  font-size: 18px;
  line-height: 1.7;
}

.custom-birthday-btn {
  flex: 0 0 auto;

  min-width: 260px;
  min-height: 54px;
  padding: 0 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #c9b89d;
  color: #fffaf2;

  text-decoration: none;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;

  transition: 0.25s ease;
}

.custom-birthday-btn:hover {
  background: #3f3a36;
  color: #fffaf2;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 980px) {
  .custom-birthday-section {
    padding: 36px 24px;
  }

  .custom-birthday-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .custom-birthday-header p {
    margin-left: auto;
    margin-right: auto;
  }

  .custom-birthday-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .custom-birthday-card {
    min-height: auto;
  }

  .custom-birthday-number {
    margin-bottom: 34px;
  }

  .custom-birthday-note {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .custom-birthday-section {
    padding: 28px 16px;
  }

  .custom-birthday-header {
    margin-bottom: 42px;
  }

  .custom-birthday-eyebrow {
    font-size: 11px;
  }

  .custom-birthday-header h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .custom-birthday-header p {
    font-size: 16px;
    line-height: 1.65;
  }

  .custom-birthday-grid {
    gap: 18px;
  }

  .custom-birthday-card {
    padding: 28px 22px;
  }

  .custom-birthday-card h3 {
    font-size: 27px;
  }

  .custom-birthday-card p {
    font-size: 15px;
    line-height: 1.66;
  }

  .custom-birthday-note {
    margin-top: 38px;
    padding-top: 30px;
  }

  .custom-birthday-note p {
    font-size: 16px;
    line-height: 1.65;
  }

  .custom-birthday-btn {
    width: 100%;
    min-width: unset;
    min-height: 52px;
    padding: 14px 18px;
  }
}


















/* ================= EXTRAS BANNER ================= */

.extras-banner-section {
  padding: 38px 24px;
  background: #fffaf2;
}

.extras-banner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 46px;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;

  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.72) 0%, transparent 38%),
    linear-gradient(135deg, #f8f2e8 0%, #efe1cb 100%);

  box-shadow: 0 18px 46px rgba(63, 58, 54, 0.07);
}

/* ================= CONTENT ================= */

.extras-banner-content {
  max-width: 470px;
}

.extras-banner-eyebrow {
  display: inline-block;
  margin-bottom: 14px;

  color: #9c8265;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.extras-banner h2 {
  margin: 0 0 16px;

  color: #3f3a36;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.extras-banner-content p {
  margin: 0;

  color: rgba(63, 58, 54, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

/* ================= CTA ================= */

.extras-banner-cta {
  width: fit-content;
  margin-top: 28px;
  padding: 13px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fffaf2;
  background: #9c8265;

  border: 1px solid rgba(90, 70, 50, 0.18);
  border-radius: 999px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;

  box-shadow: 0 12px 28px rgba(63, 58, 54, 0.13);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.extras-banner-cta:hover {
  background: #876f54;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(63, 58, 54, 0.18);
}

/* ================= LIST ================= */

.extras-banner-list {
  display: grid;
  gap: 18px;
}

.extras-banner-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;

  padding: 0;
}

.extras-banner-item span {
  width: 7px;
  height: 7px;
  margin-top: 11px;

  display: block;

  background: #c9b89d;
  border-radius: 50%;
}

.extras-banner-item p {
  margin: 0;

  color: rgba(63, 58, 54, 0.74);
  font-size: 16px;
  line-height: 1.68;
}

.extras-banner-item strong {
  color: #3f3a36;
  font-weight: 700;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 860px) {
  .extras-banner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 38px 30px;
  }

  .extras-banner-content {
    max-width: 100%;
    text-align: center;
  }

  .extras-banner-cta {
    margin-left: auto;
    margin-right: auto;
  }

  .extras-banner-list {
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .extras-banner-section {
    padding: 18px 16px 64px;
  }

  .extras-banner {
    padding: 30px 22px;
  }

  .extras-banner-eyebrow {
    font-size: 10px;
  }

  .extras-banner h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .extras-banner-content p,
  .extras-banner-item p {
    font-size: 15px;
    line-height: 1.62;
  }

  .extras-banner-cta {
    width: 100%;
    max-width: 280px;
    margin-top: 24px;
    padding: 13px 18px;

    font-size: 12px;
  }

  .extras-banner-item {
    gap: 12px;
  }

  .extras-banner-item span {
    width: 6px;
    height: 6px;
    margin-top: 10px;
  }
}