/* === RETIROS PAGE === */

/* =================== HERO =================== */
.retiro-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #0A1628;
  padding: calc(var(--nav-height, 80px) + 2rem) 1.5rem 3rem;
  overflow: hidden;
}

.retiro-hero .particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.retiro-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.retiro-hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--color-gold);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.retiro-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.retiro-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
}

/* =================== SECCIÓN 1: QUÉ ES =================== */
.que-es {
  background: #050D1A;
  padding: 100px 1.5rem;
  position: relative;
  z-index: 2;
}

.que-es-container {
  max-width: 900px;
  margin: 0 auto;
}

.que-es h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 600;
}

.que-es p {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
  margin-bottom: 1.8rem;
  font-weight: 300;
  text-align: center;
}

.decorative-line {
  width: 120px;
  height: 1px;
  background: var(--color-gold);
  margin: 3rem auto 0;
}

/* =================== SECCIÓN 2: PRESENCIA =================== */
.presencia {
  background: #0A1628;
  padding: 100px 1.5rem;
  position: relative;
  z-index: 2;
}

.presencia-container {
  max-width: 1000px;
  margin: 0 auto;
}

.presencia h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
}

.presencia-subtitle {
  font-style: italic;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  max-width: 680px;
  margin: 0 auto 4rem;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
}

.presencia-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.presencia-card {
  background: #050D1A;
  border-left: 3px solid var(--color-gold);
  padding: 32px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.presencia-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.presencia-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.presencia-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.presencia-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 300;
}

/* =================== SECCIÓN 3: INVERSIÓN =================== */
.inversion-retiro {
  background: #050D1A;
  padding: 100px 1.5rem;
  position: relative;
  z-index: 2;
}

.inversion-retiro-container {
  max-width: 800px;
  margin: 0 auto;
}

.inversion-retiro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 600;
}

.inversion-box {
  background: #0A1628;
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  padding: 60px;
  text-align: center;
}

.inversion-price {
  color: var(--color-white);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 2rem;
}

.inversion-divider {
  width: 80px;
  height: 1px;
  background: var(--color-gold);
  margin: 0 auto 2rem;
}

.inversion-alt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.inversion-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =================== SECCIÓN 4: CÓMO NACE =================== */
.como-nace {
  background: #0A1628;
  padding: 80px 1.5rem;
  position: relative;
  z-index: 2;
}

.como-nace-container {
  max-width: 800px;
  margin: 0 auto;
}

.como-nace h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 3.5rem;
  font-weight: 600;
}

.pasos {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.paso {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}

.paso:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 28px;
  top: 56px;
  bottom: -40px;
  width: 2px;
  background-image: linear-gradient(to bottom, var(--color-gold) 50%, transparent 50%);
  background-size: 2px 8px;
  background-repeat: repeat-y;
}

.paso-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0A1628;
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gold);
  flex-shrink: 0;
  z-index: 1;
}

.paso-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.paso-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
}

.como-nace-cta {
  text-align: center;
  margin-top: 4rem;
}

.como-nace-cta-text {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

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

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

  .inversion-box {
    padding: 40px 24px;
  }

  .inversion-buttons {
    flex-direction: column;
  }

  .inversion-buttons .btn,
  .inversion-buttons .btn-ghost-gold {
    width: 100%;
    text-align: center;
  }

  .paso {
    gap: 18px;
  }

  .paso-circle {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .paso:not(:last-child)::after {
    left: 24px;
    top: 48px;
  }
}

/* =================== LIGHT THEME =================== */
body[data-theme="light"] .retiro-hero {
  background: rgba(245, 243, 238, 0.9);
}

body[data-theme="light"] .retiro-hero h1 {
  color: var(--color-cosmos);
}

body[data-theme="light"] .retiro-hero-subtitle {
  color: rgba(42, 42, 42, 0.6);
}

body[data-theme="light"] .que-es {
  background: #F5F3EE;
}

body[data-theme="light"] .que-es p {
  color: rgba(42, 42, 42, 0.72);
}

body[data-theme="light"] .presencia {
  background: #F0EBE0;
}

body[data-theme="light"] .presencia-subtitle {
  color: rgba(42, 42, 42, 0.6);
}

body[data-theme="light"] .presencia-card {
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

body[data-theme="light"] .presencia-card h3 {
  color: var(--color-cosmos);
}

body[data-theme="light"] .presencia-card p {
  color: rgba(42, 42, 42, 0.72);
}

body[data-theme="light"] .inversion-retiro {
  background: #F5F3EE;
}

body[data-theme="light"] .inversion-box {
  background: #FFFFFF;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .inversion-price {
  color: var(--color-cosmos);
}

body[data-theme="light"] .inversion-alt {
  color: rgba(42, 42, 42, 0.72);
}

body[data-theme="light"] .como-nace {
  background: #F0EBE0;
}

body[data-theme="light"] .paso-circle {
  background: #FFFFFF;
}

body[data-theme="light"] .paso-content p {
  color: rgba(42, 42, 42, 0.72);
}

body[data-theme="light"] .como-nace-cta-text {
  color: rgba(42, 42, 42, 0.7);
}
