/* ==================== TRANSITOS.CFM ==================== */

/* ==================== FUENTES ASTROLÓGICAS ==================== */
@font-face {
  font-family: "PIXymbols";
  src: url("/fonts/3fb2f7d6bc31fb47529e80229a297c3f.eot");
  src: url("/fonts/3fb2f7d6bc31fb47529e80229a297c3f.eot?#iefix") format("embedded-opentype"),
       url("/fonts/3fb2f7d6bc31fb47529e80229a297c3f.woff2") format("woff2"),
       url("/fonts/3fb2f7d6bc31fb47529e80229a297c3f.woff") format("woff"),
       url("/fonts/3fb2f7d6bc31fb47529e80229a297c3f.ttf") format("truetype"),
       url("/fonts/3fb2f7d6bc31fb47529e80229a297c3f.svg#PIXymbols Astrology W95 Reg") format("svg");
}

@font-face {
  font-family: "GE Zodiac";
  src: url("/fonts/c280d69fdfb2c9703010591ac110120f.eot");
  src: url("/fonts/c280d69fdfb2c9703010591ac110120f.eot?#iefix") format("embedded-opentype"),
       url("/fonts/c280d69fdfb2c9703010591ac110120f.woff2") format("woff2"),
       url("/fonts/c280d69fdfb2c9703010591ac110120f.woff") format("woff"),
       url("/fonts/c280d69fdfb2c9703010591ac110120f.ttf") format("truetype"),
       url("/fonts/c280d69fdfb2c9703010591ac110120f.svg#GE Zodiac") format("svg");
}

/* ==================== CLASES COMPARTIDAS (panel.css no se carga aquí) ==================== */
.main-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.content-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 32px;
}

.page-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
}

/* ==================== LAYOUT ==================== */
.transitos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.transitos-semana-label {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}

.transitos-back-link {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: none;
  padding-top: 6px;
  transition: color var(--transition-speed) ease;
}

.transitos-back-link:hover {
  color: var(--accent-color);
}

/* ==================== EMPTY STATE ==================== */
.transitos-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-light);
}

.transitos-empty__icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
  opacity: 0.35;
}

/* ==================== UNIVERSALES ==================== */
.transitos-universales-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.transitos-ev {
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  padding: 18px 20px;
  background: white;
  transition: border-color var(--transition-speed) ease;
}

.transitos-ev:hover {
  border-color: var(--accent-color);
}

.transitos-ev__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.transitos-ev__simbolo-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  min-width: 56px;
}

.transitos-ev__pix {
  font-family: 'PIXymbols', sans-serif;
  font-size: 22px;
  line-height: 1;
  color: var(--primary-color);
}

.transitos-ev__gez {
  font-family: 'GE Zodiac', sans-serif;
  font-size: 22px;
  line-height: 1;
  color: var(--primary-color);
}

.transitos-ev__retro {
  font-size: 16px;
  color: var(--warning-color);
  font-weight: 600;
  margin-left: 2px;
}

.transitos-ev__arrow {
  font-size: 14px;
  color: var(--text-light);
  margin: 0 1px;
}

.transitos-ev__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.transitos-ev__texto {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-left: 70px;
}

/* Colores por tipo de evento */
.transitos-ev--retro {
  border-left: 3px solid var(--warning-color);
}

.transitos-ev--luna-nueva {
  border-left: 3px solid #2a3548;
}

.transitos-ev--luna-llena {
  border-left: 3px solid var(--accent-color);
}

.transitos-ev--ingreso {
  border-left: 3px solid #10b981;
}

/* ==================== TEASER FREE ==================== */
.transitos-teaser {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, #f0f4ff 0%, #faf0ff 100%);
  border: 1.5px solid #d0d8ff;
  border-radius: 12px;
}

.transitos-teaser__icon {
  font-size: 36px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.transitos-teaser__titulo {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.5;
}

.transitos-teaser__subtitulo {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}

.transitos-teaser__btn {
  display: inline-block;
  padding: 13px 32px;
  background: var(--primary-color);
  color: white;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  margin-bottom: 14px;
}

.transitos-teaser__btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 53, 72, 0.25);
}

.transitos-teaser__precio {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ==================== PERSONALES: LISTA TRÁNSITOS ==================== */
.transitos-personales-lista {
  background: var(--bg-light);
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 0 auto 24px auto;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}

.transitos-personales-lista__titulo {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.transito-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.transito-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.transito-row:first-of-type {
  padding-top: 0;
}

.transito-row__simbolos {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  min-width: 64px;
}

.transito-row__pix {
  font-family: 'PIXymbols', sans-serif;
  font-size: 18px;
  line-height: 1;
  color: var(--primary-color);
}

.transito-row__pix--natal {
  color: var(--accent-color);
}

.transito-row__pix--texto {
  font-family: 'Roboto', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--accent-color);
  line-height: 1;
}

.transito-row__aspecto-pix {
  font-family: 'PIXymbols', sans-serif;
  font-size: 14px;
  line-height: 1;
  color: var(--text-light);
  margin: 0 2px;
}

.transito-row__info {
}

.transito-row__nombre {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.4;
}

.transito-row__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
  cursor: default;
}

.transito-row__badge--aplic {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.transito-row__badge--perf {
  background: #e3f2fd;
  color: #1565c0;
  border: 1px solid #bbdefb;
}

/* ==================== PERSONALES: ANÁLISIS NARRATIVO ==================== */
.transitos-analisis {
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  padding: 24px 28px;
}

.transitos-analisis__titulo {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.transitos-analisis__texto p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 16px;
}

.transitos-analisis__texto p:last-child {
  margin-bottom: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 640px) {
  .content-card {
    padding: 24px 16px;
  }

  .transitos-ev__texto {
    margin-left: 0;
    margin-top: 10px;
  }

  .transitos-ev__header {
    gap: 10px;
  }

  .transitos-teaser {
    padding: 36px 20px;
  }

  .transitos-personales-lista {
    padding: 16px;
  }

  .transitos-analisis {
    padding: 18px 16px;
  }

  .transito-row__nombre {
    font-size: 12px;
  }
}
