/* ============================================
   ALTESSIA — Digital Growth Manual Styles
   Colors: #F6F6F3, #4C4A47, #C6A275, #E5C896
   Font: Inter / Tenor Sans
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #F6F6F3;
  color: #4C4A47;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Tenor Sans', 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #4C4A47;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #4C4A47;
}

.label-sm {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C6A275;
}

/* --- Layout Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 7rem 0;
}

.section-alt {
  background-color: #fff;
}

.text-center {
  text-align: center;
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger > .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger > .fade-up:nth-child(3) { transition-delay: 0.2s; }
.stagger > .fade-up:nth-child(4) { transition-delay: 0.3s; }
.stagger > .fade-up:nth-child(5) { transition-delay: 0.4s; }
.stagger > .fade-up:nth-child(6) { transition-delay: 0.5s; }


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.5s ease;
}

.nav.scrolled {
  background: rgba(246, 246, 243, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(198, 162, 117, 0.12);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  padding: 0.5rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.nav-logo img {
  height: 110px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C6A275;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #4C4A47;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #C6A275;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  background: rgba(246, 246, 243, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(198, 162, 117, 0.12);
}

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

.nav-mobile a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C6A275;
  transition: color 0.3s ease;
}

.nav-mobile a:hover {
  color: #4C4A47;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-logo img {
    height: 80px;
  }
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #F6F6F3;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(246, 246, 243, 0.3) 0%,
    rgba(246, 246, 243, 0.6) 50%,
    rgba(246, 246, 243, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  width: 100%;
  padding: 2rem 1.5rem;
  padding-bottom: 0;
}

.hero-label {
  margin-bottom: 2rem;
  margin-top: 5rem;
  display: inline-block;
  background: rgba(198, 162, 117, 0.12);
  border: 1px solid rgba(198, 162, 117, 0.25);
  border-radius: 60px;
  padding: 0.45rem 1.25rem;
}

/* Plain label — no background, slightly larger */
.hero-label-plain {
  display: block;
  margin-bottom: 1.5rem;
  margin-top: 5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C6A275;
}

/* ============================================
   HERO BENEFITS BAR (horizontal 5 items)
   ============================================ */
.hero-benefits-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.4rem 0.3rem;
  margin: 1.25rem auto 1.5rem;
  padding: 0.9rem 1.75rem;
  background: rgba(198, 162, 117, 0.09);
  border: 1px solid rgba(198, 162, 117, 0.18);
  border-radius: 60px;
  max-width: 820px;
  width: 100%;
}

.hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(76, 74, 71, 0.75);
  white-space: nowrap;
}

.hero-benefit-item svg {
  width: 14px;
  height: 14px;
  stroke: #C6A275;
  flex-shrink: 0;
}

/* Divider dots between items on desktop */
.hero-benefit-item:not(:last-child)::after {
  content: "·";
  margin-left: 0.5rem;
  color: rgba(198, 162, 117, 0.4);
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 600px) {
  .hero-benefits-bar {
    flex-wrap: wrap; /* Mantiene la capacidad de bajar a otra fila */
    border-radius: 20px;
    gap: 0.8rem 1.2rem; /* Espacio equilibrado entre filas y columnas */
    padding: 1.2rem 1rem;
    justify-content: center;
  }

  .hero-benefit-item {
    flex: 0 1 auto; /* Deja que cada ítem use el ancho que necesite */
    justify-content: center;
    white-space: nowrap; /* ¡ESTA ES LA CLAVE! Impide que el texto se rompa */
    text-align: center;
    font-size: 0.68rem; /* Un pelín más pequeño para que quepan mejor */
  }

  .hero-benefit-item:not(:last-child)::after {
    display: none; /* Quita los puntos separadores en móvil */
  }
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: #4C4A47;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: #C6A275;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 300;
  color: #4C4A47;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero-support {
  font-size: 0.85rem;
  color: rgba(76, 74, 71, 0.6);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-learn-more {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(76, 74, 71, 0.45);
  transition: color 0.3s ease;
}

.hero-learn-more:hover {
  color: #C6A275;
}


/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #C6A275;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  box-shadow: 0 4px 20px rgba(198, 162, 117, 0.25);
}

