/* CSS Principal - Sistema de Diseño TuFreeTour */

:root {
  --bg-main: #0f172a;
  --bg-card: rgba(30, 41, 59, 0.7);
  --bg-card-border: rgba(255, 255, 255, 0.08);
  --primary: #38bdf8;
  --primary-hover: #0ea5e9;
  --secondary: #6366f1;
  --secondary-hover: #4f46e5;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --success: #10b981;
  --error: #ef4444;
  --font-family-title: 'Outfit', sans-serif;
  --font-family-body: 'Inter', sans-serif;
}

/* Tema Claro (Día) */
[data-theme="light"] {
  --bg-main: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.75);
  --bg-card-border: rgba(15, 23, 42, 0.08);
  --primary: #0284c7;
  --primary-hover: #0369a1;
  --secondary: #4f46e5;
  --secondary-hover: #4338ca;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --success: #059669;
  --error: #dc2626;
}

[data-theme="light"] .main-header {
  background-color: rgba(248, 250, 252, 0.85);
}

[data-theme="light"] .main-footer {
  background-color: #f1f5f9;
}

[data-theme="light"] .step-card {
  background-color: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] input,
[data-theme="light"] select {
  background-color: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.15);
}

[data-theme="light"] input:focus,
[data-theme="light"] select:focus {
  border-color: var(--primary);
  background-color: #fff;
}

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

[data-theme="light"] .route-progress-sim {
  background-color: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .app-badge {
  background-color: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .cta-card h2 {
  color: #0f172a;
}

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

/* Reset y Estilos Generales */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-family-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Gradients */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-family-title);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #0f172a;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(56, 189, 248, 0.3);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--bg-card-border);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--text-muted);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-xs {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 0.35rem;
}

.quick-login-container {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--bg-card-border);
  text-align: center;
}

.quick-login-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.quick-login-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Glassmorphism Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--bg-card-border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bg-card-border);
  z-index: 100;
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-family-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.logo .highlight {
  color: var(--primary);
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  gap: 1rem;
}

/* Hero Section */
.hero-section {
  padding: 160px 0 80px 0;
  background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.1) 0%, transparent 50%);
}

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

.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: var(--primary);
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-family-title);
  font-size: 3.5rem;
  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;
}

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

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.app-downloads {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.download-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.download-icons {
  display: flex;
  gap: 1rem;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bg-card-border);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Hero Graphic Card */
.hero-graphic {
  position: relative;
}

.main-graphic-card {
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.main-graphic-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.card-header-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bg-card-border);
}

