/* ================================================================
   SEPHORA-INSPIRED EXTRAVAGANT DESIGN
   Sarahi Jaramillo — Mentora de Negocios de Belleza
   ================================================================ */

/* ======= NAV (keep from original) ======= */
.sj-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s, border-bottom 0.4s, -webkit-backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
  animation: fade-up 0.8s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}
.sj-nav.scrolled {
  background: rgba(12,10,14,0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid rgba(245,240,235,0.03);
}
.sj-nav .logo { display: flex; align-items: center; cursor: pointer; }
.sj-nav .logo img { height: 64px; width: auto; object-fit: contain; }
.sj-nav .nav-links { display: flex; gap: 36px; align-items: center; font-family: var(--sans); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.sj-nav .nav-links a { color: rgba(245,240,235,0.5); transition: color 0.3s; cursor: pointer; }
.sj-nav .nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 10px 28px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-family: var(--sans);
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-cta:hover { background: var(--gold); color: var(--bg) !important; box-shadow: 0 0 30px rgba(196,169,109,0.2); }

/* ======= HERO: FULL SCREEN VIDEO ======= */
.sp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.sp-hero-media {
  position: absolute;
  inset: 0;
}
.sp-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.7);
}
.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(12,10,14,0.6) 0%,
      rgba(12,10,14,0.2) 30%,
      rgba(12,10,14,0.2) 50%,
      rgba(12,10,14,0.7) 80%,
      rgba(12,10,14,0.95) 100%
    );
}

.sp-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.sp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: fade-up 0.8s cubic-bezier(0.22,1,0.36,1) 0.4s both;
}
.sp-badge-line {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.sp-hero-badge .sp-badge-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.sp-hero-title {
  animation: fade-up 0.8s cubic-bezier(0.22,1,0.36,1) 0.6s both;
}
.sp-title-line {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
}
.sp-title-line:first-child {
  font-size: clamp(28px, 4vw, 48px);
  color: rgba(245,240,235,0.7);
}
.sp-title-line:first-child em {
  color: var(--text);
  font-style: italic;
}
.sp-title-accent {
  font-size: clamp(52px, 8vw, 100px);
  font-style: italic;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 8px 0;
  text-shadow: 0 0 80px rgba(196,169,109,0.3);
}
.sp-title-small {
  font-size: clamp(18px, 2.5vw, 30px);
  color: var(--muted);
  font-style: italic;
  font-weight: 300;
  margin-top: 4px;
}

.sp-hero-sub {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 28px auto 40px;
  font-weight: 300;
  animation: fade-up 0.8s cubic-bezier(0.22,1,0.36,1) 0.8s both;
}

/* ===== CTA BUTTON: MAGNETIC PILL ===== */
.sp-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 60px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  animation: fade-up 0.8s cubic-bezier(0.22,1,0.36,1) 1s both;
  box-shadow: 0 4px 30px rgba(196,169,109,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.sp-hero-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 50px rgba(196,169,109,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  gap: 4px;
}
.sp-cta-text {
  padding: 18px 32px 18px 36px;
}
.sp-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(0,0,0,0.12);
  border-radius: 50%;
  margin: 4px;
  transition: transform 0.3s;
}
.sp-hero-cta:hover .sp-cta-arrow { transform: translateX(4px); }
.sp-cta-large { font-size: 15px; }
.sp-cta-large .sp-cta-text { padding: 22px 36px 22px 44px; }
.sp-cta-large .sp-cta-arrow { width: 60px; height: 60px; }

/* Hero social proof */
.sp-hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  animation: fade-up 0.8s cubic-bezier(0.22,1,0.36,1) 1.2s both;
}
.sp-proof-avatars {
  display: flex;
}
.sp-proof-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  object-fit: cover;
  margin-left: -10px;
}
.sp-proof-avatars img:first-child { margin-left: 0; }
.sp-proof-text {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(245,240,235,0.5);
  font-weight: 400;
}