.btn-primary:hover {
  background-color: #b8935f;
  box-shadow: 0 6px 30px rgba(198, 162, 117, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: #C6A275;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid #C6A275;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #C6A275;
  color: #fff;
}


/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  background-color: #fff;
}

.problem-header {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}

.problem-header h2 {
  margin-bottom: 1.5rem;
}

.problem-header .subheading {
  font-size: 1rem;
  font-weight: 400;
  color: #C6A275;
  margin-bottom: 1rem;
}

.problem-header p {
  font-size: 0.95rem;
  color: rgba(76, 74, 71, 0.7);
  line-height: 1.8;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: #9BA07E;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(155, 160, 126, 0.25);
  border-color: rgba(155, 160, 126, 0.4);
}

.problem-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #fff;
}

.problem-card .icon-svg {
  stroke: #fff;
}

.problem-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.problem-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.problem-closing {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.1rem;
  font-weight: 400;
  color: #C6A275;
  font-style: italic;
}

@media (max-width: 992px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution {
  background: #F6F6F3;
}

.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}

.solution-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-header {
  max-width: 680px;
  margin: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .solution-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .solution-header {
    text-align: center;
  }

  .solution-image {
    order: -1;
  }
}

.solution-header h2 {
  margin-bottom: 1.5rem;
}

.solution-header h2 span {
  color: #C6A275;
}

.solution-header p {
  font-size: 0.95rem;
  color: rgba(76, 74, 71, 0.7);
  line-height: 1.8;
}

.solution-disclaimer {
  font-size: 0.75rem !important;
  font-style: italic;
  color: #9BA07E !important;
  margin-top: 1rem;
}


/* ============================================
   COLLECTION SECTION
   ============================================ */
.collection {
  background: #fff;
  padding-bottom: 2rem;
}

.collection-label {
  text-align: center;
  margin-bottom: 3.5rem;
}

.collection-label h2 {
  margin-top: 0.75rem;
}

.collection-label .collection-desc {
  font-size: 0.95rem;
  color: rgba(76, 74, 71, 0.7);
  line-height: 1.8;
  max-width: 600px;
  margin: 1.25rem auto 0;
}

.collection-label .collection-discover {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9BA07E;
  margin-top: 1.25rem;
}

.collection-scroll-wrapper {
  position: relative;
  padding: 0 1rem;
}

.collection-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2rem;
}

.collection-track::-webkit-scrollbar {
  display: none;
}

.collection-card {
  flex: 0 0 340px;
  scroll-snap-align: center;
  background: #F6F6F3;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(198, 162, 117, 0.08);
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.collection-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eae6e1;
}

.collection-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover .collection-card-img img {
  transform: scale(1.06);
}

.collection-card-body {
  padding: 2rem 1.75rem;
}

.collection-card-body h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #4C4A47;
  margin-bottom: 0.25rem;
}

.collection-card-subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #C6A275;
  font-weight: 500;
  margin-bottom: 1rem;
}

.collection-card-body > p {
  font-size: 0.85rem;
  color: rgba(76, 74, 71, 0.7);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.collection-card-meta {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(198, 162, 117, 0.1);
}

.collection-card-meta span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #C6A275;
  display: block;
  margin-bottom: 0.35rem;
}

.collection-card-meta p {
  font-size: 0.8rem;
  color: rgba(76, 74, 71, 0.6);
}

/* Pricing inside card */
.collection-card-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.4rem;
}

.price-presale {
  font-size: 0.85rem;
  font-weight: 600;
  color: #9BA07E;
}

.price-presale strong,
.price-presale .price-amount {
  color: #C6A275;
  font-weight: 700;
}

