/* ============================================
   GESTIÓN DE CITAS - SOLO CAMBIOS ESPECÍFICOS
   ============================================ */

/* ============================================
   BOTÓN ESCRÍBENOS - MÁS SUTIL
   ============================================ */
.nav-cta {
  background: #059669 !important;
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
}

.citas-page .nav-cta:hover {
  background: #04da96 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35) !important;
}

.citas-page .nav-cta i {
  font-size: 0.9rem;
}

/* Botón mobile igual */
.citas-page .nav-cta-mobile {
  background: #10b981 !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  padding: 0.75rem 1.5rem !important;
  justify-content: center !important;
  margin-top: 1rem !important;
  border: none !important;
  font-weight: 600 !important;
}

/* ============================================
   HERO - FONDO AZUL GRADIENTE
   ============================================ */
.citas-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%) !important;
}

.citas-hero .hero-content h1 span {
  color: #60a5fa;
}

/* Tag del hero */
.citas-hero .hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

/* Floating cards - ajustes de color */
.citas-hero .floating-card-1 i {
  color: #10b981;
}

.citas-hero .floating-card-2 i {
  color: #fbbf24;
}

/* ============================================
   BOTÓN AGENDA AHORA - VERDE
   ============================================ */
.citas-hero .btn-primary {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4) !important;
}

.citas-hero .btn-primary:hover {
  background: linear-gradient(135deg, #34d399, #10b981) !important;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5) !important;
}

/* ============================================
   BOTÓN SOLICITAR CITA - VERDE IGUAL A ESCRÍBENOS
   ============================================ */
.citas-page .btn-submit {
  background: #059669 !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  padding: 1rem 2rem !important;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4) !important;
  transition: all 0.3s ease !important;
}

.citas-page .btn-submit:hover {
  background: #04da96 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.5) !important;
}

/* ============================================
   PROCESO - ICONOS AZULES
   ============================================ */
.citas-page .step-number-elegant {
  background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
}

/* ============================================
   CTA - AZUL
   ============================================ */
.citas-page .cta-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
}

/* ============================================
   SERVICIOS - ICONOS AZULES + MÁS POPULAR CORREGIDO
   ============================================ */
.citas-page .service-icon {
  background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.citas-page .service-link {
  color: #1e40af;
}

.citas-page .service-link:hover {
  color: #3b82f6;
}

/* MÁS POPULAR - DISEÑO CORREGIDO */
.citas-page .service-card.featured {
  border: 2px solid #3b82f6 !important;
  transform: scale(1.02) !important;
  position: relative !important;
  overflow: hidden !important;
}

.citas-page .service-card.featured::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 5px !important;
  background: linear-gradient(90deg, #3b82f6, #1e40af) !important;
  transform: scaleX(0) !important;
  transition: transform 0.3s ease !important;
}

.citas-page .service-card.featured:hover::before {
  transform: scaleX(1) !important;
}

.citas-page .service-card.featured:hover {
  transform: scale(1.02) translateY(-8px) !important;
}

.citas-page .popular-badge {
  position: absolute !important;
  top: 20px !important;
  right: -35px !important;
  background: #3b82f6 !important;
  color: #ffffff !important;
  padding: 8px 40px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  transform: rotate(45deg) !important;
  z-index: 10 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
}

/* ============================================
   FOOTER - AZUL OSCURO
   ============================================ */

footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%) !important;
}