/* Hero scroll indicator */
.sp-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fade-in 1s ease 2s both;
}
.sp-scroll-mouse {
  width: 26px;
  height: 42px;
  border-radius: 13px;
  border: 2px solid rgba(196,169,109,0.3);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.sp-scroll-wheel {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  animation: scroll-bounce 2s infinite;
}

/* ======= MARQUEE STATS ======= */
.sp-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(196,169,109,0.1);
  border-bottom: 1px solid rgba(196,169,109,0.1);
  padding: 20px 0;
  background: rgba(12,10,14,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.sp-marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.sp-marquee-item {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(245,240,235,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sp-marquee-item strong {
  color: var(--gold);
  font-weight: 600;
  font-size: 18px;
  margin-right: 6px;
}
.sp-marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(196,169,109,0.3);
  align-self: center;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ======= ABOUT: EDITORIAL ======= */
.sp-about {
  padding: 140px 48px;
}
.sp-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sp-about-img {
  position: relative;
}
.sp-img-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: inline-block;
}
.sp-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.85) brightness(0.9);
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.sp-img-frame:hover img { transform: scale(1.04); }
.sp-img-border {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(196,169,109,0.2);
  border-radius: 2px;
  pointer-events: none;
}

.sp-about-float-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: rgba(12,10,14,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(196,169,109,0.15);
  padding: 28px 36px;
  border-radius: 4px;
  z-index: 2;
}
.sp-float-number {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--gold);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  margin-bottom: 8px;
}
.sp-float-label {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* Section tags */
.sp-section-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.sp-section-tag.center { justify-content: center; }
.sp-tag-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.sp-section-tag.center .sp-tag-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.sp-about-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 28px;
}
.sp-about-title em {
  color: var(--gold);
  font-style: italic;
}
.sp-about-desc {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

/* About highlights */
.sp-about-highlights {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sp-highlight {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background: rgba(196,169,109,0.04);
  border: 1px solid rgba(196,169,109,0.08);
  border-radius: 8px;
  transition: all 0.3s;
}
.sp-highlight:hover {
  background: rgba(196,169,109,0.08);
  border-color: rgba(196,169,109,0.15);
  transform: translateX(8px);
}
.sp-highlight-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(196,169,109,0.08);
  flex-shrink: 0;
}
.sp-highlight-icon svg { stroke: var(--gold); }
.sp-highlight-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}
.sp-highlight-sub {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

/* ======= GALLERY: MOSAIC ======= */
.sp-gallery {
  padding: 0 48px;
}
.sp-gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 6px;
}
.sp-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.sp-gallery-tall {
  grid-row: span 2;
}
.sp-gallery-wide {
  grid-column: span 2;
}
.sp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.8);
  transition: all 0.6s cubic-bezier(0.22,1,0.36,1);
}
.sp-gallery-item:hover img {
  filter: saturate(1) brightness(0.95);
  transform: scale(1.06);
}
.sp-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
}
.sp-gallery-item:hover .sp-gallery-overlay { opacity: 1; }
.sp-gallery-overlay span {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ======= FREE CLASS OFFER CARD ======= */
.sp-offer {
  padding: 100px 48px;
}
.sp-offer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(22,18,25,0.6);
  border: 1px solid rgba(196,169,109,0.12);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}
.sp-offer-visual {
  position: relative;
  overflow: hidden;
  max-height: 500px;
}
.sp-offer-visual video,
.sp-offer-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
}
.sp-offer-badge-wrap {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
}
.sp-offer-badge {
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 10px 24px;
  border-radius: 4px;
  animation: pulse-glow 3s ease-in-out infinite;
}

.sp-offer-content {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sp-offer-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.sp-offer-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}
.sp-offer-title em {
  color: var(--gold);
  font-style: italic;
}
.sp-offer-desc {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
}

.sp-offer-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.sp-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(245,240,235,0.8);
  font-weight: 400;
}

.sp-offer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(196,169,109,0.3);
  align-self: flex-start;
}
.sp-offer-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(196,169,109,0.5);
}

.sp-offer-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
}
.sp-urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e74c3c;
  animation: pulse 2s infinite;
}

/* ======= PROGRAMS: PRODUCT CARDS ======= */
.sp-programs { padding: 140px 48px; }
.sp-programs-inner { max-width: 1100px; margin: 0 auto; }

.sp-section-header { text-align: center; margin-bottom: 64px; }
.sp-section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 16px;
}
.sp-section-sub {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
}

.sp-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.sp-product-card {
  position: relative;
  background: rgba(22,18,25,0.7);
  border: 1px solid rgba(245,240,235,0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.sp-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196,169,109,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.sp-card-featured {
  border-color: rgba(196,169,109,0.15);
}
.sp-card-ribbon {
  position: absolute;
  top: 20px;
  right: -32px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(45deg);
  z-index: 3;
}

.sp-card-img {
  overflow: hidden;
  height: 280px;
}
.sp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.85);
  transition: all 0.6s;
}
.sp-product-card:hover .sp-card-img img {
  filter: saturate(1) brightness(0.95);
  transform: scale(1.06);
}

