/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #C9A04E;
  --gold-light: #ddb96b;
  --gold-dark: #a07a2e;
  --brown: #3a2210;
  --brown-light: #5c3a1e;
  --nude: #f5ede0;
  --nude-dark: #e8d9c5;
  --off-white: #faf8f5;
  --white: #ffffff;
  --text: #2d1a0e;
  --text-muted: #7a5c42;
  --border: rgba(201, 160, 78, 0.2);
  --shadow: 0 4px 30px rgba(58, 34, 16, 0.08);
  --shadow-hover: 0 8px 40px rgba(58, 34, 16, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

em {
  font-style: italic;
  color: var(--gold);
}

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

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== MARBLE TEXTURE ===== */
.hero-bg-texture,
.cta-bg-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(201, 160, 78, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(201, 160, 78, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 30%, rgba(245, 237, 224, 0.6) 0%, transparent 40%);
}

/* Splash dourado */
.hero::before,
.cta-final::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 160, 78, 0.15) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  pointer-events: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 160, 78, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  width: 100%;
  margin-top: auto;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  font-size: 1.05rem;
  padding: 16px 40px;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.btn-nav {
  background: var(--gold);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-nav:hover {
  background: var(--gold-dark);
}

/* ===== SECTION LABELS & HEADERS ===== */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(58, 34, 16, 0.08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: var(--off-white);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 160, 78, 0.12);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-text {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-text strong {
  color: var(--gold-dark);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(58, 34, 16, 0.15);
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 12px;
  border: 2px solid rgba(201, 160, 78, 0.3);
  z-index: -1;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0;
    transform: scaleY(0.5)
  }

  50% {
    opacity: 1;
    transform: scaleY(1)
  }
}

/* ===== VALUE PROPS ===== */
.value-props {
  padding: 80px 0;
  background: var(--nude);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.value-card {
  background: var(--white);
  padding: 44px 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 20px;
}

.value-card ul {
  list-style: none;
}

.value-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 160, 78, 0.1);
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-card li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.value-card li:last-child {
  border-bottom: none;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--off-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(58, 34, 16, 0.12);
}

.about-image {
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background: var(--gold);
  opacity: 0.15;
  border-radius: 4px;
  z-index: -1;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--brown);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-quote {
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  background: rgba(201, 160, 78, 0.06);
  border-radius: 0 8px 8px 0;
  margin: 28px 0;
}

.about-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brown);
  margin-bottom: 8px;
}

.about-quote cite {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.credentials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.credential {
  background: rgba(201, 160, 78, 0.1);
  border: 1px solid var(--border);
  color: var(--gold-dark);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ===== ABOUT SLIDER ===== */
.about-slider {
  position: relative; border-radius: 8px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(58,34,16,0.12);
  height: 480px;
}
.about-slider-track {
  display: flex; height: 100%;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.about-slider-track img {
  min-width: 100%; height: 100%; object-fit: cover; flex-shrink: 0;
}
.about-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none; cursor: pointer;
  color: var(--gold); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; z-index: 2;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.about-slider-btn--prev { left: 12px; }
.about-slider-btn--next { right: 12px; }
.about-slider-btn:hover { background: var(--gold); color: var(--white); }
.about-slider-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.about-slider-dots .sdot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: none; cursor: pointer;
  transition: all 0.2s; padding: 0;
}
.about-slider-dots .sdot.active {
  background: var(--white); width: 20px; border-radius: 4px;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: var(--off-white);
}
.gallery-slider {
  position: relative; overflow: hidden; border-radius: 8px;
  padding: 0 28px;
}
.gallery-track {
  display: flex; gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.gallery-slide {
  min-width: calc(33.333% - 14px); flex-shrink: 0; border-radius: 8px; overflow: hidden;
}
.gallery-slide img {
  width: 100%; height: 260px; object-fit: cover; object-position: center top;
  transition: transform 0.4s ease; display: block;
  image-rendering: -webkit-optimize-contrast;
}
.gallery-slide:hover img { transform: scale(1.04); }
.gallery-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--off-white); border: 1px solid var(--border);
  cursor: pointer; color: var(--gold); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; z-index: 2;
  box-shadow: 0 2px 16px rgba(58,34,16,0.1);
}
.gallery-btn--prev { left: 0; }
.gallery-btn--next { right: 0; }
.gallery-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.gallery-dots {
  display: flex; gap: 8px; justify-content: center; margin-top: 24px;
}
.gallery-dots .gdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--nude-dark); border: none; cursor: pointer;
  transition: all 0.2s; padding: 0;
}
.gallery-dots .gdot.active {
  background: var(--gold); width: 24px; border-radius: 4px;
}