.avatar-sm {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.header-info h4 {
  font-family: var(--font-family-title);
  font-size: 1.1rem;
}

.rating {
  font-size: 0.85rem;
  color: #fbbf24;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.card-body-route h3 {
  font-family: var(--font-family-title);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.route-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.route-progress-sim {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.progress-bar-container {
  height: 6px;
  background-color: #334155;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 3px;
}

.progress-text {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
}

.media-unlock-alert {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 1rem;
  border-radius: 0.5rem;
}

.unlock-icon {
  font-size: 1.5rem;
  color: var(--success);
}

.unlock-details {
  display: flex;
  flex-direction: column;
}

.unlock-details strong {
  font-size: 0.9rem;
  color: #fff;
}

.unlock-details span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.animated-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* How It Works Section */
.how-it-works-section {
  padding: 100px 0;
  border-top: 1px solid var(--bg-card-border);
}

.text-center {
  text-align: center;
}

.section-title {
  font-family: var(--font-family-title);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 4rem auto;
  font-size: 1.1rem;
}

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

.step-card {
  background-color: rgba(30, 41, 59, 0.4);
  border: 1px solid var(--bg-card-border);
  border-radius: 1rem;
  padding: 3rem 2rem;
  transition: all 0.3s;
}

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

.step-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.step-icon {
  font-size: 1.8rem;
  color: var(--primary);
}

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

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Become a Guide Section */
.become-guide-section {
  padding: 80px 0;
  background: radial-gradient(circle at 10% 30%, rgba(56, 189, 248, 0.08) 0%, transparent 40%);
}

.cta-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem;
}

.cta-content h2 {
  font-family: var(--font-family-title);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cta-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-metrics {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.metric-item {
  border-left: 3px solid var(--primary);
  padding-left: 1.5rem;
}

.metric-num {
  font-family: var(--font-family-title);
  font-size: 3rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  color: var(--text-main);
  background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
}

/* Footer */
.main-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--bg-card-border);
  background-color: #0b0f19;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--primary);
}

/* Modals System */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close-btn:hover {
  color: var(--error);
}

.modal-tabs {
  display: flex;
  border-bottom: 2px solid var(--bg-card-border);
  margin-bottom: 2rem;
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-family-title);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Forms styling inside modal */
.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.form-title {
  font-family: var(--font-family-title);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--bg-card-border);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
}

.form-group select option {
  background-color: var(--bg-main);
}

.alert-message {
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  display: none;
}

.alert-message.error {
  background-color: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.alert-message.success {
  background-color: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #a7f3d0;
}

.form-switch-prompt {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-switch-prompt a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.form-switch-prompt a:hover {
  text-decoration: underline;
}

/* Responsividad */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-graphic {
    display: flex;
    justify-content: center;
  }
  .main-graphic-card {
    transform: none;
    max-width: 500px;
    width: 100%;
  }
  .cta-card {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .header-actions, .main-nav {
    display: none;
  }
}

/* --- ESTILOS ADICIONALES PARA LA PÁGINA PRINCIPAL (CAROUSEL, TESTIMONIOS, FAQs) --- */

/* Carrusel de Tours */
.featured-tours-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.carousel-container-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
}

.carousel-viewport {
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0.5rem;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.tour-card {
  flex: 0 0 calc(33.333% - 1.333rem);
  min-width: 300px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 30px -10px rgba(56, 189, 248, 0.2);
}

.tour-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.tour-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-image {
  transform: scale(1.05);
}

.tour-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-family-title);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.badge-free {
  background-color: var(--success);
  color: #fff;
}

.badge-paid {
  background-color: var(--secondary);
  color: #fff;
}

.tour-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card-title {
  font-family: var(--font-family-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
  line-height: 1.3;
}

.tour-card-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.tour-rating .stars {
  color: #fbbf24;
  font-weight: 600;
  font-size: 0.9rem;
}

.tour-rating .reviews-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tour-card-guide {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bg-card-border);
  margin-bottom: 1.5rem;
}

.avatar-xs {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--primary);
}

.guide-name {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.guide-name strong {
  color: var(--text-main);
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--bg-card-border);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.carousel-nav-btn:hover {
  background-color: var(--primary);
  color: #0f172a;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

.carousel-nav-btn.prev {
  left: 1rem;
}

.carousel-nav-btn.next {
  right: 1rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--bg-card-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background-color: var(--primary);
  width: 24px;
  border-radius: 5px;
}

.no-tours, .loading-tours {
  width: 100%;
  padding: 3rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Testimonios */
.testimonials-section {
  padding: 100px 0;
  background-color: rgba(15, 23, 42, 0.3);
  border-top: 1px solid var(--bg-card-border);
  border-bottom: 1px solid var(--bg-card-border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
  text-align: left;
  transition: all 0.3s;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.testimonial-text {
  font-size: 0.975rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-info h4 {
  font-family: var(--font-family-title);
  font-size: 1rem;
  font-weight: 600;
}

.user-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQs Acordeón */
.faqs-section {
  padding: 100px 0;
  background: radial-gradient(circle at 10% 90%, rgba(99, 102, 241, 0.04) 0%, transparent 50%);
}

.faqs-accordion {
  max-width: 800px;
  margin: 3rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-family: var(--font-family-title);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  transition: color 0.3s;
}

.faq-icon {
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 2rem;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-bottom: 1.5rem;
}

/* faq-item active state */
.faq-item.active {
  border-color: var(--primary);
  background: rgba(30, 41, 59, 0.85);
}

.faq-item.active .faq-question h3 {
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

/* Modificaciones de responsividad adicionales */
@media (max-width: 992px) {
  .tour-card {
    flex: 0 0 calc(50% - 1rem);
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .tour-card {
    flex: 0 0 100%;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .carousel-container-wrapper {
    padding: 0 2.5rem;
  }
  .carousel-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .carousel-nav-btn.prev {
    left: 0;
  }
  .carousel-nav-btn.next {
    right: 0;
  }
  .faq-question {
    padding: 1.25rem 1.5rem;
  }
  .faq-answer {
    padding: 0 1.5rem;
  }
}
