*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: oklch(72% 0.11 75);
  --gold-light: oklch(85% 0.09 78);
  --gold-dark: oklch(58% 0.10 68);
  --cream: oklch(96% 0.015 80);
  --espresso: oklch(22% 0.03 60);
  --brown-mid: oklch(38% 0.05 55);
  --text-light: oklch(97% 0.008 75);
  --beige-bg: oklch(91% 0.025 78);
}

html, body {
  width: 100%;
  min-height: 100vh;
  background: var(--beige-bg);
  font-family: 'Lato', sans-serif;
  overflow-x: hidden;
}

#root {
  width: 100%;
  min-height: 100vh;
}

/* Animations - Removed from elements, will be triggered by JavaScript */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 oklch(72% 0.11 75 / 0.45); }
  70%  { box-shadow: 0 0 0 14px oklch(72% 0.11 75 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(72% 0.11 75 / 0); }
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

/* Scroll animations - Applied via JavaScript */
.scroll-fade-up {
  opacity: 0;
  transform: translateY(28px);
}

.scroll-fade-up.animate {
  animation: fadeUp 0.6s ease forwards;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--beige-bg);
}

.hero-section.dark-mode {
  background: oklch(13% 0.025 55);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url(../uploads/fondo.png);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  animation: fadeIn 1.4s ease both;
}

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

.hero-section:not(.dark-mode) .hero-overlay {
  background: linear-gradient(105deg, oklch(96% 0.018 80 / 0.97) 0%, oklch(94% 0.022 78 / 0.91) 48%, oklch(92% 0.02 76 / 0.2) 100%);
}

.hero-section.dark-mode .hero-overlay {
  background: linear-gradient(105deg, oklch(12% 0.025 55 / 0.97) 0%, oklch(14% 0.02 58 / 0.92) 48%, oklch(10% 0.02 50 / 0.35) 100%);
}

@media (max-width: 768px) {
  .hero-section:not(.dark-mode) .hero-overlay {
    background: linear-gradient(180deg, oklch(96% 0.018 80 / 0.88) 0%, oklch(94% 0.022 78 / 0.85) 25%, oklch(93% 0.02 78 / 0.60) 65%, oklch(92% 0.02 76 / 0.25) 100%);
  }

  .hero-section.dark-mode .hero-overlay {
    background: linear-gradient(180deg, oklch(12% 0.025 55 / 0.92) 0%, oklch(14% 0.02 58 / 0.88) 25%, oklch(13% 0.02 56 / 0.65) 65%, oklch(10% 0.02 50 / 0.35) 100%);
  }
}

.hero-flare {
  position: absolute;
  top: -80px;
  left: -80px;
  z-index: 2;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(75% 0.12 78 / 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px 80px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  animation: fadeUp 0.5s ease 0.1s both;
  align-self: flex-start;
}

.badge-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid oklch(72% 0.11 75 / 0.6);
  border-radius: 100px;
}

.hero-section:not(.dark-mode) .badge-inner {
  background: oklch(93% 0.04 78 / 0.8);
}

.hero-section.dark-mode .badge-inner {
  background: oklch(20% 0.04 60 / 0.7);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-ring 2s ease infinite;
}

.badge-text {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.headline {
  font-family: 'Playfair Display';
  font-weight: 700;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  animation: fadeUp 0.65s ease 0.2s both;
  max-width: 580px;
  text-wrap: pretty;
}

.hero-section:not(.dark-mode) .headline {
  color: var(--espresso);
}

.hero-section.dark-mode .headline {
  color: oklch(96% 0.015 80);
}

.headline-accent {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3.5s linear 1s infinite;
}

.gold-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeUp 0.5s ease 0.35s both;
}

.gold-divider-line {
  height: 1px;
  width: 40px;
  background: var(--gold);
  opacity: 0.8;
}

.gold-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.9;
}

.subheadline {
  font-family: 'Lato';
  font-weight: 300;
  font-size: 22px;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeUp 0.6s ease 0.4s both;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}

