

 /* --- Global --- */
 body {
   font-family: 'Poppins', sans-serif;
   background: linear-gradient(to right, #00f2fe);
   color: #333;
 }

 /* --- Navbar --- */
 .navbar {
   background: rgba(0, 0, 0, 0.7) !important;
   padding: 15px;
 }

 .navbar-brand {
   font-weight: bold;
   font-size: 1.5rem;
 }

 .navbar-nav .nav-link {
   font-size: 1.1rem;
   color: #fff !important;
 }

 .navbar-nav .nav-link:hover {
   color: #FFD700 !important; /* Amarillo dorado */
 }
/* --- Hero Section Mejorado --- */
.hero {
    position: relative;
    text-align: center;
    padding: 140px 20px;
    color: #fff;
    background: url('../img/solon-fondo.jpeg') no-repeat center center / cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
  }
  
  /* Fondo Glassmorphism */
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 0;
  }
  
  /* Texto con efecto Neón */
  .hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px #FFD700, 0 0 20px #ffcc00, 0 0 40px #ffcc00;
    animation: neonGlow 1.5s infinite alternate;
  }
  
  .hero p {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 300;
    position: relative;
    z-index: 1;
    color: #f8f9fa;
  }
  
  /* Botón con animación de brillo */
  .hero .btn-reservar {
    font-size: 1.4rem;
    padding: 15px 40px;
    background: linear-gradient(45deg, #FFD700, #ffcc00);
    color: #333;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(255, 223, 0, 0.8);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    border: none;
  }
  
  /* Efecto de brillo al pasar el mouse */
  .hero .btn-reservar:hover {
    background: linear-gradient(45deg, #ffcc00, #FFD700);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 223, 0, 1);
  }
  
  /* Animación de aparición suave */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Animación de efecto Neón 
  @keyframes neonGlow {
    from {
      text-shadow: 0 0 10px #FFD700, 0 0 20px #ffcc00, 0 0 40px #ffcc00;
    }
    to {
      text-shadow: 0 0 20px #FFD700, 0 0 30px #ffcc00, 0 0 60px #ffcc00;
    }
  }*/
  
  /* Responsive para pantallas más pequeñas */
  @media (max-width: 768px) {
    .hero {
      padding: 100px 20px;
      min-height: 80vh;
    }
  
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .hero p {
      font-size: 1.1rem;
    }
  
    .hero .btn-reservar {
      font-size: 1.2rem;
      padding: 12px 30px;
    }
  }
  
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .hero .btn-reservar {
      font-size: 1rem;
      padding: 10px 25px;
    }
  }
  
  /* --- Acceso oculto para profesionales --- */
  #hiddenAccess {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: transparent;
    z-index: 1000;
    cursor: pointer;
    opacity: 0.1;
  }

  #hiddenAccess:hover {
    opacity: 0.3;
  }

  /* --- Modal de Login para Profesionales --- */
  .modal-content {
    border-radius: 10px;
  }

  .modal-header {
    background: #4facfe;
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-body .form-control {
    border-radius: 5px;
  }

  .modal-footer {
    background: #f1f1f1;
  }
  
/* Contenedor del botón flotante */
.containWpp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

/* Estilo del botón de WhatsApp */
.btnWhatsapp {
  background-color: #25d366;
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btnWhatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.4);
}

/* Fondo oscuro del modal */
.overlay-wpp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

