/* === ORGANIZACIONES PAGE === */

/* =================== HERO =================== */
.org-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;
}

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

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

.org-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;
}

.org-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;
}

.org-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: PROBLEMA =================== */
.problema {
  background: #050D1A;
  padding: 100px 1.5rem;
  position: relative;
  z-index: 2;
}

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

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

.problema 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;
}

.problema-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 3rem;
}

.problema-pill {
  background: #0A1628;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  flex: 1;
  min-width: 260px;
  max-width: 280px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.problema-pill:hover {
  border-color: var(--color-gold);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.problema-numero {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.problema-pill p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
  text-align: center;
}

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

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

.transforma 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;
  line-height: 1.3;
}

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

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

.transforma-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;
}

.transforma-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.transforma-icon {
  margin-bottom: 1.2rem;
}

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

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

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

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

.problemas-acordeon 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;
  line-height: 1.3;
}

.acordeon {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.acordeon-item {
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.acordeon-item.active {
  border-color: var(--color-gold);
}

.acordeon-pregunta {
  width: 100%;
  background: #0A1628;
  border: none;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.3s ease;
}

.acordeon-pregunta:hover {
  background: #0D1F33;
}

.acordeon-flecha {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 4px;
}

.acordeon-item.active .acordeon-flecha {
  transform: rotate(-135deg);
}

.acordeon-respuesta {
  max-height: 0;
  overflow: hidden;
  background: #050D1A;
  transition: max-height 0.4s ease;
}

.acordeon-respuesta p {
  padding: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.8;
  font-weight: 300;
}

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

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

.alianza 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;
}

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

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

.alianza-card {
  background: #050D1A;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 48px;
  border-radius: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.alianza-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
}

.alianza-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 1rem;
}

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

.alianza-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.8;
  font-weight: 300;
}

/* =================== SECCIÓN 5: CLUB =================== */
.club {
  background: #050D1A;
  padding: 100px 1.5rem;
  position: relative;
  z-index: 2;
}

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

.club 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;
}

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

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

.club-card {
  background: #0A1628;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 32px 20px;
  border-radius: 12px;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.club-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
}

.club-destacada {
  border: 2px solid var(--color-gold);
}

.club-nucleo {
  border: 3px solid var(--color-gold);
  background: linear-gradient(180deg, #0A1628 0%, #050D1A 100%);
}

.club-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: 4px 12px;
  border-radius: 20px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 1rem;
}

.club-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.8rem;
}

.club-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.6;
  font-weight: 300;
}

/* =================== SECCIÓN 6: ROI =================== */
.roi {
  background: #0A1628;
  padding: 80px 1.5rem;
  position: relative;
  z-index: 2;
}

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

.roi 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;
}

.roi-subtitle {
  font-style: italic;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
  font-size: 1.05rem;
  font-weight: 300;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 3rem;
}

.roi-col h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.roi-col ul {
  list-style: none;
}

.roi-col li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  padding: 8px 0 8px 16px;
  border-left: 2px solid var(--color-gold);
  margin-bottom: 4px;
}

.roi-caja {
  background: #050D1A;
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.roi-caja p {
  color: var(--color-white);
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  font-weight: 300;
}

/* =================== SECCIÓN 7: PASOS =================== */
.pasos {
  background: #050D1A;
  padding: 80px 1.5rem;
  position: relative;
  z-index: 2;
}

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

.pasos 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;
}

.pasos-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 60px;
}

.pasos-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background-image: linear-gradient(to bottom, var(--color-gold) 50%, transparent 50%);
  background-size: 2px 8px;
  background-repeat: repeat-y;
}

.paso {
  position: relative;
}

.paso-num {
  position: absolute;
  left: -60px;
  top: 0;
  width: 48px;
  height: 48px;
  background: #0A1628;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold);
  z-index: 1;
}

.paso-content h3 {
  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.8;
  font-weight: 300;
}

.pasos-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-large {
  font-size: 1.05rem;
  padding: 1.1rem 2.5rem;
}

/* =================== SECCIÓN 8: CIERRE =================== */
.cierre {
  background: #0A1628;
  padding: 80px 1.5rem;
  position: relative;
  z-index: 2;
}

.cierre-container {
  max-width: 700px;
  margin: 0 auto;
}

.cierre-caja {
  background: #050D1A;
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
}

.cierre-cita {
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.cierre-texto {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

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

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

  .club-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .club-card {
    min-width: 260px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}

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

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

  .alianza-card {
    padding: 32px 24px;
  }

  .roi-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .roi-caja {
    padding: 28px 20px;
  }

  .roi-caja p {
    font-size: 17px;
  }

  .cierre-caja {
    padding: 40px 24px;
  }

  .cierre-cita {
    font-size: 18px;
  }

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

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

  .pasos-timeline {
    padding-left: 56px;
  }

  .paso-num {
    left: -56px;
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
}

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

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

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

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

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

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

body[data-theme="light"] .problema-pill p {
  color: rgba(42, 42, 42, 0.65);
}

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

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

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

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

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

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

body[data-theme="light"] .acordeon-item {
  border-color: rgba(184, 148, 31, 0.25);
}

body[data-theme="light"] .acordeon-pregunta {
  background: #FFFFFF;
  color: var(--color-cosmos);
}

body[data-theme="light"] .acordeon-pregunta:hover {
  background: #FAF8F3;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body[data-theme="light"] .roi-col h3 {
  border-bottom-color: rgba(184, 148, 31, 0.3);
}

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

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

body[data-theme="light"] .roi-caja p {
  color: var(--color-cosmos);
}

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

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

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

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

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

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

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

/* === FAQ Institucional === */
.faq-institucional {
  padding: 100px 24px;
}

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

.faq-institucional h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 20px 24px;
  background: rgba(212, 175, 55, 0.03);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-gold);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  margin-left: 12px;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

body[data-theme="light"] .faq-item {
  background: #FFFFFF;
  border-color: rgba(212, 175, 55, 0.3);
}

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