*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #d4b965;
  --gold-dark: #a8893d;
  --white: #ffffff;
  --gray-100: #f0f0f0;
  --gray-200: #d0d0d0;
  --gray-300: #a0a0a0;
  --gray-400: #707070;
  --gray-500: #505050;
  --font-body: "Hanken Grotesk", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--gray-200);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  border-bottom-color: rgba(201, 168, 76, 0.2);
}
.navbar.scrolled .container {
  height: 58px;
}

.navbar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  transition: height 0.3s ease;
}

.navbar-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
  text-align: center;
}
.navbar-logo-main {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.navbar-logo-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.navbar-cta-wrap {
  display: flex;
  justify-content: flex-end;
}

/* ==================== BUTTONS ==================== */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  font-weight: 600;
  font-size: 0.999rem;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
}
.btn-gold:hover::before {
  width: 300px;
  height: 300px;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(201, 168, 76, 0);
  }
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(201, 168, 76, 0.06) 0%,
      transparent 60%
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 50px,
      rgba(201, 168, 76, 0.015) 50px,
      rgba(201, 168, 76, 0.015) 51px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 50px,
      rgba(201, 168, 76, 0.015) 50px,
      rgba(201, 168, 76, 0.015) 51px
    );
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 0.6;
    transform: scale(1);
  }
  90% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(0.5);
  }
}

.hero-content {
    display: block;
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}
.hero-content h1 {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 0.88;
  margin: 0 0 10px;
  opacity: 0;
  transform: translateY(35px);
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  text-align: center;
}
.hero h1 .highlight {
  display: inline;
  background: linear-gradient(
    120deg,
    var(--gold-dark) 0%,
    var(--gold-light) 25%,
    #f0dfa0 50%,
    var(--gold-light) 75%,
    var(--gold-dark) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3.5vw, 1.3rem);
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1.3;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* VSL */
.hero-vsl {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 12px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #000;
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(201, 168, 76, 0.05);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-vsl iframe,
.hero-vsl video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
}
.vsl-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--gray-400);
  font-size: 0.95rem;
  z-index: 1;
}
.vsl-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.vsl-play-btn:hover {
  background: rgba(201, 168, 76, 0.3);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
}
.vsl-play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
  margin-left: 4px;
}

/* Urgency line */
.hero-urgency {
  font-size: 0.95rem;
  color: var(--gray-400);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  text-align: center;
}
.hero-urgency strong {
  color: var(--gold);
  font-weight: 600;
}

.hero-cta-wrap {
  margin-top: 8px;
  text-align: center;
}
.hero-main-cta {
  font-size: 1.05rem;
  padding: 18px 44px;
  animation: ctaPulse 2.5s ease-in-out infinite;
}

/* Hero sequential animations */
.hero-content h1 {
  opacity: 0;
  transform: translateY(35px);
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.hero-content .hero-subtitle {
  opacity: 0;
  transform: translateY(35px);
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}
.hero-content .hero-vsl {
  opacity: 0;
  transform: translateY(35px) scale(0.97);
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}
.hero-content .hero-urgency {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}
.hero-content .hero-cta-wrap {
  opacity: 0;
  transform: translateY(35px);
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}
@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==================== LOGOS BAR ==================== */
/* ==================== SECTION SHARED ==================== */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--white);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}
.gold-line {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 50px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scaleX(0);
  transition:
    opacity 0.6s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.gold-line.visible {
  opacity: 1;
  transform: scaleX(1);
}
.gold-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: lineGlint 3s ease-in-out infinite;
}
@keyframes lineGlint {
  0%,
  100% {
    left: -100%;
  }
  50% {
    left: 200%;
  }
}

/* ==================== USP — DATOS ==================== */
.usp {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}
.usp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.3),
    transparent
  );
  animation: lineExpand 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes lineExpand {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.metric-card {
  text-align: center;
  padding: 32px 16px;
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.metric-card:hover {
  transform: translateY(-4px);
}
.metric-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  transition: text-shadow 0.4s ease;
}
.metric-card:hover .metric-number {
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}
.metric-desc {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.5;
}

/* ==================== PROBLEMA ==================== */
.problema {
  padding: 100px 0;
  background: var(--bg-primary);
}
.problema .section-title {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  perspective: 800px;
}
.problem-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: var(--bg-card-hover);
  transform: translateY(-6px) rotateX(2deg);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(201, 168, 76, 0.06);
}
.problem-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.problem-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.problem-card:hover .problem-icon {
  transform: scale(1.15) rotate(-5deg);
}
.problem-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}
.problem-card p {
  font-size: 0.92rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ==================== CTA INTERMEDIO ==================== */
.cta-mid {
  padding: 100px 0;
  text-align: center;
  position: relative;
  background: linear-gradient(
    180deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 100%
  );
}
.cta-mid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 50%,
    rgba(201, 168, 76, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-mid .glow-orb {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: orbPulse 5s ease-in-out infinite;
}
@keyframes orbPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
}
.cta-mid h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 36px;
  position: relative;
}
.cta-mid .btn-gold {
  font-size: 1.05rem;
  padding: 18px 42px;
  position: relative;
  animation: ctaPulse 2.5s ease-in-out infinite;
}

