:root {
  --bg-color: #05060a;
  --bg-elevated: #121212;
  --bg-elevated-soft: #1a1a1a;
  --accent: #4f8cff;
  --accent-soft: rgba(79, 140, 255, 0.15);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --border-subtle: #333;
  --danger: #ff5c7a;
  --success: #4fd1a5;
}

/* ============================================
   CONTENEDOR PRINCIPAL (MISMO ESTILO QUE EVENTOS)
   ============================================ */

#city-guide-app {
  max-width: 1200px;
  margin: 0 auto;
  background: #121212;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================
   HEADER (MISMO ESTILO QUE EL HEADER DE EVENTOS)
   ============================================ */

.guide-header {
  background: #1a1a1a;
  padding: 32px 20px;
  text-align: center;
  border-bottom: 1px solid #333;
}

.guide-header h1 {
  margin: 0 0 6px 0;
  font-size: 44px;
  font-weight: 700;
  color: #f3f4f6;
}

.guide-header h2 {
  margin: 0 0 12px 0;
  font-size: 28px;
  opacity: 0.8;
  color: #f3f4f6;
}

.intro-text {
  margin: 0 auto;
  max-width: 700px;
  color: #9ca3af;
  font-size: 18px;
  line-height: 1.5;
}

/* Selector de ciudades */
.city-selector {
  margin-top: 20px;
}

.city-selector label {
  font-size: 14px;
  color: #9ca3af;
}

.city-selector select {
  margin-top: 6px;
  background: #121212;
  color: #f3f4f6;
  border-radius: 10px;
  border: 1px solid #333;
  padding: 10px 14px;
  font-size: 16px;
  outline: none;
  cursor: pointer;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-title {
  margin: 0;
  padding: 24px 20px;
  font-size: 26px;
  font-weight: 600;
  color: #f3f4f6 !important;
  background: #121212;
}

/* ============================================
   SECCIONES
   ============================================ */

.section {
  margin: 0;
  border-bottom: 1px solid #333;
  background: radial-gradient(circle at top left, rgba(79, 140, 255, 0.05), transparent 60%);
}

.section-toggle {
  width: 100%;
  text-align: left;
  padding: 22px 20px;
  background: #1a1a1a;
  border: none;
  color: #f3f4f6;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s ease;
}

.section-toggle:hover {
  background: #222;
}

.section-toggle.open {
  background: #222;
  border-bottom: 1px solid var(--accent);
}

.section-toggle .chevron {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.section-toggle.open .chevron {
  transform: rotate(180deg);
}

/* ============================================
   CONTENIDO DESPLEGABLE (MEJORADO)
   ============================================ */

.section-content {
  display: none;
  padding: 24px 20px;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.08), rgba(79, 140, 255, 0.02));
  border-left: 4px solid var(--accent);
  color: #f3f4f6;
  font-size: 20px;
  line-height: 1.6;
  animation: fadeIn 0.3s ease-in-out;
}

.section-content.open {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-content p {
  margin: 0 0 14px;
}

.section-content ul {
  margin: 0;
  padding-left: 22px;
}

.section-content li {
  margin-bottom: 10px;
}

/* ============================================
   CHECKLIST (MEJORADO)
   ============================================ */

.checklist {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

.checklist li {
  margin-bottom: 14px;
}

.checklist label {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #f3f4f6;
  line-height: 1.5;
  cursor: pointer;
}

.checklist input[type="checkbox"] {
  margin-right: 12px;
  transform: scale(1.3);
  accent-color: var(--accent);
  cursor: pointer;
}

.progress {
  margin-top: 18px;
  font-size: 18px;
  color: var(--accent);
  font-weight: 500;
}


/* ============================================
   SUMMARY
   ============================================ */

.summary-section {
  padding: 28px 20px;
  background: #1a1a1a;
}

.summary-section h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--success);
}

.summary-section p {
  margin: 0;
  color: #9ca3af;
  font-size: 18px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 720px) {
  .guide-header h1 {
    font-size: 32px;
  }

  .guide-header h2 {
    font-size: 22px;
  }

  .intro-text {
    font-size: 16px;
  }

  .section-toggle {
    font-size: 18px;
  }

  .section-content {
    font-size: 18px;
  }
}


/* MAS FORMATO EN LOS DESPLEGABLES*/
.section-content p {
  margin: 0 0 14px;
  font-size: 20px;
  color: #e5e7eb;
}

.section-content strong {
  color: #ffffff;
  font-weight: 600;
}

.section-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.section-content li {
  margin-bottom: 10px;
  font-size: 18px;
  color: #d1d5db;
}

.section-content a {
  color: var(--accent);
  text-decoration: underline;
}

.section-content h4 {
  font-size: 22px;
  margin: 24px 0 12px;
  color: var(--accent);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 6px;
}

/* ============================================
   TIPOS DE CONTENIDO EN DESPLEGABLES
   ============================================ */

.tip-good {
  background: linear-gradient(135deg, rgba(100, 255, 180, 0.08), rgba(50, 255, 150, 0.04));
  border-left: 4px solid #4caf50;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 14px;
  color: #a7f3d0;
  font-size: 20px;
  line-height: 1.6;
}

.tip-info {
  background: linear-gradient(135deg, rgba(255, 200, 100, 0.08), rgba(255, 180, 50, 0.04));
  border-left: 4px solid #ff9800;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 14px;
  color: #fcd34d;
  font-size: 20px;
  line-height: 1.6;
}

.tip-warning {
  background: linear-gradient(135deg, rgba(255, 100, 100, 0.08), rgba(255, 50, 50, 0.04));
  border-left: 4px solid #f44336;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 14px;
  color: #fca5a5;
  font-size: 20px;
  line-height: 1.6;
}