.price-presale em {
  font-style: normal;
  font-weight: 600;
  font-size: 0.8rem;
  color: #C6A275;
}

.price-retail {
  font-size: 0.75rem;
  color: rgba(76, 74, 71, 0.45);
  text-decoration: line-through;
}

/* Reserve Now button */
.btn-reserve {
  display: block;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #C6A275;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid #C6A275;
  border-radius: 60px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-reserve:hover {
  background-color: #C6A275;
  color: #fff;
  box-shadow: 0 4px 16px rgba(198, 162, 117, 0.25);
}

/* Pre-sale callout note — full width matching carousel */
.collection-presale-note {
  max-width: 100%;
  margin: 1.5rem 1rem 0;
  padding: 1.25rem 1.75rem;
  background: rgba(198, 162, 117, 0.08);
  border-left: 3px solid #C6A275;
  border-radius: 12px;
  text-align: center;
}

.collection-presale-note p {
  font-size: 0.9rem;
  color: rgba(76, 74, 71, 0.75);
  line-height: 1.7;
  font-style: italic;
}

.collection-scroll-hint {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(76, 74, 71, 0.25);
  display: none;
}

.collection-disclaimer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9BA07E;
  font-style: italic;
}

/* Scroll arrows */
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(198, 162, 117, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #4C4A47;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.scroll-arrow:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%) scale(1.08);
}

.scroll-arrow.left {
  left: -0.5rem;
}

.scroll-arrow.right {
  right: -0.5rem;
}

.scroll-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .collection-card {
    flex: 0 0 82vw;
  }

  .scroll-arrow {
    display: none;
  }

  .collection-scroll-hint {
    display: block;
  }
}


/* ============================================
   COMMUNITY / SOCIAL PROOF
   ============================================ */
.community {
  background: #F6F6F3;
}

.community-header {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.community-header h2 {
  margin-bottom: 1.5rem;
}

.community-header p {
  font-size: 0.95rem;
  color: rgba(76, 74, 71, 0.7);
  line-height: 1.8;
}

.community-highlight {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(198, 162, 117, 0.1);
}

.community-highlight p {
  font-size: 1.05rem;
  font-style: italic;
  color: #4C4A47;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.community-highlight p:last-of-type {
  font-style: normal;
  font-weight: 500;
  color: #C6A275;
  margin-bottom: 0;
}

.community-ig {
  margin-top: 2.5rem;
  text-align: center;
}

.community-ig p {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(76, 74, 71, 0.45);
  margin-bottom: 0.5rem;
}

.community-ig a {
  font-size: 1rem;
  font-weight: 500;
  color: #C6A275;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.community-ig a:hover {
  color: #4C4A47;
}


/* ============================================
   FINAL CTA + FORM
   ============================================ */

/* Hide city and country fields */
.form-row-grid {
  display: none !important;
}

/* CTA section animated highlight */
@keyframes ctaFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 24px rgba(0,0,0,0.04), 0 0 0 0 rgba(198,162,117,0.18); }
  50%       { box-shadow: 0 8px 40px rgba(0,0,0,0.06), 0 0 0 8px rgba(198,162,117,0); }
}

.cta-section {
  background: #fff;
  position: relative;
}