/* ===== FOR WHO ===== */
.for-who {
  padding: 100px 0;
  background: var(--nude);
}

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.for-who-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.for-who-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 160, 78, 0.4);
}

.for-who-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.for-who-card h4 {
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 12px;
}

.for-who-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== MODULES ===== */
.modules {
  padding: 100px 0;
  background: var(--off-white);
}

.modules-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.module-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.module-header {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.module-header:hover {
  background: rgba(201, 160, 78, 0.04);
}

.module-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
  min-width: 60px;
}

.module-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--brown);
  font-weight: 600;
  flex: 1;
}

.module-toggle {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.module-item.open .module-toggle {
  transform: rotate(45deg);
}

.module-body {
  display: none;
  padding: 0 28px 24px;
}

.module-item.open .module-body {
  display: block;
}

.module-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.module-topics span {
  background: rgba(201, 160, 78, 0.1);
  border: 1px solid rgba(201, 160, 78, 0.2);
  color: var(--brown-light);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ===== INCLUDED ===== */
.included {
  padding: 100px 0;
  background: var(--nude);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.included-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.included-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.included-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.included-card h4 {
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 10px;
}

.included-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.kit-img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 6px;
}

.included-tag {
  display: inline-block;
  margin-top: 12px;
  background: rgba(201, 160, 78, 0.15);
  color: var(--gold-dark);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.bonus-section {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.bonus-section h3 {
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 24px;
  text-align: center;
}

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

.bonus-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.bonus-item span {
  color: var(--gold);
  font-weight: 700;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
  background: var(--off-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.pricing-card {
  background: var(--white);
  padding: 40px 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
  border-color: var(--gold);
  border-width: 2px;
  box-shadow: 0 8px 40px rgba(201, 160, 78, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 4px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 12px 0 4px;
}

.price-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  padding-top: 8px;
}

.price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}

.price-installment {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-features li.highlight {
  color: var(--gold-dark);
  font-weight: 600;
}

.price-features li.not-included {
  color: #bbb;
  text-decoration: line-through;
}

.pricing-conditions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 24px;
  background: rgba(201, 160, 78, 0.06);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.condition-item {
  font-size: 0.9rem;
  color: var(--gold-dark);
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--nude);
}

.testimonials-carousel {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--brown);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nude-dark);
  cursor: pointer;
  transition: all 0.2s;
}

.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ===== JOURNEY ===== */
.journey {
  padding: 100px 0;
  background: var(--off-white);
}

.journey-steps {
  display: flex;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.journey-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(201, 160, 78, 0.3);
}

.step-line {
  position: absolute;
  top: 30px;
  left: calc(50% + 30px);
  right: calc(-50% + 30px);
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201, 160, 78, 0.3));
}

.step-content {
  margin-top: 20px;
  padding: 0 16px;
}

.step-content h4 {
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== CTA FINAL ===== */
.cta-final {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--brown) 0%, #5c3a1e 100%);
  overflow: hidden;
  text-align: center;
}

.cta-final::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(201, 160, 78, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 160, 78, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-final h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-final em {
  color: var(--gold);
}

.cta-final p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 48px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta-icons {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cta-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cta-icon {
  color: var(--gold);
  font-size: 1.5rem;
}

.cta-icon-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201, 160, 78, 0.2);
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  transition: color 0.2s;
}

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

.footer-address {
  text-align: right;
}

.footer-address p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-dev {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.footer-dev:hover {
  opacity: 1;
}

.footer-dev span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-dev-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all 0.3s;
  animation: floatPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}

@keyframes floatPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .45)
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, .7)
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-2 {
  animation-delay: 0.2s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .for-who-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-slider { height: 300px; }
  .gallery-slide { min-width: calc(50% - 10px); }
  .gallery-slide img { height: 220px; }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
  }

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

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    height: 320px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-badge {
    margin: 0 auto 20px;
  }

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

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 300px;
  }

  .for-who-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .testimonial-card {
    min-width: calc(100% - 0px);
  }

  .journey-steps {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    padding-left: 24px;
  }

  .step-line {
    display: none;
  }

  .step-number {
    flex-shrink: 0;
  }

  .journey-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .step-content {
    margin-top: 0;
    padding: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .footer-links {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-icons {
    gap: 28px;
  }

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

  .pricing-conditions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .gallery-slide { min-width: calc(100% - 0px); }

  .for-who-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    text-align: center;
  }

  .credentials {
    justify-content: center;
  }
}