/* CSS Portal de Guías - TuFreeTour */

/* Hero para Guías */
.guide-hero {
  padding: 160px 0 80px 0;
  background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(56, 189, 248, 0.12) 0%, transparent 50%);
}

.guide-hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.badge-guide {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

[data-theme="light"] .badge-guide {
  background-color: rgba(99, 102, 241, 0.1);
  color: #4f46e5;
  border-color: rgba(99, 102, 241, 0.15);
}

.guide-hero-title {
  font-family: var(--font-family-title);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .guide-hero-title {
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.guide-hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.guide-hero-buttons {
  display: flex;
  gap: 1.5rem;
}

/* Card Mockup de Finanzas */
.guide-preview-card {
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  position: relative;
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.wallet-accent {
  font-size: 1.5rem;
  color: var(--primary);
}

.preview-header h3 {
  font-family: var(--font-family-title);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.preview-earnings {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.earnings-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.earnings-val {
  font-family: var(--font-family-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-top: 0.25rem;
}

.preview-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.preview-stat-box {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--bg-card-border);
  padding: 1rem;
  border-radius: 0.75rem;
  text-align: center;
}

[data-theme="light"] .preview-stat-box {
  background-color: rgba(0, 0, 0, 0.03);
}

.stat-num {
  display: block;
  font-family: var(--font-family-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
}

.stripe-connection-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 0.85rem;
}

.stripe-connection-status.connected {
  background-color: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #34d399;
}

[data-theme="light"] .stripe-connection-status.connected {
  background-color: rgba(5, 150, 105, 0.08);
  color: #059669;
}

/* Pasos para el Guía */
.guide-steps-section {
  padding: 100px 0;
  border-top: 1px solid var(--bg-card-border);
}

.guide-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.guide-step-card {
  position: relative;
  padding: 3.5rem 2rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.guide-step-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  background-color: rgba(30, 41, 59, 0.8);
}

.guide-step-num {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--font-family-title);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

[data-theme="light"] .guide-step-num {
  color: rgba(15, 23, 42, 0.04);
}

.guide-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(56, 189, 248, 0.15) 100%);
  border: 1px solid rgba(99, 102, 241, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.guide-step-card h3 {
  font-family: var(--font-family-title);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.guide-step-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* Sección de Beneficios / Lista de pros */
.guide-benefits-section {
  padding: 100px 0;
  background-color: rgba(15, 23, 42, 0.2);
  border-top: 1px solid var(--bg-card-border);
}

.benefits-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.benefits-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--bg-card-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.benefits-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s;
}

.benefits-image:hover .benefits-img {
  transform: scale(1.03);
}

.benefits-content {
  text-align: left;
}

.benefits-content .section-title {
  margin-bottom: 1.5rem;
}

.benefits-intro {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.list-check {
  font-size: 1.25rem;
  color: var(--success);
  margin-top: 0.2rem;
}

.benefits-list li strong {
  color: var(--text-main);
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.benefits-list li div {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.benefits-cta {
  display: flex;
}

/* Responsividad Portal */
@media (max-width: 992px) {
  .guide-hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .guide-hero-graphic {
    display: flex;
    justify-content: center;
  }
  .guide-preview-card {
    max-width: 480px;
    width: 100%;
  }
  .guide-steps-grid {
    grid-template-columns: 1fr;
  }
  .benefits-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .benefits-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .guide-hero-title {
    font-size: 2.25rem;
  }
  .guide-hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .guide-preview-card {
    padding: 1.5rem;
  }
  .earnings-val {
    font-size: 2rem;
  }
}