/* Subtle warm tint behind the form */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(198,162,117,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Animated form wrapper */
.form-wrapper {
  animation: ctaGlow 4s ease-in-out infinite;
  border: 1.5px solid rgba(198, 162, 117, 0.18) !important;
}

/* Submit button — animated float */
.form-submit .btn-primary {
  animation: ctaFloat 3s ease-in-out infinite;
  background-color: #b8935f;
  box-shadow: 0 6px 28px rgba(184, 147, 95, 0.35);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.form-submit .btn-primary:hover {
  animation: none;
  background-color: #a07d4e;
  box-shadow: 0 8px 36px rgba(184, 147, 95, 0.45);
  transform: translateY(-2px);
}

.cta-header {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

.cta-header h2 {
  margin-bottom: 1.25rem;
}

.cta-header h2 span {
  color: #C6A275;
}

.cta-header p {
  font-size: 0.95rem;
  color: rgba(76, 74, 71, 0.7);
  line-height: 1.8;
}

.form-wrapper {
  max-width: 560px;
  margin: 0 auto;
  background: #F6F6F3;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: none;
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4C4A47;
  margin-bottom: 0.5rem;
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: #fff;
  border: 1.5px solid rgba(198, 162, 117, 0.2);
  border-radius: 14px;
  font-size: 0.9rem;
  color: #4C4A47;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-row input::placeholder {
  color: rgba(76, 74, 71, 0.3);
}

.form-row input:focus,
.form-row select:focus {
  border-color: #C6A275;
  box-shadow: 0 0 0 3px rgba(198, 162, 117, 0.1);
}

.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C6A275' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-checkboxes {
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
}

.form-checkboxes-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4C4A47;
  margin-bottom: 0.75rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(198, 162, 117, 0.3);
  appearance: none;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 2px;
}

.form-check input[type="checkbox"]:checked {
  background: #C6A275;
  border-color: #C6A275;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.form-check span {
  font-size: 0.85rem;
  color: rgba(76, 74, 71, 0.7);
  cursor: pointer;
  line-height: 1.4;
}

.form-submit {
  text-align: center;
  margin-top: 1.75rem;
}

.form-submit .btn-primary {
  width: 100%;
}

.form-trust {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.7rem;
  color: #9BA07E;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .form-row-grid {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #4C4A47;
  color: rgba(246, 246, 243, 0.5);
  padding: 4rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo img {
  height: 80px;
  width: auto;
  opacity: 0.7;
  filter: brightness(1.8);
}

.footer-tagline {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(246, 246, 243, 0.4);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 246, 243, 0.4);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #E5C896;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(246, 246, 243, 0.1);
  margin: 0.5rem 0;
}

.footer-copy {
  font-size: 0.65rem;
  color: rgba(246, 246, 243, 0.25);
  letter-spacing: 0.05em;
}

.footer-contact {
  font-size: 0.75rem;
  color: rgba(246, 246, 243, 0.5);
  letter-spacing: 0.05em;
}

.footer-contact a {
  color: #E5C896;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-disclaimer {
  font-size: 0.6rem;
  color: rgba(246, 246, 243, 0.2);
  max-width: 500px;
  text-align: center;
  line-height: 1.6;
  font-style: italic;
}


/* ============================================
   SVG Icon Styling (inline icons)
   ============================================ */
.icon-svg {
  width: 24px;
  height: 24px;
  stroke: #C6A275;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ============================================
   FORM SUCCESS MESSAGE
   ============================================ */
.form-success {
  display: none;
  justify-content: center;
  align-items: center;
  max-width: 560px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.form-success.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-success-inner {
  text-align: center;
  background: #F6F6F3;
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  width: 100%;
}

.form-success-inner svg {
  margin: 0 auto 1.5rem;
  display: block;
}

.form-success-inner h3 {
  font-family: 'Tenor Sans', 'Inter', sans-serif;
  font-size: 1.5rem;
  color: #4C4A47;
  margin-bottom: 1rem;
}

.form-success-inner p {
  font-size: 0.95rem;
  color: rgba(76, 74, 71, 0.7);
  line-height: 1.8;
}


/* ============================================
   TOM SELECT — Altessia Theme Overrides
   ============================================ */
.ts-wrapper.single .ts-control {
  background: #fff;
  border: 1.5px solid rgba(198, 162, 117, 0.2);
  border-radius: 14px;
  padding: 0.85rem 1.15rem;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: #4C4A47;
  box-shadow: none;
  cursor: pointer;
  min-height: 0;
}

.ts-wrapper.single .ts-control::after {
  /* Replace default caret with Altessia gold chevron */
  border-color: #C6A275 transparent transparent transparent;
}

.ts-wrapper.single.focus .ts-control {
  border-color: #C6A275;
  box-shadow: 0 0 0 3px rgba(198, 162, 117, 0.1);
}

.ts-wrapper .ts-control > input {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #4C4A47;
}

.ts-wrapper .ts-control > input::placeholder {
  color: rgba(76, 74, 71, 0.3);
}

.ts-dropdown {
  border: 1.5px solid rgba(198, 162, 117, 0.15);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  background: #fff;
}

.ts-dropdown .option {
  padding: 0.65rem 1.15rem;
  color: #4C4A47;
  transition: background-color 0.15s ease;
}

.ts-dropdown .option:hover,
.ts-dropdown .active {
  background: rgba(198, 162, 117, 0.08);
  color: #4C4A47;
}

.ts-dropdown .option.selected {
  background: rgba(198, 162, 117, 0.15);
  color: #4C4A47;
}

.ts-wrapper.single .ts-control .item {
  color: #4C4A47;
}

/* Placeholder styling */
.ts-wrapper.single .ts-control .item[data-value=""] {
  color: rgba(76, 74, 71, 0.3);
}


/* ============================================
   WHY WE EXIST SECTION
   ============================================ */
.why-exist {
  background: #fff;
  padding-top: 3rem;
}

.why-exist-header {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}

.why-exist-header h2 {
  margin-bottom: 1rem;
}

.why-exist-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #C6A275;
  margin-top: 0.75rem;
}

.why-exist-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}

.why-exist-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.why-exist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-exist-content {
  max-width: 680px;
}

.why-exist-content {
  background: rgba(155, 160, 126, 0.12);
  border-radius: 20px;
  padding: 2rem 2.25rem;
}

.why-exist-content p {
  font-size: 0.95rem;
  color: rgba(76, 74, 71, 0.7);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.why-exist-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .why-exist-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-exist-image {
    order: -1;
  }
}


/* ============================================
   HERO DISCOUNT TEXT
   ============================================ */
.hero-discount {
  font-size: 0.8rem;
  color: rgba(76, 74, 71, 0.55);
  font-weight: 300;
  line-height: 1.6;
  margin: 0.5rem 0;
}


/* ============================================
   HERO AUTHORITY LINE
   ============================================ */
.hero-authority {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C6A275;
  margin: 0.25rem 0 1.75rem;
}

/* ============================================
   HERO CTA BUTTON — stronger contrast + animated border
   ============================================ */
@keyframes borderPulse {
  0%   { box-shadow: 0 6px 28px rgba(184,147,95,0.38), 0 0 0 0 rgba(198,162,117,0.55); }
  60%  { box-shadow: 0 6px 28px rgba(184,147,95,0.38), 0 0 0 10px rgba(198,162,117,0); }
  100% { box-shadow: 0 6px 28px rgba(184,147,95,0.38), 0 0 0 0 rgba(198,162,117,0); }
}

.btn-hero-cta {
  background-color: #b8935f !important;
  box-shadow: 0 6px 28px rgba(184, 147, 95, 0.38) !important;
  font-size: 0.8rem !important;
  padding: 1.1rem 2.75rem !important;
  letter-spacing: 0.12em !important;
  animation: borderPulse 2.4s ease-out infinite;
  outline: 2px solid rgba(198, 162, 117, 0.35);
  outline-offset: 3px;
}

.btn-hero-cta:hover {
  background-color: #a07d4e !important;
  box-shadow: 0 8px 36px rgba(184, 147, 95, 0.48) !important;
  transform: translateY(-3px) !important;
  animation: none;
  outline-color: rgba(198, 162, 117, 0.6);
}

/* ============================================
   HERO COUNTDOWN TIMER
   ============================================ */
.hero-countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0 0.25rem;
}