.hero-section:not(.dark-mode) .subheadline {
  color: oklch(20% 0.02 60);
}

.hero-section.dark-mode .subheadline {
  color: oklch(82% 0.02 78);
}

.bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 42px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bullet-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.bullet-text {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.hero-section:not(.dark-mode) .bullet-text {
  color: oklch(20% 0.02 60);
}

.hero-section.dark-mode .bullet-text {
  color: oklch(88% 0.02 78);
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.65s ease 0.75s both;
}

.cta-primary {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  padding: 20px 40px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, oklch(68% 0.13 72) 100%);
  color: white;
  box-shadow: 0 8px 32px oklch(60% 0.10 70 / 0.45), inset 0 1px 0 oklch(88% 0.08 80 / 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse-ring 2.5s ease 1.5s infinite;
  text-shadow: 0 1px 2px oklch(40% 0.08 60 / 0.5);
}

.cta-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px oklch(60% 0.10 70 / 0.55), inset 0 1px 0 oklch(88% 0.08 80 / 0.3);
}

.cta-secondary {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.03em;
  padding: 19px 32px;
  border-radius: 8px;
  border: 1.5px solid oklch(72% 0.11 75 / 0.6);
  cursor: pointer;
  background: transparent;
  transition: all 0.2s ease;
}

.hero-section:not(.dark-mode) .cta-secondary {
  color: oklch(20% 0.02 60);
}

.hero-section.dark-mode .cta-secondary {
  color: oklch(85% 0.06 78);
}

.cta-secondary:hover {
  border-color: var(--gold);
}

.hero-section:not(.dark-mode) .cta-secondary:hover {
  background: oklch(90% 0.04 78 / 0.5);
}

.hero-section.dark-mode .cta-secondary:hover {
  background: oklch(25% 0.04 60 / 0.5);
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 24px;
}

.hero-section:not(.dark-mode) .trust-badges {
  border-top: 1px solid oklch(72% 0.11 75 / 0.3);
}