.sp-card-body { padding: 36px 32px; }
.sp-card-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196,169,109,0.3);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.sp-tag-alt {
  color: var(--accent);
  border-color: rgba(232,196,196,0.3);
}
.sp-card-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 8px;
}
.sp-card-price {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 16px;
}
.sp-card-price small {
  font-size: 14px;
  color: var(--muted);
  font-style: normal;
  font-family: var(--sans);
}
.sp-card-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}
.sp-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.sp-card-features li {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(245,240,235,0.6);
  padding: 8px 0;
  border-bottom: 1px solid rgba(245,240,235,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-card-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.5;
}
.sp-card-features li:last-child { border-bottom: none; }

.sp-card-btn {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 60px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(196,169,109,0.2);
}
.sp-card-btn:hover {
  box-shadow: 0 8px 40px rgba(196,169,109,0.4);
  transform: scale(1.02);
}
.sp-card-btn.sp-btn-outline {
  background: transparent;
  border: 1px solid rgba(245,240,235,0.15);
  color: var(--text);
  box-shadow: none;
}
.sp-card-btn.sp-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ======= BENEFITS ======= */
.sp-benefits {
  padding: 100px 48px;
  border-top: 1px solid rgba(245,240,235,0.03);
  border-bottom: 1px solid rgba(245,240,235,0.03);
}
.sp-benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.sp-benefit-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 8px;
  border: 1px solid rgba(245,240,235,0.03);
  transition: all 0.4s;
  cursor: default;
}
.sp-benefit-card:hover {
  transform: translateY(-8px);
  background: rgba(196,169,109,0.04);
  border-color: rgba(196,169,109,0.1);
}
.sp-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(196,169,109,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.sp-benefit-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 12px;
}
.sp-benefit-card p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ======= REVIEWS: INFINITE MARQUEE ======= */
.sp-reviews {
  padding: 120px 0 100px;
  overflow: hidden;
}
.sp-review-marquee {
  overflow: hidden;
  padding: 12px 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.sp-review-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewScroll 45s linear infinite;
}
.sp-review-reverse .sp-review-track {
  animation: reviewScrollReverse 50s linear infinite;
}
.sp-review-marquee:hover .sp-review-track {
  animation-play-state: paused;
}

@keyframes reviewScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes reviewScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.sp-review-card {
  flex-shrink: 0;
  width: 360px;
  padding: 32px;
  background: rgba(22,18,25,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(196,169,109,0.1);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  cursor: default;
}
.sp-review-card:hover {
  border-color: rgba(196,169,109,0.25);
  background: rgba(22,18,25,0.8);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 40px rgba(196,169,109,0.06);
}

.sp-review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.sp-review-text {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  font-style: italic;
  color: rgba(245,240,235,0.75);
  margin-bottom: 24px;
}

.sp-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(245,240,235,0.05);
}
.sp-review-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(196,169,109,0.2);
}
.sp-review-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}
.sp-review-role {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

/* ======= FINAL CTA ======= */
.sp-final-cta {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sp-final-bg {
  position: absolute;
  inset: 0;
}
.sp-final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(0.5);
}
.sp-final-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(12,10,14,0.5) 0%, rgba(12,10,14,0.85) 100%);
}
.sp-final-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
  max-width: 700px;
}
.sp-final-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
}
.sp-final-title em {
  color: var(--gold);
  font-style: italic;
}
.sp-final-sub {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 48px;
}

/* ======= FOOTER ======= */
.sp-footer {
  padding: 80px 48px 40px;
  border-top: 1px solid rgba(196,169,109,0.08);
}
.sp-footer-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.sp-footer-logo {
  margin-bottom: 32px;
}
.sp-footer-logo img {
  height: 48px;
  margin: 0 auto;
  opacity: 0.5;
}
.sp-footer-links {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 28px;
}
.sp-footer-links a {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(245,240,235,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.sp-footer-links a:hover { color: var(--gold); }
.sp-footer-social {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}
.sp-footer-social a {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(245,240,235,0.3);
  transition: color 0.3s;
}
.sp-footer-social a:hover { color: var(--gold); }
.sp-footer-copy {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(245,240,235,0.15);
}

/* ======= WHATSAPP BUTTON ======= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 40px rgba(37,211,102,0.6);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ======= CUSTOM CURSOR ======= */
.cursor-follower {
  position: fixed;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  opacity: 0.35;
  transition: width 0.2s, height 0.2s, border-width 0.2s, opacity 0.2s;
  transform: translate(-50%, -50%);
}
.cursor-follower.hovering { width: 48px; height: 48px; border-width: 1px; opacity: 0.6; }
@media (max-width: 768px) { .cursor-follower { display: none; } }