.countdown-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(76, 74, 71, 0.45);
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
  background: rgba(198, 162, 117, 0.08);
  border: 1px solid rgba(198, 162, 117, 0.18);
  border-radius: 10px;
  padding: 0.45rem 0.6rem 0.35rem;
}

.countdown-unit span {
  font-family: 'Tenor Sans', 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #4C4A47;
  line-height: 1;
}

.countdown-unit small {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(76, 74, 71, 0.4);
  margin-top: 0.2rem;
}

.countdown-sep {
  font-size: 1.2rem;
  color: rgba(198, 162, 117, 0.5);
  font-weight: 300;
  margin-bottom: 0.8rem;
}

@media (max-width: 480px) {
  .hero-bullets {
    text-align: left;
    max-width: 100%;
  }

  .countdown-unit {
    min-width: 42px;
  }

  .countdown-unit span {
    font-size: 1.1rem;
  }
}


/* ============================================
   SOLUTION BENEFITS LIST
   ============================================ */
.solution-benefits {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.solution-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
  color: rgba(76, 74, 71, 0.7);
  line-height: 1.7;
}

.benefit-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(198, 162, 117, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A275;
  margin-top: 0.1rem;
}

.benefit-icon svg {
  width: 18px;
  height: 18px;
  stroke: #C6A275;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-benefits li > span:last-child {
  padding-top: 0.45rem;
}

