/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .texto-suscripcion {
    font-size: 14px;
    color: #4b136b;
    margin-top: 4px;
    text-align: center;
    font-weight: 500;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: #f9f4fb;
    color: #333;
    line-height: 1.6;
  }
  
  /* --- HERO --- */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
  }
  
  .hero-content {
    max-width: 600px;
  }
  
  .hero h1 {
    font-size: 30px;
    color: #4b136b;
    margin-bottom: 16px;
  }
  
  .hero p {
    font-size: 18px;
    margin-bottom: 24px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #b13d84, #4b136b);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: transform 0.2s ease;
  }
  
  .cta-button:hover {
    transform: scale(1.05);
  }
  
  .hero-image img {
    width: 100%;
    max-width: 400px;
    margin-top: 40px;
  }
  
  @media (min-width: 768px) {
    .hero {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
      padding: 80px;
    }
  
    .hero-content {
      flex: 1;
      padding-right: 40px;
    }
  
    .hero-image {
      flex: 1;
    }
  }
  
  /* --- Secciones generales --- */
  section {
    padding: 80px 20px;
    text-align: center;
  }
  
  .section-content {
    max-width: 850px;
    margin: 0 auto;
  }
  
  /* --- ¿Qué es TuCoachAI? --- */
  .que-es h2,
  .como-funciona h2,
  .areas-acompanamiento h2,
  .porque-elegir h2,
  .planes h2,
  .testimonios h2,
  .cta h2 {
    font-size: 26px;
    color: #4b136b;
    margin-bottom: 20px;
  }
  
  .que-es p,
  .como-funciona p,
  .planes p,
  .testimonios p,
  .cta p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .que-es img,
  .como-funciona img,
  .porque-elegir img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  }
  
  /* --- Áreas de acompañamiento --- */
  .areas-list {
    list-style: none;
    padding: 0;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  
  .areas-list li {
    margin: 8px 0;
  }
  
  /* --- Por qué elegir --- */
  .razones-list {
    list-style: none;
    padding: 0;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  
  .razones-list li {
    margin: 8px 0;
  }
  
  /* --- Planes --- */
  .planes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
  }
  
  .plan {
    background: #f3e7f9;
    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;
  }
  
  .plan.destacado {
    background: #e3d0f0;
    border: 2px solid #a84ac4;
  }
  
  /* --- Testimonios --- */
  .testimonios-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
  }
  
  .testimonial {
    background: #fff;
    border-left: 5px solid #b13d84;
    border-radius: 12px;
    padding: 20px;
    max-width: 300px;
    font-style: italic;
    color: #555;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  }
  
  .testimonial span {
    display: block;
    margin-top: 12px;
    font-weight: 500;
    color: #4b136b;
  }
  
  /* --- Llamado a la acción --- */
  .cta {
    background: linear-gradient(135deg, #b13d84, #4b136b);
    color: #fff;
  }
  
  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .cta .btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background-color: #fff;
    color: #4b136b;
  }
  
  .btn-secundario {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
  }
  
  .btn-primary:hover,
  .btn-secundario:hover {
    transform: scale(1.05);
    opacity: 0.9;
  }
  
  /* --- Responsive --- */
  @media (max-width: 768px) {
    .planes-grid,
    .testimonios-grid,
    .cta-buttons {
      flex-direction: column;
      gap: 16px;
    }
  
    .hero h1 {
      font-size: 24px;
    }
  
    .hero p {
      font-size: 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 {
    
    color: #4b136b;
    margin-left: 25px;
    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;
      flex-direction: column;
      width: 100%;
      margin-top: 10px;
      align-items: center;
    }
  
    .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;
  }
  
  .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;
  }
  .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;
    }
  
    .menu-toggle {
      display: block;
    }
  }
  .logo img {
    height: 36px;
    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;
  }