/* ==================== SOBRE MÍ ==================== */
.sobre-mi {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}
.sobre-mi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.3),
    transparent
  );
}
.sobre-mi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .sobre-mi-grid {
    grid-template-columns: 300px 1fr;
    gap: 64px;
  }
}

.sobre-mi-photo {
  width: 280px;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.sobre-mi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sobre-mi-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-500);
}
.sobre-mi-photo-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--gray-500);
  fill: none;
  stroke-width: 1.5;
}
.sobre-mi-photo::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
}

.sobre-mi-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--white);
  margin-bottom: 8px;
}
.sobre-mi-content .sobre-mi-tag {
  font-size: 0.82rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  font-weight: 500;
}
.sobre-mi-content p {
  font-size: 1rem;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 16px;
}
.sobre-mi-content p strong {
  color: var(--white);
  font-weight: 600;
}

/* ==================== CÓMO TRABAJO ==================== */
.como-trabajo {
  padding: 100px 0;
  background: var(--bg-primary);
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(201, 168, 76, 0.1));
}
.timeline-step {
  position: relative;
  padding-bottom: 48px;
}
.timeline-step:last-child {
  padding-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -33px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.timeline-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline-step h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}
.timeline-step .step-num {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
  font-weight: 600;
}
.timeline-step p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ==================== TESTIMONIOS ==================== */
.testimonios {
  padding: 100px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}
.testimonios .section-subtitle {
  text-align: center;
  color: var(--gray-400);
  font-size: 1.05rem;
  margin-top: -10px;
  margin-bottom: 50px;
}
.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 16px;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(100% - 16px);
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
@media (min-width: 640px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  padding-top: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, 0.3);
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info h4 {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}
.author-info p {
  font-size: 0.82rem;
  color: var(--gray-400);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 1.2rem;
}
.carousel-btn:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}
.carousel-btn:active {
  transform: scale(0.95);
}

/* ==================== VIDEO TESTIMONIOS ==================== */
.video-testimonios {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 100%
  );
  position: relative;
}
.video-testimonios::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.2),
    transparent
  );
}
.video-testimonios .section-subtitle {
  text-align: center;
  color: #cccccc;
  font-size: 1.05rem;
  margin-top: -10px;
  margin-bottom: 50px;
}
.video-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.video-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 16px;
}
.video-carousel-track::-webkit-scrollbar {
  display: none;
}
.video-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 640px) {
  .video-card {
    flex: 0 0 300px;
  }
}
@media (min-width: 1024px) {
  .video-card {
    flex: 0 0 340px;
  }
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.video-card-embed {
  position: relative;
  padding-top: 177.78%;
  background: #000;
}
.video-card-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-card-info {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.video-card-info .video-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.video-card-info .video-icon svg {
  width: 13px;
  height: 13px;
  fill: var(--bg-primary);
}
.video-card-info h4 {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.3;
}
.video-card-info p {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 2px;
}
.video-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.video-carousel-nav .carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: var(--bg-card);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.video-carousel-nav .carousel-btn:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ==================== FAQ ==================== */
.faq {
  padding: 100px 0;
  background: var(--bg-primary);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 500;
  font-family: var(--font-body);
  text-align: left;
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-chevron {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ==================== AGENDAR ==================== */
.agendar {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #0d0d0d 100%);
}
.agendar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.3),
    transparent
  );
  animation: lineExpand 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.agendar .section-title {
  margin-bottom: 16px;
}
.agendar-subtitle {
  text-align: center;
  color: var(--gray-400);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#ghl-calendar {
  min-height: 600px;
  background: #fff;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.95rem;
  transition: box-shadow 0.4s ease;
}
#ghl-calendar:hover {
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.08);
}
.agendar-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto 12px;
  line-height: 1.6;
}
.agendar-timezone {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 60px 0 40px;
  background: var(--bg-primary);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer .btn-gold {
  font-size: 1.05rem;
  padding: 18px 42px;
  margin-bottom: 40px;
  animation: ctaPulse 2.5s ease-in-out infinite;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.footer-links {
  font-size: 0.82rem;
  color: var(--gray-500);
}
.footer-links a {
  color: var(--gray-400);
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--gold);
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: whatsappBounce 2s ease-in-out 3s forwards;
  opacity: 0;
  transform: scale(0);
}
@keyframes whatsappBounce {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ==================== REVEAL ANIMATIONS ==================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.scale-in {
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}
.stagger-5 {
  transition-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .particle {
    display: none;
  }
  .whatsapp-float {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 640px) {
  .navbar .container {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .navbar-spacer,
  .navbar-cta-wrap {
    display: none;
  }
  .navbar-logo-main {
    font-size: 0.95rem;
  }
  .navbar-logo-sub {
    font-size: 0.5rem;
    letter-spacing: 2px;
  }
  .sobre-mi-photo {
    width: 220px;
    height: 280px;
  }
  .timeline {
    padding-left: 32px;
  }
  .timeline::before {
    left: 11px;
  }
  .timeline-dot {
    left: -28px;
    width: 16px;
    height: 16px;
  }
  .timeline-dot::after {
    width: 6px;
    height: 6px;
  }
  .logos-track {
    gap: 24px;
  }
}