.hero-section.dark-mode .trust-badges {
  border-top: 1px solid oklch(72% 0.11 75 / 0.2);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid oklch(72% 0.11 75 / 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.hero-section:not(.dark-mode) .trust-badge-icon {
  background: oklch(85% 0.06 78 / 0.7);
}

.hero-section.dark-mode .trust-badge-icon {
  background: oklch(30% 0.04 60 / 0.6);
}

.trust-badge-label {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}

.hero-section:not(.dark-mode) .trust-badge-label {
  color: var(--espresso);
}

.hero-section.dark-mode .trust-badge-label {
  color: oklch(95% 0.02 78);
}

.trust-badge-sublabel {
  font-family: 'Lato';
  font-weight: 300;
  font-size: 15px;
  line-height: 1.3;
}

.hero-section:not(.dark-mode) .trust-badge-sublabel {
  color: oklch(20% 0.02 60);
}

.hero-section.dark-mode .trust-badge-sublabel {
  color: oklch(80% 0.025 78);
}

.floating-card {
  position: absolute;
  bottom: 8%;
  left: -5%;
  z-index: 10;
  animation: floatBadge 4s ease-in-out 1.2s infinite, fadeUp 0.7s ease 1.2s both;
  backdrop-filter: blur(16px);
  border: 1px solid oklch(72% 0.11 75 / 0.4);
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 20px 60px oklch(20% 0.04 60 / 0.25);
  min-width: 200px;
}

.hero-section:not(.dark-mode) .floating-card {
  background: linear-gradient(135deg, oklch(97% 0.015 80 / 0.94), oklch(94% 0.025 78 / 0.90));
}

.hero-section.dark-mode .floating-card {
  background: linear-gradient(135deg, oklch(18% 0.035 58 / 0.92), oklch(15% 0.03 55 / 0.88));
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 80px;
}

.hero-section:not(.dark-mode) .hero-bottom-fade {
  background: linear-gradient(to top, oklch(91% 0.025 78) 0%, transparent 100%);
}

.hero-section.dark-mode .hero-bottom-fade {
  background: linear-gradient(to top, oklch(13% 0.025 55) 0%, transparent 100%);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablets y pantallas medianas */
@media (max-width: 1024px) {
  .hero-content {
    padding: 60px 32px;
    gap: 40px;
  }

  .headline {
    font-size: clamp(28px, 5vw, 48px);
  }

  .floating-card {
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 5%;
  }
}

/* Móviles */
@media (max-width: 768px) {
  .hero-bg {
    background-position: 65% center;
    background-size: cover;
    opacity: 1;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 40px 24px 60px;
    gap: 0;
  }

  .hero-text {
    max-width: 100%;
  }

  .badge {
    margin-bottom: 20px;
  }

  .badge-inner {
    background: oklch(93% 0.04 78 / 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .hero-section.dark-mode .badge-inner {
    background: oklch(20% 0.04 60 / 0.95) !important;
  }

  .headline {
    font-size: clamp(26px, 7vw, 38px);
    max-width: 100%;
    margin-bottom: 18px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.15);
  }

  .gold-divider {
    margin-bottom: 18px;
  }

  .gold-divider-line,
  .gold-divider-dot {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
  }

  .subheadline {
    font-size: 16px;
    margin-bottom: 28px;
    max-width: 100%;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .bullets {
    gap: 12px;
    margin-bottom: 32px;
  }

  .bullet-icon {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }

  .bullet-text {
    font-size: 15px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
    width: 100%;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
  }

  .cta-secondary {
    background: oklch(96% 0.018 80 / 0.85) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .hero-section.dark-mode .cta-secondary {
    background: oklch(20% 0.04 60 / 0.75) !important;
  }

  .trust-badges {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding-top: 20px;
    border-top-color: oklch(72% 0.11 75 / 0.5) !important;
  }

  .trust-badge {
    width: 100%;
  }

  .trust-badge-icon {
    backdrop-filter: blur(10px);
    background: oklch(93% 0.04 78 / 0.92) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }

  .hero-section.dark-mode .trust-badge-icon {
    background: oklch(30% 0.04 60 / 0.88) !important;
  }

  .trust-badge-label,
  .trust-badge-sublabel {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  }

  .floating-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 32px;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(20px) !important;
  }

  .hero-section:not(.dark-mode) .floating-card {
    background: linear-gradient(135deg, oklch(97% 0.015 80 / 0.96), oklch(94% 0.025 78 / 0.94)) !important;
    box-shadow: 0 20px 60px oklch(20% 0.04 60 / 0.3), 0 0 0 1px oklch(72% 0.11 75 / 0.5);
  }

  .hero-section.dark-mode .floating-card {
    background: linear-gradient(135deg, oklch(18% 0.035 58 / 0.95), oklch(15% 0.03 55 / 0.92)) !important;
  }

  .hero-flare {
    width: 280px;
    height: 280px;
    top: -60px;
    left: -60px;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .hero-bg {
    background-position: 60% center;
  }

  .hero-section:not(.dark-mode) .hero-overlay {
    background: linear-gradient(180deg, oklch(96% 0.018 80 / 0.90) 0%, oklch(94% 0.022 78 / 0.87) 20%, oklch(93% 0.02 78 / 0.65) 60%, oklch(92% 0.02 76 / 0.30) 100%);
  }

  .hero-section.dark-mode .hero-overlay {
    background: linear-gradient(180deg, oklch(12% 0.025 55 / 0.94) 0%, oklch(14% 0.02 58 / 0.90) 20%, oklch(13% 0.02 56 / 0.70) 60%, oklch(10% 0.02 50 / 0.40) 100%);
  }

  .hero-content {
    padding: 32px 20px 50px;
  }

  .headline {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.15;
  }

  .subheadline {
    font-size: 17px;
  }

  .bullet-text {
    font-size: 16px;
  }

  .badge-text {
    font-size: 11px;
    letter-spacing: 0.15em;
  }

  .badge-inner {
    padding: 6px 16px;
  }

  .cta-primary,
  .cta-secondary {
    padding: 18px 28px;
    font-size: 16px;
  }

  .trust-badge-label {
    font-size: 15px;
  }

  .trust-badge-sublabel {
    font-size: 13px;
  }

  .gold-divider-line {
    width: 30px;
  }
}

/* ========== LEARNING SECTION STYLES ========== */

.learning-section {
  position: relative;
  width: 100%;
  padding: 100px 48px;
  background: var(--beige-bg);
}

.learning-section.dark-mode {
  background: oklch(13% 0.025 55);
}

.learning-container {
  max-width: 1280px;
  margin: 0 auto;
}

.learning-header {
  text-align: center;
  margin-bottom: 70px;
}

.learning-title {
  font-family: 'Playfair Display';
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.learning-section:not(.dark-mode) .learning-title {
  color: var(--espresso);
}

.learning-section.dark-mode .learning-title {
  color: oklch(96% 0.015 80);
}

.learning-subtitle {
  font-family: 'Lato';
  font-weight: 300;
  font-size: 20px;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

.learning-section:not(.dark-mode) .learning-subtitle {
  color: oklch(20% 0.02 60);
}

.learning-section.dark-mode .learning-subtitle {
  color: oklch(82% 0.02 78);
}

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

.learning-card {
  position: relative;
  padding: 36px 28px;
  border-radius: 12px;
  border: 1px solid oklch(72% 0.11 75 / 0.25);
  transition: all 0.3s ease;
}

.learning-section:not(.dark-mode) .learning-card {
  background: oklch(97% 0.015 80 / 0.6);
  box-shadow: 0 4px 16px oklch(20% 0.04 60 / 0.08);
}

.learning-section.dark-mode .learning-card {
  background: oklch(18% 0.035 58 / 0.5);
  box-shadow: 0 4px 16px oklch(0% 0 0 / 0.3);
}

.learning-card:hover {
  transform: translateY(-4px);
  border-color: oklch(72% 0.11 75 / 0.6);
}

.learning-section:not(.dark-mode) .learning-card:hover {
  box-shadow: 0 12px 32px oklch(20% 0.04 60 / 0.15);
}

.learning-section.dark-mode .learning-card:hover {
  box-shadow: 0 12px 32px oklch(0% 0 0 / 0.5);
}

.learning-number {
  font-family: 'Playfair Display';
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.9;
}

.learning-card-title {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.learning-section:not(.dark-mode) .learning-card-title {
  color: var(--espresso);
}

.learning-section.dark-mode .learning-card-title {
  color: oklch(95% 0.02 78);
}

.learning-card-description {
  font-family: 'Lato';
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
}

.learning-section:not(.dark-mode) .learning-card-description {
  color: oklch(20% 0.02 60);
}

.learning-section.dark-mode .learning-card-description {
  color: oklch(80% 0.025 78);
}

/* Responsive Learning Section */
@media (max-width: 1024px) {
  .learning-section {
    padding: 80px 32px;
  }

  .learning-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .learning-section {
    padding: 60px 24px;
  }

  .learning-header {
    margin-bottom: 50px;
  }

  .learning-title {
    font-size: clamp(28px, 6vw, 38px);
  }

  .learning-subtitle {
    font-size: 16px;
  }

  .learning-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .learning-card {
    padding: 24px 18px;
  }

  .learning-number {
    font-size: 38px;
    margin-bottom: 14px;
  }

  .learning-card-title {
    font-size: 16px;
  }

  .learning-card-description {
    font-size: 13px;
  }
}

/* ========== INCLUDES SECTION STYLES ========== */

.includes-section {
  position: relative;
  width: 100%;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.includes-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(../uploads/fondo2.png);
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: fadeIn 1.4s ease both;
}

.includes-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.includes-section:not(.dark-mode) {
  background: linear-gradient(135deg, oklch(94% 0.025 78) 0%, oklch(92% 0.03 76) 100%);
}

.includes-section.dark-mode {
  background: linear-gradient(135deg, oklch(15% 0.03 58) 0%, oklch(12% 0.025 55) 100%);
}

.includes-section:not(.dark-mode)::after {
  background: linear-gradient(120deg, oklch(94% 0.025 78 / 0.92) 0%, oklch(93% 0.028 77 / 0.88) 40%, oklch(92% 0.03 76 / 0.75) 100%);
}

.includes-section.dark-mode::after {
  background: linear-gradient(120deg, oklch(15% 0.03 58 / 0.94) 0%, oklch(13% 0.025 56 / 0.90) 40%, oklch(12% 0.025 55 / 0.80) 100%);
}

.includes-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.includes-image-side {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 700px;
  box-shadow: 0 20px 60px oklch(20% 0.04 60 / 0.25);
}

.includes-bg-image {
  position: absolute;
  inset: 0;
  background-image: url(../uploads/2.jpg);
  background-size: cover;
  background-position: center 35%;
  animation: fadeIn 1.2s ease both;
}

.includes-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.includes-section:not(.dark-mode) .includes-image-overlay {
  background: linear-gradient(180deg, transparent 0%, oklch(20% 0.04 60 / 0.3) 100%);
}

.includes-section.dark-mode .includes-image-overlay {
  background: linear-gradient(180deg, oklch(10% 0.02 50 / 0.4) 0%, oklch(8% 0.02 48 / 0.6) 100%);
}

.includes-badge-on-image {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  padding: 12px 20px;
  border-radius: 8px;
  backdrop-filter: blur(20px);
  border: 1px solid oklch(72% 0.11 75 / 0.6);
  animation: fadeUp 0.8s ease 0.6s both;
}

.includes-section:not(.dark-mode) .includes-badge-on-image {
  background: oklch(98% 0.015 80 / 0.92);
}

.includes-section.dark-mode .includes-badge-on-image {
  background: oklch(18% 0.035 58 / 0.90);
}

.includes-badge-text {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.includes-content-side {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.includes-header {
  margin-bottom: 42px;
}

.includes-title {
  font-family: 'Playfair Display';
  font-weight: 700;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
  animation: fadeUp 0.6s ease 0.15s both;
}

.includes-section:not(.dark-mode) .includes-title {
  color: var(--espresso);
}

.includes-section.dark-mode .includes-title {
  color: oklch(96% 0.015 80);
}

.includes-subtitle {
  font-family: 'Lato';
  font-weight: 300;
  font-size: 19px;
  line-height: 1.6;
  animation: fadeUp 0.6s ease 0.25s both;
}

.includes-section:not(.dark-mode) .includes-subtitle {
  color: oklch(20% 0.02 60);
}

.includes-section.dark-mode .includes-subtitle {
  color: oklch(82% 0.02 78);
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.includes-list-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid oklch(72% 0.11 75 / 0.15);
  transition: all 0.25s ease;
}

.includes-list-item:last-child {
  border-bottom: none;
}

.includes-check {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  box-shadow: 0 6px 20px oklch(72% 0.11 75 / 0.3);
  font-size: 20px;
}

.includes-list-text {
  flex: 1;
  padding-top: 4px;
}

.includes-item-name {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.includes-section:not(.dark-mode) .includes-item-name {
  color: var(--espresso);
}

.includes-section.dark-mode .includes-item-name {
  color: oklch(95% 0.02 78);
}

.includes-item-description {
  font-family: 'Lato';
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}

.includes-section:not(.dark-mode) .includes-item-description {
  color: #000;
}

.includes-section.dark-mode .includes-item-description {
  color: #000;
}

/* Responsive Includes Section */
@media (max-width: 1024px) {
  .includes-container {
    padding: 70px 32px;
    gap: 50px;
  }

  .includes-image-side {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .includes-section::after {
    background: linear-gradient(120deg, oklch(94% 0.025 78 / 0.65) 0%, oklch(93% 0.028 77 / 0.55) 40%, oklch(92% 0.03 76 / 0.40) 100%) !important;
  }

  .includes-section.dark-mode::after {
    background: linear-gradient(120deg, oklch(15% 0.03 58 / 0.75) 0%, oklch(13% 0.025 56 / 0.65) 40%, oklch(12% 0.025 55 / 0.50) 100%) !important;
  }

  .includes-container {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }

  .includes-image-side {
    height: 420px;
    order: 1;
  }

  .includes-bg-image {
    background-position: center 30%;
  }

  .includes-content-side {
    order: 2;
  }

  .includes-header {
    margin-bottom: 32px;
  }

  .includes-title {
    font-size: clamp(28px, 7vw, 38px);
    margin-bottom: 14px;
  }

  .includes-subtitle {
    font-size: 16px;
  }

  .includes-list {
    gap: 16px;
  }

  .includes-list-item {
    padding: 14px 0;
  }

  .includes-check {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .includes-item-name {
    font-size: 16px;
  }

  .includes-item-description {
    font-size: 13px;
  }

  .includes-badge-on-image {
    bottom: 16px;
    left: 16px;
    padding: 10px 16px;
  }

  .includes-badge-text {
    font-size: 11px;
  }
}

/* ========== SPOTS SECTION STYLES (Cupos Limitados) ========== */

.spots-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.spots-section:not(.dark-mode) {
  background: var(--beige-bg);
}

.spots-section.dark-mode {
  background: oklch(13% 0.025 55);
}

/* Banda de urgencia superior */
.spots-urgency-banner {
  width: 100%;
  padding: 16px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.5s ease both;
}

.spots-section:not(.dark-mode) .spots-urgency-banner {
  background: linear-gradient(90deg, oklch(58% 0.12 70) 0%, oklch(65% 0.11 73) 50%, oklch(58% 0.12 70) 100%);
}

.spots-section.dark-mode .spots-urgency-banner {
  background: linear-gradient(90deg, oklch(35% 0.07 68) 0%, oklch(42% 0.08 70) 50%, oklch(35% 0.07 68) 100%);
}

.spots-urgency-text {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-shadow: 0 2px 4px oklch(0% 0 0 / 0.3);
}

.spots-section:not(.dark-mode) .spots-urgency-text {
  color: white;
}

.spots-section.dark-mode .spots-urgency-text {
  color: oklch(98% 0.015 80);
}

.spots-urgency-icon {
  font-size: 18px;
  animation: pulse-ring 2s ease-in-out infinite;
}

/* Container principal */
.spots-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 48px;
}

.spots-header {
  text-align: center;
  margin-bottom: 60px;
}

.spots-title {
  font-family: 'Playfair Display';
  font-weight: 700;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.15s both;
}

.spots-section:not(.dark-mode) .spots-title {
  color: var(--espresso);
}

.spots-section.dark-mode .spots-title {
  color: oklch(96% 0.015 80);
}

.spots-subtitle {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  animation: fadeUp 0.6s ease 0.25s both;
}

.spots-section:not(.dark-mode) .spots-subtitle {
  color: oklch(20% 0.02 60);
}

.spots-section.dark-mode .spots-subtitle {
  color: oklch(82% 0.02 78);
}

/* Visual de cupos disponibles */
.spots-availability {
  margin-bottom: 50px;
  animation: fadeUp 0.6s ease 0.35s both;
}

.spots-availability-label {
  font-family: 'Lato';
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}

.spots-section:not(.dark-mode) .spots-availability-label {
  color: var(--gold-dark);
}

.spots-section.dark-mode .spots-availability-label {
  color: var(--gold-light);
}

.spots-circles {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.spot-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.spot-circle.taken {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--espresso);
  box-shadow: 0 4px 15px oklch(72% 0.11 75 / 0.4);
}

.spot-circle.available {
  border: 2px dashed var(--gold);
  background: transparent;
}

.spots-section:not(.dark-mode) .spot-circle.available {
  color: var(--gold-dark);
}

.spots-section.dark-mode .spot-circle.available {
  color: var(--gold-light);
}

/* Bandas de información */
.spots-info-bands {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 50px;
}

.spots-band {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  padding: 32px 40px;
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
}

.spots-section:not(.dark-mode) .spots-band {
  background: oklch(96% 0.015 80);
}

.spots-section.dark-mode .spots-band {
  background: oklch(18% 0.035 58 / 0.5);
}

.spots-band:hover {
  border-left-width: 8px;
  padding-left: 36px;
}

.spots-section:not(.dark-mode) .spots-band:hover {
  background: oklch(98% 0.015 80);
  box-shadow: -4px 0 20px oklch(72% 0.11 75 / 0.2);
}

.spots-section.dark-mode .spots-band:hover {
  background: oklch(18% 0.035 58 / 0.7);
  box-shadow: -4px 0 20px oklch(72% 0.11 75 / 0.15);
}

.spots-band-icon {
  font-size: 42px;
  line-height: 1;
  text-align: center;
}

.spots-band-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spots-band-label {
  font-family: 'Lato';
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spots-section:not(.dark-mode) .spots-band-label {
  color: var(--gold-dark);
}

.spots-section.dark-mode .spots-band-label {
  color: var(--gold-light);
}

.spots-band-value {
  font-family: 'Playfair Display';
  font-weight: 600;
  font-size: 26px;
  line-height: 1.3;
}

.spots-section:not(.dark-mode) .spots-band-value {
  color: var(--espresso);
}

.spots-section.dark-mode .spots-band-value {
  color: oklch(95% 0.02 78);
}

/* CTA */
.spots-cta-wrapper {
  text-align: center;
  animation: fadeUp 0.6s ease 0.7s both;
}

.spots-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 55px;
  border-radius: 12px;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: oklch(98% 0.015 80);
  box-shadow: 0 12px 40px oklch(72% 0.11 75 / 0.4);
}

.spots-cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 50px oklch(72% 0.11 75 / 0.5);
}

.spots-cta-note {
  font-family: 'Lato';
  font-weight: 400;
  font-size: 14px;
  font-style: italic;
  margin-top: 12px;
}

.spots-section:not(.dark-mode) .spots-cta-note {
  color: oklch(20% 0.02 60);
}

.spots-section.dark-mode .spots-cta-note {
  color: oklch(80% 0.025 78);
}

/* Responsive Spots Section */
@media (max-width: 1024px) {
  .spots-container {
    padding: 70px 32px;
  }

  .spots-band {
    grid-template-columns: 150px 1fr;
    padding: 28px 32px;
  }

  .spots-band-icon {
    font-size: 38px;
  }

  .spots-band-value {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .spots-urgency-banner {
    padding: 14px 20px;
  }

  .spots-urgency-text {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .spots-urgency-icon {
    font-size: 16px;
  }

  .spots-container {
    padding: 60px 24px;
  }

  .spots-header {
    margin-bottom: 50px;
  }

  .spots-title {
    font-size: clamp(32px, 9vw, 48px);
    margin-bottom: 16px;
  }

  .spots-subtitle {
    font-size: 16px;
  }

  .spots-availability {
    margin-bottom: 40px;
  }

  .spot-circle {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .spots-circles {
    gap: 8px;
  }

  .spots-band {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 16px;
    text-align: center;
  }

  .spots-band-icon {
    font-size: 44px;
  }

  .spots-band-value {
    font-size: 20px;
  }

  .spots-band-label {
    font-size: 11px;
  }

  .spots-info-bands {
    margin-bottom: 40px;
  }

  .spots-cta-button {
    width: 100%;
    padding: 20px 40px;
    font-size: 17px;
  }

  .spots-cta-note {
    font-size: 13px;
  }
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
#whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse-float 2s ease-in-out infinite;
}

#whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

@keyframes pulse-float {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 768px) {
  #whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  #whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}