@media (max-width: 768px) {
  .solution-benefits li {
    align-items: flex-start;
    text-align: left;
  }

  .solution-header {
    text-align: left !important;
  }

  .solution-benefits {
    text-align: left;
  }
}


/* ============================================
   AMBASSADOR PROGRAM SECTION
   ============================================ */
.ambassador {
  background: #F6F6F3;
}

.ambassador-header {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}

.ambassador-header h2 {
  margin-bottom: 0.75rem;
}

.ambassador-subheadline {
  font-size: 1rem;
  font-weight: 400;
  color: #4C4A47;
  margin-top: 0.5rem;
}

.ambassador-subheadline strong {
  color: #C6A275;
  font-weight: 600;
}

.ambassador-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}

.ambassador-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.ambassador-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ambassador-caption {
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(76, 74, 71, 0.5);
  text-align: center;
  padding: 0.75rem 1rem;
  background: rgba(198, 162, 117, 0.05);
  margin: 0;
}

.ambassador-content > p {
  font-size: 0.95rem;
  color: rgba(76, 74, 71, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.ambassador-perks-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #4C4A47;
  margin-bottom: 1rem;
}

.ambassador-perks-label strong {
  color: #C6A275;
}

.ambassador-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.ambassador-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: rgba(76, 74, 71, 0.7);
  line-height: 1.6;
}

.ambassador-perks li strong {
  color: #4C4A47;
  font-weight: 600;
}

.perk-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(198, 162, 117, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
}

.perk-icon svg {
  width: 18px;
  height: 18px;
  stroke: #C6A275;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ambassador-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.btn-whatsapp {
  background-color: #25D366 !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d !important;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35) !important;
}

.ambassador-cta-sub {
  font-size: 0.75rem;
  color: rgba(76, 74, 71, 0.45);
  font-style: italic;
  margin: 0;
}

@media (max-width: 768px) {
  .ambassador-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ambassador-image {
    order: -1;
  }

  .ambassador-cta {
    align-items: center;
    text-align: center;
  }

  .ambassador-cta .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .ambassador-perks li {
    align-items: flex-start;
  }
}


/* ============================================
   FOOTER SOCIAL
   ============================================ */
.footer-social {
  font-size: 0.75rem;
  color: rgba(246, 246, 243, 0.5);
  letter-spacing: 0.05em;
  margin: 0.5rem 0;
}

.footer-social a {
  color: #E5C896;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}


/* ============================================
   RESPONSIVE REFINEMENTS
   ============================================ */
@media (max-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 1rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .solution {
    padding-top: 3rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}
