body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
  }
  
  .background {
    background: url('../Images/fondo-prueba.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    width: 100%;
  }
  
  /* Centrar el widget */
  .chat-widget {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 9999;
    max-width: 90%;
    height: auto;
    display: flex !important;
    opacity: 1 !important;
  }
  .login-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 90%;
  }
  
  .login-container h1 {
    color: #4b136b;
    margin-bottom: 20px;
  }
  
  .login-container input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
  }
  
  .login-container button {
    background: #b13d84;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
  }
  
  .login-container button:hover {
    background: #8e2769;
  }
  
  .login-container .info {
    font-size: 14px;
    color: #555;
    margin-top: 16px;
  }

  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 12px 20px;
  }
  
  .nav-container {
    
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #4b136b;
    text-decoration: none;
  }
  
  .nav-links a {
    margin-left: 20px;
    color: #4b136b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #b13d84;
  }
  
  @media screen and (max-width: 600px) {
    .nav-container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav-links {
        display: flex;
        align-items: center;
        gap: 20px;
      }
  
    .nav-links a {
      margin: 10px 0;
    }
  }
  .usuario {
    margin-left: 20px;
    font-weight: 500;
    color: #555;
  }
  .usuario-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 20px;
  }
  
  .usuario-btn {
    background: none;
    border: none;
    color: #4b136b;
    font-weight: 500;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding: 8px;
  }
  
  .texto-suscripcion {
    font-size: 14px;
    color: #4b136b;
    margin-top: 4px;
    text-align: center;
    font-weight: 500;
  }
  
  .usuario-menu {
    display: none;
    position: absolute;
    background: #fff;
    color: #333;
    right: 0;
    top: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 160px;
    z-index: 999;
  }
  
  .usuario-menu.visible {
    display: block;
  }
  
  .usuario-menu a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #333;
  }
  
  .usuario-menu a:hover {
    background: #f5f5f5;
  }
  .btn {
    padding: 10px 16px;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
  }
  
  .btn-primary {
    background-color: #4b136b;
    color: white;
  }
  
  .btn-secundario {
    background-color: #ccc;
    color: black;
  }
  .tabla-sesiones {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  .tabla-sesiones th,
  .tabla-sesiones td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
  }
  
  .tabla-sesiones th {
    background-color: #f3f3f3;
  }
  /* ---- PLANES ---- */
.planes-container {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
  }
  
  .planes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
  }
  
  .plan {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    width: 260px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }
  
  .plan:hover {
    transform: translateY(-6px);
  }
  
  .plan h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #4b136b;
  }
  
  .plan p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
  }
  
  .btn-plan {
    background: linear-gradient(135deg, #b13d84, #4b136b);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 20px; /* o el espaciado que uses */
  }
  .nav-links .oculto {
    display: none !important;
  }

 
  
  
  
  .nav-links {
    display: flex;
    align-items: center;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #4b136b;
    text-decoration: none;
  }
  
  .usuario-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 20px;
  }
  
  .usuario-menu {
    display: none;
    position: absolute;
    background: #fff;
    color: #333;
    right: 0;
    top: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    z-index: 999;
  }
  
  .usuario-menu.visible {
    display: block;
  }
  .solo-pro {
    display: none;
  }
  body.modo-pro .solo-pro {
    display: block;
  }
  .menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #4b136b;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 2000; /* Asegura que esté por encima del menú */
  }
  @media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        background: white;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        padding: 20px;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      }
  
      .nav-links.visible {
        display: flex;
      }
    .nav-container {
        flex-direction: column;
        align-items: flex-start; /* ⬅ Esto alinea a la izquierda */
      }
      .menu-toggle {
        display: block;
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
        color: #4b136b;
      }
  }
  
  .contacto-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f4fb;
  }
  
  .contacto-section h1 {
    color: #4b136b;
    margin-bottom: 10px;
  }
  
  .contacto-section .subtext {
    color: #555;
    margin-bottom: 30px;
    font-size: 16px;
  }
  
  #form-contacto {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  #form-contacto input,
  #form-contacto textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
  }
  
  #form-contacto button {
    padding: 12px;
    background: linear-gradient(135deg, #b13d84, #4b136b);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
  }
  
  #form-contacto button:hover {
    opacity: 0.9;
  }
  
  .respuesta {
    font-size: 14px;
    margin-top: 10px;
  }
  .logo img {
    height: 60px;
    vertical-align: middle;
  }
 
 
  .footer {
    background-color: #4b136b;
    color: white;
    padding: 40px 20px 20px;
    font-size: 14px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
  }
  
  .footer-logo img {
    height: 50px;
  }
  
  .footer-links,
  .footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-links a,
  .footer-social a {
    color: #f0d8f5;
    text-decoration: none;
  }
  
  .footer-links a:hover,
  .footer-social a:hover {
    text-decoration: underline;
    color: #fff;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #ccc;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-links,
    .footer-social {
      align-items: left;
    }
  }
  .site-footer {
    background-color: #f3e7f9;
    color: #4b136b;
    text-align: left;
    padding: 20px;
    font-size: 14px;
  }
  
  .site-footer a {
    color: #4b136b;
    text-decoration: none;
    margin: 0 10px;
  }
  
  .site-footer a:hover {
    text-decoration: underline;
  }
  .politica-container h1 {
    text-align: center;
  }
  .site-footer {
    background-color: #f3e7f9;
    color: #4b136b;
    text-align: left;
    padding: 20px;
    font-size: 14px;
  }
  
  .site-footer a {
    color: #4b136b;
    text-decoration: none;
    margin: 0 10px;
  }
  
  .site-footer a:hover {
    text-decoration: underline;
  }
  .politica-container h1 {
    text-align: center;
  }
  .politica-container {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    text-align: left;
  }