/* Contenedor del modal */
.modal-wpp {
  background: white;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Header del modal */
.headerWpp {
  background-color: #25d366;
  color: white;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Botón de cerrar modal */
.closeBtn {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.closeBtn:hover {
  color: #ddd;
}

/* Contenido del modal */
.mensaje {
  padding: 15px;
  font-size: 16px;
}

/* Área de mensaje */
.sendWpp {
  display: flex;
  align-items: center;
  padding: 15px;
  border-top: 1px solid #ddd;
}

.sendWpp textarea {
  flex: 1;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
  resize: none;
  height: 50px;
}

/* Botón de enviar */
.sendWpp button {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
}

.sendWpp button:hover {
  background-color: #1ebe57;
}

/* ============================= */
/* SECCIÓN UNIFICADA: RESERVAR Y CONSULTAR */
/* ============================= */
.unified-section {
     background: linear-gradient(45deg, #ffcc00, #FFD700);
  padding: 60px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unified-container {
  max-width: 800px;
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* Tabs Header */
.tabs-header {
  display: flex;
    background: linear-gradient(45deg, #ffcc00, #FFD700);
  padding: 0;
  gap: 0;
}

.tab-button {
  flex: 1;
  padding: 18px 20px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 3px solid transparent;
}

.tab-button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.tab-button.active {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  border-bottom-color: #FFD700;
}

.tab-button i {
  font-size: 1.2rem;
}

/* Tab Content */
.tab-content {
  padding: 40px 30px;
  display: none;
  animation: slideUp 0.3s ease;
}

.tab-content.active {
  display: block;
}

.tab-title {
  text-align: center;
  margin-bottom: 30px;
}

.tab-title h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.tab-title p {
  color: #999;
  font-size: 1rem;
}

/* Botón Reservar Grande */
.btn-reservar-grande {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 30px;
     background: linear-gradient(45deg, #ffcc00, #FFD700);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(245, 87, 108, 0.3);
}

.btn-reservar-grande:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(221, 245, 87, 0.5);
  color: white;
  text-decoration: none;
}

.btn-reservar-grande i {
  font-size: 1.3rem;
}

/* Formulario de búsqueda */
.buscar-turno-form {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.input-buscar {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-buscar:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-buscar {
  padding: 15px 30px;
  background: linear-gradient(135deg, #667eea 0%, #49474b 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-buscar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Tarjeta de resultado */
.resultado-turno {
  animation: slideUp 0.5s ease;
}

.turno-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  border: 2px solid #f0f0f0;
}

.turno-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.turno-header h3 {
  font-size: 1.5rem;
  color: #333;
  margin: 0;
}

.turno-estado-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
}

.turno-estado-badge.estado-activo {
  background: #d4edda;
  color: #155724;
}

.turno-estado-badge.estado-completado {
  background: #d1ecf1;
  color: #0c5460;
}

/* Detalles del turno */
.turno-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.detalle-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.detalle-item i {
  font-size: 1.3rem;
  color: #667eea;
  flex-shrink: 0;
  margin-top: 3px;
}

.detalle-content label {
  display: block;
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 600;
}

.detalle-content p {
  font-size: 0.95rem;
  color: #333;
  margin: 0;
  font-weight: 500;
}

/* Botones de acción */
.turno-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 2px solid #f0f0f0;
}

.btn-accion {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-editar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-editar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
}

.btn-cancelar-turno {
  background: #f8f9fa;
  color: #f5576c;
  border: 2px solid #f5576c;
}

.btn-cancelar-turno:hover {
  background: #f5576c;
  color: white;
  transform: translateY(-2px);
}

/* No encontrado */
.no-encontrado {
  text-align: center;
  padding: 30px;
}

.no-encontrado i {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 15px;
}

.no-encontrado h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.no-encontrado p {
  color: #999;
  margin-bottom: 20px;
}

/* Animaciones */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .unified-section {
    padding: 40px 15px;
  }

  .unified-container {
    border-radius: 15px;
  }

  .tab-content {
    padding: 25px 20px;
  }

  .tab-title h2 {
    font-size: 1.5rem;
  }

  .tab-button {
    font-size: 0.85rem;
    padding: 15px 10px;
  }

  .buscar-turno-form {
    flex-direction: column;
  }

  .turno-details {
    grid-template-columns: 1fr;
  }

  .turno-actions {
    flex-direction: column;
  }

  .btn-accion {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .unified-section {
    padding: 30px 10px;
  }

  .tab-content {
    padding: 20px 15px;
  }

  .tab-title h2 {
    font-size: 1.2rem;
  }

  .tab-button {
    font-size: 0.75rem;
    padding: 12px 8px;
    gap: 5px;
  }

  .tab-button i {
    font-size: 1rem;
  }

  .input-buscar,
  .btn-buscar {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .btn-reservar-grande {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .turno-card {
    padding: 15px;
  }

  .turno-header h3 {
    font-size: 1.2rem;
  }
}

/* ============================= */
/* TABS DENTRO DEL HERO */
/* ============================= */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.unified-tabs-hero {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
 
}

.tabs-header-hero {
  display: flex;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 0;
  gap: 0;
}

.tab-button-hero {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 3px solid transparent;
}

.tab-button-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.tab-button-hero.active {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  border-bottom-color: #d4af37;
}

.tab-button-hero i {
  font-size: 1rem;
}

.tab-content-hero {
  padding: 30px;
  display: none;
}

.tab-content-hero.active {
  display: block;
  
}

.btn-reservar-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: #1a1a2e;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-reservar-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
  color: #1a1a2e;
  text-decoration: none;
}

.buscar-turno-form-hero {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.input-buscar-hero {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.input-buscar-hero:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-buscar-hero {
  padding: 12px 24px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-buscar-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.resultado-turno-hero {
 
}

.turno-card-hero {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  border: 2px solid #f0f0f0;
}

.turno-header-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #d4af37;
}

.turno-header-hero h3 {
  font-size: 1.3rem;
  color: #1a1a2e;
  margin: 0;
}

.turno-estado-badge-hero {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
}

.turno-estado-badge-hero.estado-activo {
  background: #d4edda;
  color: #155724;
}

.turno-estado-badge-hero.estado-completado {
  background: #d1ecf1;
  color: #0c5460;
}

.turno-details-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.detalle-item-hero {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.detalle-item-hero i {
  font-size: 1.1rem;
  color: #d4af37;
  flex-shrink: 0;
  margin-top: 2px;
}

.detalle-content-hero label {
  display: block;
  font-size: 0.7rem;
  color: #888;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.detalle-content-hero p {
  font-size: 0.9rem;
  color: #1a1a2e;
  margin: 0;
  font-weight: 500;
}

.turno-actions-hero {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 2px solid #f0f0f0;
}

.btn-accion-hero {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.btn-editar-hero {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: #1a1a2e;
}

.btn-editar-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.btn-cancelar-hero {
  background: #f8f9fa;
  color: #d32f2f;
  border: 2px solid #d32f2f;
}

.btn-cancelar-hero:hover {
  background: #d32f2f;
  color: white;
  transform: translateY(-2px);
}

.no-encontrado-hero {
  text-align: center;
  padding: 20px;
}

.no-encontrado-hero i {
  font-size: 2.5rem;
  color: #ddd;
  margin-bottom: 12px;
}

.no-encontrado-hero h3 {
  font-size: 1.1rem;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.no-encontrado-hero p {
  color: #888;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.btn-secondary-hero {
  padding: 10px 20px;
  background: #f0f0f0;
  color: #1a1a2e;
  border: 2px solid #1a1a2e;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background: #1a1a2e;
  color: #d4af37;
}

/* Hero responsive */
@media (max-width: 768px) {
  .unified-tabs-hero {
    margin-top: 30px;
    max-width: 90%;
  }

  .tab-button-hero {
    font-size: 0.85rem;
    padding: 12px 12px;
  }

  .tab-content-hero {
    padding: 20px;
  }

  .buscar-turno-form-hero {
    flex-direction: column;
  }

  .turno-details-hero {
    grid-template-columns: 1fr;
  }

  .turno-actions-hero {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .unified-tabs-hero {
    margin-top: 20px;
    max-width: 95%;
    border-radius: 15px;
  }

  .tab-button-hero {
    font-size: 0.75rem;
    padding: 10px 8px;
    gap: 5px;
  }

  .tab-button-hero i {
    font-size: 0.9rem;
  }

  .tab-content-hero {
    padding: 15px;
  }

  .btn-reservar-hero {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .input-buscar-hero,
  .btn-buscar-hero {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .turno-card-hero {
    padding: 12px;
  }

  .turno-header-hero h3 {
    font-size: 1.1rem;
  }

  .turno-details-hero {
    gap: 10px;
  }

  .btn-accion-hero {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
}
