/* ========== VARIABLES Y RESET ========== */
:root {
    /* Paleta de colores principal */
    --primary: #009c8c;
    --primary-dark: #007c6c;
    --primary-light: #4db8ac;
    --secondary: #ff6b35;
    --secondary-dark: #e55a24;
    --primary-transparent: rgba(0, 156, 140, 0.8);
    
    /* Textos */
    --text-dark: #222222;
    --text-body: #444444;
    --text-light: #666666;
    --text-lighter: #888888;
    
    /* Fondos */
    --background: #ffffff;
    --background-alt: #f9f9f9;
    --background-light: #f5fbf9;
    
    /* Estados */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    
    /* Sistema de espaciado */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
    
    /* Bordes y sombras */
    --border-radius-sm: 6px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    --box-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    /* Transiciones */
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.4s ease;
    
    /* Tamaños */
    --max-width: 1200px;
    --header-height: 70px;
    --header-height-mobile: 60px;
    
    /* Secciones */
    --background-section-gap: 80px;
  }
  
  /* Reset */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
  }
  
  body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--background);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Contenedor */
  .container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
  }
  
  /* Sistema tipográfico */
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
  }
  
  h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 0.5em;
    letter-spacing: -0.02em;
  }
  
  h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.7em;
    letter-spacing: -0.015em;
  }
  
  h3 {
    font-size: clamp(1.35rem, 3vw, 1.8rem);
    letter-spacing: -0.01em;
  }
  
  p {
    margin-bottom: 1.5em;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Clases de utilidad */
  .text-center {
    text-align: center;
  }
  
  .text-highlight {
    color: var(--primary);
    font-weight: 600;
  }
  
  .mt-0 { margin-top: 0; }
  .mt-1 { margin-top: 0.25rem; }
  .mt-2 { margin-top: 0.5rem; }
  .mt-3 { margin-top: 1rem; }
  .mt-4 { margin-top: 1.5rem; }
  .mt-5 { margin-top: 2rem; }
  .mb-0 { margin-bottom: 0; }
  .mb-1 { margin-bottom: 0.25rem; }
  .mb-2 { margin-bottom: 0.5rem; }
  .mb-3 { margin-bottom: 1rem; }
  .mb-4 { margin-bottom: 1.5rem; }
  .mb-5 { margin-bottom: 2rem; }
  
  /* Sistema de botones */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 156, 140, 0.3);
    white-space: nowrap;
    line-height: 1.4;
  }
  
  .btn:hover, .btn:focus {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 156, 140, 0.4);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
  }
  
  .btn-outline:hover, .btn-outline:focus {
    background-color: var(--primary);
    color: white;
  }
  
  .btn-secondary {
    background-color: var(--secondary);
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
  }
  
  .btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--secondary-dark);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.4);
  }
  
  .btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
    margin: auto;
  }
  
  /* ========== HEADER Y NAVEGACIÓN ========== */
  header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  }
  
  header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  }
  
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  
  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
  }
  
  .logo img {
    margin-right: 10px;
    transition: transform 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  
  .logo:hover img {
    transform: scale(1.1) rotate(3deg);
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 3px;
  }
  
  .nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover {
    color: var(--primary);
  }
  
  .nav-links a:hover:after {
    width: 100%;
  }
  
  .mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .mobile-toggle:hover {
    color: var(--primary);
    transform: scale(1.1);
  }
  
  /* ========== HERO SECTION - MEJORADO ========== */
  .hero {
    position: relative;
    padding: 70px 0 50px;
    background: linear-gradient(to bottom, var(--background-light), white);
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 90% 10%, rgba(0, 156, 140, 0.07) 0%, transparent 70%);
    z-index: 0;
  }
  
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
  }
  
  .hero-content {
    max-width: 650px;
  }
  
  .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    margin-top: 50px;
  }
  
  .hero-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    margin-top: 12px;
    border-radius: 3px;
  }
  
  .hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 30px;
    color: var(--text-body);
  }
  
  .hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .hero-image img {
    max-width: 90%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  
  .hero-image:hover img {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  }
  
  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }
  
  /* CTA principal del hero ACTUALIZADO */
  .hero-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 12px 25px rgba(0, 156, 140, 0.35);
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    text-decoration: none;
  }
  
  .hero-cta .btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 30px rgba(0, 156, 140, 0.4);
    background: linear-gradient(135deg, #00b4a2, #008f80);
  }
  
  .hero-cta .btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
  }
  
  .hero-cta .btn:hover:before {
    left: 100%;
  }
  
  /* Agregar efecto de brillo al CTA del hero */
  .hero-cta .btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
  }
  
  .hero-cta .btn:hover::after {
    opacity: 1;
  }
  
  /* Efecto de pulsación para el CTA */
  @keyframes pulse-border {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 156, 140, 0.4);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(0, 156, 140, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 156, 140, 0);
    }
  }
  
  .hero-cta .btn {
    animation: pulse-border 2s infinite;
  }
  
  /* Corrección para el botón principal en versión móvil */
  @media (max-width: 767px) {
    .hero-cta .btn,
    a[href="#reserva"].btn-lg,
    [class*="reserva"] .btn,
    .hero-section a.btn {
      display: inline-flex;
      width: calc(100% - 30px); /* Ancho controlado con margen en ambos lados */
      max-width: 400px; /* Ancho máximo para evitar que se estire demasiado */
      margin: 0 auto;
      padding: 10px 14px;
      border-radius: 25px; /* Asegurar bordes redondeados completos */
      font-size: 18px; /* Tamaño de texto apropiado para móvil */
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
      white-space: normal; /* Permitir múltiples líneas si es necesario */
    }
    
    /* Para el botón específico que se muestra en tu screenshot */
    .hero a[href="#reserva"] {
      width: 90%; /* Ancho controlado */
      margin: auto;
      display: flex;
      justify-content: center;
      overflow: hidden; /* Evitar que el contenido sobresalga de los bordes */
      position: relative;
      left: 0;
      right: 0;
    }
    
    /* Ícono dentro del botón si existe */
    .hero-cta .btn i,
    a[href="#reserva"].btn i {
      margin-right: 4px;
      font-size: 18px;
    }
  }
  
  /* ========== SECCIÓN DE SÍNTOMAS - MEJORADA ========== */
  .symptoms-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f1f5fd 100%);
    position: relative;
    overflow: hidden;
  }
  
  .symptoms-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 156, 140, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
  }
  
  .symptoms-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 156, 140, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
  }
  
  .section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    margin: 15px auto 0;
    border-radius: 5px;
  }
  
  .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -10px auto 40px;
    color: var(--text-body);
    font-size: 1.1rem;
  }
  
  .symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
  }
  
  .symptom-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .symptom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 156, 140, 0.2);
  }
  
  .symptom-header {
    padding: 20px 20px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
  }
  
  .symptom-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .symptom-card:hover .symptom-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 156, 140, 0.3);
  }
  
  .symptom-icon i {
    color: white;
    font-size: 1.5rem;
  }
  
  .symptom-header h3 {
    font-size: 1.3rem;
    margin: 0 0 10px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
  }
  
  .symptom-card:hover .symptom-header h3 {
    color: var(--primary);
  }
  
  .symptom-body {
    padding: 15px 20px;
    flex-grow: 1;
  }
  
  .symptom-description {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  /* Lista de síntomas mejorada */
  .symptom-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
  }
  
  .symptom-list li {
    background-color: rgba(0, 156, 140, 0.05);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-style: italic;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
    border-left: 3px solid var(--primary-light);
    transition: all 0.3s ease;
  }
  
  .symptom-list li::before {
    content: '"';
    position: absolute;
    left: 10px;
    top: 10px;
    color: var(--primary);
    font-weight: bold;
  }
  
  .symptom-card:hover .symptom-list li {
    background-color: rgba(0, 156, 140, 0.08);
    border-left-color: var(--primary);
    transform: translateX(3px);
  }
  
  .symptom-examples {
    background-color: rgba(0, 156, 140, 0.05);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 15px;
    border-left: 3px solid var(--primary-light);
    transition: var(--transition);
  }
  
  .symptom-card:hover .symptom-examples {
    background-color: rgba(0, 156, 140, 0.08);
    border-left-color: var(--primary);
  }
  
  .example-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
  }
  
  .example-list {
    padding-left: 20px;
    margin: 0;
  }
  
  .example-list li {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 8px;
    line-height: 1.4;
  }
  
  .symptom-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(0, 156, 140, 0.03);
    transition: var(--transition);
  }
  
  /* Test ansiedad - Mejorado */
  .test-ansiedad-container {
    text-align: center;
    margin: 50px auto 30px;
    position: relative;
    z-index: 5;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 10px 20px rgba(0, 156, 140, 0.3);
    }
    50% {
      transform: scale(1.03);
      box-shadow: 0 15px 30px rgba(0, 156, 140, 0.4);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 10px 20px rgba(0, 156, 140, 0.3);
    }
  }
  
  .test-ansiedad-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #009c8c 0%, #006b61 100%);
    color: white;
    font-weight: 700;
    font-size: 18px;
    padding: 16px 28px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 156, 140, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    margin: 0 auto;
    max-width: 400px;
    width: auto;
    animation: pulse 2s infinite;
    text-wrap: balance; /* Mejor distribución del texto */
    hyphens: auto; /* Permitir guiones para mejor ajuste de texto */
  }
  
  .test-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .test-subtext {
    display: block;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.95;
    margin-top: 4px;
    width: 100%;
  }
  
  .test-arrow {
    margin-left: 15px;
    font-size: 22px;
    transition: transform 0.3s ease;
  }
  
  .test-ansiedad-btn:hover .test-arrow {
    transform: translateX(8px);
  }
  
  .test-icon {
    font-size: 26px;
    margin-right: 15px;
  }
  
  .test-ansiedad-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 156, 140, 0.5);
    background: linear-gradient(135deg, #00b4a2, #00877a);
    animation: none;
  }
  
  /* Aseguramos que el botón se vea apropiado para dispositivos móviles */
  @media (max-width: 480px) {
    .test-ansiedad-btn {
      width: 90%;
      padding: 14px 18px;
      border-radius: 50px; /* Botón más redondeado para móvil */
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      font-size: 16px;
      box-shadow: 0 8px 15px rgba(0, 156, 140, 0.3);
      background: linear-gradient(to right, #009c8c 0%, #008275 100%);
    }
    
    .test-icon {
      font-size: 24px;
      margin-right: 12px;
      flex-shrink: 0;
    }
    
    .test-text {
      flex: 1;
      text-align: left;
      line-height: 1.3;
      font-weight: 600;
    }
    
    .test-subtext {
      font-weight: 400;
      font-size: 13px;
      opacity: 0.9;
    }
    
    .test-arrow {
      margin-left: 8px;
      font-size: 20px;
      flex-shrink: 0;
    }
    
    .premium-assessment-section {
      padding: 40px 0;
    }
    
    /* Estilos para pantallas muy pequeñas se aplicarán automáticamente */
  }
  
  .test-ansiedad-btn:active {
    transform: translateY(1px);
  }
  
  .test-ansiedad-btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
    z-index: -1;
  }
  
  .quiz-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 20px rgba(0, 156, 140, 0.25);
    transition: var(--transition);
    color: white;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .quiz-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 156, 140, 0.4);
  }
  
  /* ========== ESTILO DIVIDER - MEJORADO ========== */
  .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    position: relative;
  }
  
  .divider hr {
    flex-grow: 1;
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
  }
  
  .divider span {
    padding: 0 15px;
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .divider:hover span {
    transform: rotate(180deg);
    color: var(--primary-dark);
  }
  
  /* ========== SECCIÓN PORQUÉ TERAPIA - MEJORADA ========== */
  .why-therapy {
    padding: 80px 0;
    background-color: var(--background-alt);
    position: relative;
    overflow: hidden;
  }
  
  .why-therapy::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 156, 140, 0.03) 0%, transparent 70%);
    border-radius: 50%;
  }
  
  .why-therapy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
  }
  
  .why-therapy-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .why-therapy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 156, 140, 0.2);
  }
  
  .why-therapy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
    transition: width 0.3s ease;
  }
  
  .why-therapy-card:hover::before {
    width: 7px;
  }
  
  .why-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: transform 0.4s ease;
  }
  
  .why-therapy-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-dark);
  }
  
  .why-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: color 0.3s ease;
  }
  
  .why-therapy-card:hover .why-title {
    color: var(--primary);
  }
  
  .why-text {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* ========== SECCIÓN DE BENEFICIOS - CORREGIDA Y MEJORADA ========== */
  .benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9f7 0%, #dff3ef 100%);
    position: relative;
    overflow: hidden;
  }
  
  .benefits::before, .benefits::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 1;
  }
  
  .benefits::before {
    top: -5%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 156, 140, 0.05) 0%, transparent 70%);
  }
  
  .benefits::after {
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 156, 140, 0.05) 0%, transparent 70%);
  }
  
  .benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
  }
  
  .benefit-item {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 156, 140, 0.2);
  }
  
  .benefit-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(0, 156, 140, 0.1);
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
  }
  
  .benefit-item:hover .benefit-icon {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 156, 140, 0.3);
  }
  
  .benefit-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    transition: color 0.3s ease;
  }
  
  .benefit-item:hover .benefit-title {
    color: var(--primary);
  }
  
  .benefit-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.5;
  }
  
  /* Nuevo estilo para el botón central de beneficios */
  .benefits-cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    position: relative;
    z-index: 10;
  }
  
  .benefits-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 700;
    font-size: 18px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 156, 140, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    max-width: 90%;
    text-align: center;
  }
  
  .benefits-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 156, 140, 0.4);
    background: linear-gradient(135deg, #00b4a2, #008f80);
  }
  
  .benefits-cta-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
  }
  
  .benefits-cta-button:hover:before {
    left: 100%;
  }
  
  /* ========== SECCIÓN DE TÉCNICAS - MEJORADA ========== */
  .techniques {
    padding: 80px 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
  }
  
  .techniques::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      radial-gradient(circle at 10% 20%, rgba(0, 156, 140, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 90% 80%, rgba(0, 156, 140, 0.03) 0%, transparent 50%);
    z-index: 1;
  }
  
  .techniques-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
  }
  
  .technique-accordion {
    margin-bottom: 15px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: white;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .technique-accordion:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: rgba(0, 156, 140, 0.1);
  }
  
  .technique-header {
    padding: 20px;
    background-color: white;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .technique-header:hover {
    background-color: rgba(0, 156, 140, 0.05);
    padding-left: 25px;
  }
  
  .technique-header.active {
    background-color: var(--primary);
    color: white;
  }
  
  .technique-header::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
  }
  
  .technique-header.active::after {
    transform: rotate(180deg);
    color: white;
  }
  
  .technique-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background-color: white;
  }
  
  .technique-header.active + .technique-content {
    padding: 20px;
    max-height: 500px;
  }
  
  /* ========== SECCIÓN DE TESTIMONIOS - MEJORADA ========== */
  .testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #eaebec 100%);
    position: relative;
    overflow: hidden;
  }
  
  .testimonials::before, .testimonials::after {
    content: '';
    position: absolute;
    border-radius: 50%;
  }
  
  .testimonials::before {
    top: -5%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 156, 140, 0.03) 0%, transparent 70%);
    z-index: 1;
  }
  
  .testimonials::after {
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 156, 140, 0.03) 0%, transparent 70%);
    z-index: 1;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 5;
  }
  
  .testimonial-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 156, 140, 0.15);
  }
  
  .testimonial-text {
    font-style: italic;
    color: var(--text-body);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    flex-grow: 1;
    z-index: 1;
  }
  
  .testimonial-text::before {
    content: '"';
    font-size: 5rem;
    color: rgba(0, 156, 140, 0.1);
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: -1;
    transition: all 0.4s ease;
  }
  
  .testimonial-item:hover .testimonial-text::before {
    color: rgba(0, 156, 140, 0.2);
    transform: scale(1.1) rotate(-5deg);
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
    position: relative;
    z-index: 2;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }
  
  .testimonial-item:hover .author-avatar {
    transform: scale(1.1) rotate(5deg);
  }
  
  .author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
  }
  
  .testimonial-item:hover .author-info h4 {
    color: var(--primary);
  }
  
  .author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
  }
  
  /* ========== SECCIÓN FAQ - MEJORADA ========== */
  .faq-section {
    padding: 80px 0;
    background-color: var(--background-alt);
    position: relative;
    overflow: hidden;
  }
  
  .faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      radial-gradient(circle at 10% 10%, rgba(0, 156, 140, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 90% 90%, rgba(0, 156, 140, 0.03) 0%, transparent 50%);
    z-index: 1;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
  }
  
  .faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 156, 140, 0.1);
  }
  
  .faq-question {
    padding: 20px;
    background-color: white;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .faq-question:hover {
    background-color: rgba(0, 156, 140, 0.05);
    padding-left: 25px;
  }
  
  .faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary);
    transition: transform 0.3s ease;
  }
  
  .faq-question.active {
    background-color: rgba(0, 156, 140, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .faq-question.active::after {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background-color: white;
  }
  
  .faq-question.active + .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
  }
  
  /* ========== SECCIÓN CTA - MEJORADA ========== */
  .cta-booking-section {
    padding: 90px 0 80px;
    background: linear-gradient(145deg, #f0f9f7 0%, #d9f0ed 100%);
    color: #333;
    position: relative;
    overflow: hidden;
  }
  
  .cta-booking-section::before, .cta-booking-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
  }
  
  .cta-booking-section::before {
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 156, 140, 0.05) 0%, transparent 70%);
    z-index: 1;
  }
  
  .cta-booking-section::after {
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 156, 140, 0.05) 0%, transparent 70%);
    z-index: 1;
  }
  
  .booking-container {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: #f5fbf9;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 156, 140, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .booking-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  }
  
  /* Elementos decorativos para el contenedor de reserva */
  .decoration-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.1;
  }
  
  .circle-1 {
    top: -100px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary);
  }
  
  .circle-2 {
    bottom: -80px;
    left: -60px;
    width: 180px;
    height: 180px;
    background: var(--primary-light);
  }
  
  .decoration-dots {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(var(--primary) 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.15;
    z-index: 1;
  }
  
  .booking-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 156, 140, 0.1);
    color: #009c8c;
    border-radius: 30px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 156, 140, 0.1);
    border: 1px solid rgba(0, 156, 140, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .booking-badge i {
    margin-right: 8px;
  }
  
  @keyframes pulse-badge {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .pulse-badge {
    animation: pulse-badge 2s infinite;
  }
  
  .booking-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
  }
  
  .highlight-text {
    color: var(--primary);
    position: relative;
    display: inline-block;
  }
  
  .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0, 156, 140, 0.1);
    z-index: -1;
  }
  
  .booking-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
  }
  
  .booking-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
  }
  
  .booking-benefit {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 156, 140, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .booking-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 156, 140, 0.2);
  }
  
  .benefit-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: rgba(0, 156, 140, 0.1);
    color: #009c8c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    transition: all 0.3s ease;
  }
  
  .booking-benefit:hover .benefit-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
  }
  
  .booking-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    position: relative;
    z-index: 2;
  }
  
  .booking-urgency {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .urgency-icon {
    color: var(--primary);
    margin-right: 10px;
    font-size: 20px;
  }
  
  .booking-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #009c8c, #007b6e);
    color: white;
    font-weight: 700;
    font-size: 18px;
    padding: 18px 35px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0, 156, 140, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    margin-bottom: 15px;
    min-width: 250px;
  }
  
  .booking-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 156, 140, 0.35);
    background: linear-gradient(135deg, #00b4a2, #00877a);
  }
  
  .button-text {
    position: relative;
    z-index: 2;
  }
  
  .button-icon {
    margin-left: 10px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
  }
  
  .booking-cta-button:hover .button-icon {
    transform: translateX(5px);
  }
  
  /* Efectos de partículas brillantes */
  .button-sparkle {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s ease;
  }
  
  .sparkle1 {
    top: 20%;
    left: 15%;
  }
  
  .sparkle2 {
    top: 60%;
    left: 25%;
  }
  
  .sparkle3 {
    top: 40%;
    left: 80%;
  }
  
  .booking-cta-button:hover .button-sparkle {
    animation: sparkle 1.5s ease-in-out infinite;
  }
  
  @keyframes sparkle {
    0% {
      opacity: 0;
      transform: scale(0);
    }
    20% {
      opacity: 0.8;
      transform: scale(1);
    }
    40% {
      opacity: 0;
      transform: scale(0);
    }
    100% {
      opacity: 0;
      transform: scale(0);
    }
  }
  
  .sparkle1 {
    animation-delay: 0s;
  }
  
  .sparkle2 {
    animation-delay: 0.3s;
  }
  
  .sparkle3 {
    animation-delay: 0.6s;
  }
  
  .booking-note {
    font-size: 0.9rem;
    color: var(--text-body);
    text-align: center;
    margin-top: 15px;
  }
  
  /* Mejora para el contenedor de TidyCal */
  .tidycal-container {
    width: 100%;
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
  }
  
  .loader {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 156, 140, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  /* ========== FOOTER - MEJORADO ========== */
  .modern-footer {
    position: relative;
    background: linear-gradient(to bottom, #1a1a2e, #141423);
    color: white;
    margin-top: 0;
  }
  
  .footer-decoration {
    position: relative;
    height: 100px;
    overflow: hidden;
  }
  
  .wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
  }
  
  .footer-main {
    padding: 80px 0 50px;
    position: relative;
    overflow: hidden;
  }
  
  .footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(0, 156, 140, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(110, 72, 170, 0.1) 0%, transparent 50%);
    opacity: 0.3;
    z-index: 0;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    position: relative;
    z-index: 1;
  }
  
  .footer-branding {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    transition: var(--transition);
  }
  
  .footer-logo img {
    background-color: white;
    border-radius: 12px;
    padding: 5px;
    transition: var(--transition);
    width: 60px;
    height: 60px;
  }
  
  .footer-logo:hover {
    transform: translateY(-3px);
  }
  
  .footer-logo:hover img {
    transform: rotate(-5deg);
  }
  
  .logo-text {
    display: flex;
    flex-direction: column;
  }
  
  .logo-name {
    font-size: 1.3rem;
    font-weight: 700;
  }
  
  .logo-title {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-contact-info .credential-item,
  .footer-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 5px 0;
    background-color: transparent;
  }
  
  .footer-contact-info .credential-item i,
  .footer-contact-info .contact-item i {
    color: var(--primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
  }
  
  .footer-contact-info .credential-item:hover,
  .footer-contact-info .contact-item:hover {
    transform: translateX(5px);
    background-color: transparent;
  }
  
  .footer-certification {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  .certification-badge {
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
    display: block;
  }
  
  .certification-badge img {
    height: 40px;
    width: auto;
  }
  
  .certification-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
  }
  
  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    border-radius: 3px;
  }
  
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-menu li {
    position: relative;
  }
  
  .footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    padding: 5px 0;
  }
  
  .footer-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
  }
  
  .footer-menu a:hover {
    color: white;
    transform: translateX(5px);
  }
  
  .footer-menu a:hover::before {
    width: 20px;
  }
  
  .social-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .social-link.youtube:hover {
    background-color: #FF0000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
  }
  
  .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
  }
  
  .social-link.linkedin:hover {
    background-color: #0077B5;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.3);
  }
  
  .social-link.tiktok:hover {
    background: linear-gradient(45deg, #000000, #EE1D52, #69C9D0);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  
  .newsletter-content {
    display: flex;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border-left: 3px solid var(--primary);
  }
  
  .newsletter-content:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .newsletter-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background-color: rgba(0, 156, 140, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
  }
  
  .newsletter-content:hover .newsletter-icon {
    transform: rotate(10deg);
    background-color: var(--primary);
    color: white;
  }
  
  .newsletter-box {
    flex: 1;
  }
  
  .newsletter-title {
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: white;
  }
  
  .newsletter-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px;
    line-height: 1.5;
  }
  
  .btn-newsletter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
  }
  
  .btn-newsletter:hover {
    background-color: #00b3a0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 156, 140, 0.3);
  }
  
  .btn-newsletter i {
    transition: transform 0.3s ease;
  }
  
  .btn-newsletter:hover i {
    transform: translateX(5px);
  }
  
  .footer-legal {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    position: relative;
    z-index: 1;
  }
  
  .legal-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    position: relative;
  }
  
  .legal-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: width 0.3s ease;
  }
  
  .legal-links a:hover {
    color: white;
  }
  
  .legal-links a:hover::after {
    width: 100%;
  }
  
  .copyright {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .copyright p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
  }
  
  .back-to-top a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
  }
  
  .back-to-top a:hover {
    color: white;
    transform: translateY(-3px);
  }
  
  /* ========== MEDIA QUERIES - MEJORADAS ========== */
  @media (min-width: 768px) {
    .hero-grid {
      flex-direction: row;
      align-items: center;
    }
  
    .hero-content {
      flex: 1;
    }
  
    .hero-image {
      flex: 1;
    }
  
    .hero-image img {
      max-width: 450px;
    }
  }
  
  @media (max-width: 992px) {
    .nav-links {
      display: none;
    }
  
    .mobile-toggle {
      display: block;
    }
  
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      row-gap: 40px;
    }
  }
  
  @media (max-width: 768px) {
    .benefits-list {
      grid-template-columns: 1fr;
      padding: 0 15px;
    }
    
    .benefit-item {
      padding: 25px 20px; /* Reducir padding en móvil */
    }
    
    .benefits-cta-wrapper {
      padding: 0 15px;
    }
    
    .benefits-cta-button {
      width: 100%;
      padding: 15px 25px;
      font-size: 16px;
    }
  
    .booking-benefits {
      grid-template-columns: 1fr;
      gap: 15px;
    }
  
    .booking-container {
      padding: 30px 20px;
    }
  
    .booking-title {
      font-size: 28px;
    }
  
    .booking-cta-button {
      width: 100%;
      padding: 15px 20px;
    }
  
    .hero {
      padding: 50px 0 30px;
    }
  
    .hero-title {
      font-size: 2rem;
      margin-top: 1.5rem;
    }
  
    .why-therapy-grid {
      grid-template-columns: 1fr;
    }
  
    .techniques-container {
      padding: 0 15px;
    }
  
    .testimonial-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .social-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .legal-wrapper {
      flex-direction: column;
    }
  
    .legal-links {
      order: 2;
      justify-content: center;
    }
  
    .copyright {
      order: 1;
      flex-direction: column;
      text-align: center;
      gap: 15px;
    }
  }
  
  @media (max-width: 576px) {
    .benefit-item {
      padding: 20px 15px; /* Aún menos padding en pantallas muy pequeñas */
    }
    
    .benefit-icon {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
    }
  
    .social-grid {
      grid-template-columns: 1fr;
    }
    
    /* Mejorado para móviles pequeños */
    .test-ansiedad-container {
      padding: 0 10px;
      max-width: 100%;
      margin: 40px auto 20px;
    }
    
    .test-ansiedad-btn {
      padding: 14px 16px;
      font-size: 16px;
      width: 100%; /* Ocupar todo el ancho disponible */
      max-width: 100%;
      flex-wrap: wrap; /* Permitir que los elementos se envuelvan si es necesario */
      border-radius: 10px;
      box-sizing: border-box;
      justify-content: center;
    }
    
    .test-icon {
      font-size: 20px;
      margin-right: 10px;
    }
    
    .test-text {
      text-align: center;
      line-height: 1.3;
    }
    
    .test-subtext {
      font-size: 12px;
      display: block;
      margin-top: 3px;
      width: 100%;
    }
    
    .test-arrow {
      margin-left: 8px;
    }
  }
  
  /* Para pantallas muy pequeñas */
  @media (max-width: 350px) {
    .test-ansiedad-btn {
      width: 95%;
      padding: 12px 14px;
      font-size: 14px;
    }
    
    .test-icon {
      font-size: 18px;
      margin-right: 8px;
    }
    
    .test-arrow {
      font-size: 16px;
      margin-left: 5px;
    }
    
    .test-subtext {
      font-size: 11px;
    }
  }
  
  /* Animaciones - MEJORADAS */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .fade-in.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Animación más suave para elementos en viewport */
  @media (prefers-reduced-motion: no-preference) {
    .fade-in {
      transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
  }
  
  /* Utilidad para scroll up - MEJORADA */
  .scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 156, 140, 0.3);
    z-index: 999;
    border: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  .scroll-top.active {
    opacity: 1;
    visibility: visible;
  }
  
  .scroll-top:hover {
    background: linear-gradient(135deg, #00b4a2, #008f80);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 156, 140, 0.4);
  }
  
  .scroll-top i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }
  
  .scroll-top:hover i {
    transform: translateY(-3px);
  }
  
  /* Estilos menú móvil - MEJORADO */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }
  
  .mobile-menu.active {
    transform: translateX(0);
  }
  
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .close-menu:hover {
    background-color: rgba(0, 156, 140, 0.1);
    color: var(--primary);
    transform: rotate(90deg);
  }
  
  .mobile-nav-items {
    list-style: none;
    padding: 20px 0;
  }
  
  .mobile-nav-items li {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .mobile-nav-items a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 12px 15px;
    transition: all 0.3s ease;
    border-radius: 8px;
  }
  
  .mobile-nav-items a:hover {
    color: var(--primary);
    background-color: rgba(0, 156, 140, 0.05);
    padding-left: 25px;
  }
  
  /* Mejora para animaciones y rendimiento */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    
    .fade-in {
      opacity: 1;
      transform: none;
      transition: none;
    }
    
    .test-ansiedad-btn,
    .pulse-badge {
      animation: none !important;
    }
  }

  /* ===== ESTILOS OPTIMIZADOS PARA LA SECCIÓN DE AUTOESTIMA ===== */

:root {
  --premium-primary: #009C8C;
  --premium-primary-dark: #007a6e;
  --premium-secondary: #FFB74D;
  --premium-background-light: #f8f9fa;
  --premium-background-gradient-start: #f1f9f8;
  --premium-background-gradient-end: #e6f4f2;
  --premium-text-dark: #1a2b33;
  --premium-text-light: #445a64;
  --premium-white: #ffffff;
  --premium-border-radius-md: 8px;
  --premium-border-radius-lg: 12px;
  --premium-shadow-soft: 0 4px 15px rgba(0, 156, 140, 0.1);
  --premium-shadow-strong: 0 8px 25px rgba(0, 156, 140, 0.2);
}

.premium-assessment-section {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f9f9f9 0%, var(--premium-background-gradient-start) 100%);
}

.premium-assessment-wrapper {
  background: linear-gradient(135deg, var(--premium-white) 0%, #f8feff 100%);
  border-radius: var(--premium-border-radius-lg);
  padding: 60px 50px;
  box-shadow: 0 25px 50px -12px rgba(0, 156, 140, 0.15);
  border: 1px solid rgba(0, 156, 140, 0.08);
  position: relative;
}

/* Elementos decorativos */
.premium-decoration-element {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: 0;
}

.left-element {
  background: radial-gradient(circle, rgba(0,156,140,0.05) 0%, rgba(0,156,140,0) 70%);
  left: -100px;
  top: -50px;
}

.right-element {
  background: radial-gradient(circle, rgba(0,156,140,0.05) 0%, rgba(0,156,140,0) 70%);
  right: -100px;
  bottom: -50px;
}

/* Premium Tag */
.premium-tag-wrapper {
  text-align: center;
  margin-bottom: 15px;
}

.premium-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--premium-primary), var(--premium-primary-dark));
  color: var(--premium-white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 156, 140, 0.2);
}

/* Premium Section Title */
.premium-section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--premium-text-dark);
  margin-bottom: 10px;
  line-height: 1.2;
  text-align: center;
}

.premium-section-subtitle {
  font-size: 1.25rem;
  color: var(--premium-text-light);
  max-width: 850px;
  margin: 0 auto 40px;
  line-height: 1.7;
  text-align: center;
}

.text-accent {
  color: var(--premium-primary);
  font-weight: 600;
}

/* Tarjeta Premium Principal */
.premium-main-column {
  max-width: 800px;
  margin: 0 auto;
}

.premium-card.featured-card {
  background: var(--premium-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 156, 140, 0.1);
}

.premium-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.premium-card-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--premium-primary), var(--premium-primary-dark));
  color: var(--premium-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-right: 20px;
  box-shadow: 0 8px 20px rgba(0, 156, 140, 0.25);
  flex-shrink: 0;
}

.premium-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--premium-text-dark);
  line-height: 1.3;
  margin: 0;
}

/* Características */
.premium-features-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.premium-feature {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--premium-text-dark);
  margin-bottom: 15px;
  background: rgba(0, 156, 140, 0.08);
  padding: 10px 15px;
  border-radius: 8px;
}

.premium-feature i {
  color: var(--premium-primary);
  margin-right: 8px;
  font-size: 1.2rem;
}

/* Resultados Preview */
.premium-results-preview {
  margin-bottom: 30px;
  padding: 20px;
  background: #f5fbf9;
  border-radius: 10px;
  border-left: 4px solid var(--premium-primary);
}

.premium-results-preview span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--premium-text-dark);
  margin-bottom: 15px;
  display: block;
}

.premium-discovery-list {
  list-style: none;
  padding-left: 0;
  margin: 15px 0 0;
}

.premium-discovery-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-size: 1rem;
  color: var(--premium-text-light);
}

.premium-discovery-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--premium-primary);
  font-weight: 700;
}

/* Sección del Regalo Premium */
.premium-gift-container {
  background: #1a202e;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  color: var(--premium-white);
}

.premium-gift-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.download-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #0d989a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.gift-title-wrapper {
  flex-grow: 1;
}

.gift-title-wrapper h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 5px;
  color: white;
}

.free-badge-large {
  background: #ff8800;
  color: white;
  padding: 5px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 6px;
  display: inline-block;
}

.premium-gift-pricing {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.price-original {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
  margin-right: 10px;
}

.price-current {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-right: 20px;
}

.offer-tag {
  background: rgba(255, 136, 0, 0.2);
  color: #ff8800;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.premium-resource-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.premium-resource-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.premium-resource-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.resource-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.document-icon {
  background: rgba(13, 152, 154, 0.15);
  color: #0d989a;
}

.audio-icon {
  background: rgba(125, 95, 255, 0.15);
  color: #7d5fff;
}

.library-icon {
  background: rgba(255, 136, 0, 0.15);
  color: #ff8800;
}

.resource-text {
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  padding-right: 10px;
}

.check-icon {
  color: #0d989a;
  font-size: 1rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* CTA Principal */
.premium-main-cta-container {
  text-align: center;
  margin-top: 30px;
}

.premium-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--premium-primary), var(--premium-primary-dark));
  color: var(--premium-white) !important;
  padding: 20px 35px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 156, 140, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.premium-cta-button .cta-icon {
  margin-right: 12px;
  font-size: 1.3rem;
}

.premium-cta-button .cta-arrow {
  margin-left: 12px;
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.premium-cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 156, 140, 0.4);
  background: linear-gradient(90deg, var(--premium-primary-dark), var(--premium-primary));
}

.premium-cta-button:hover .cta-arrow {
  transform: translateX(5px);
}

/* Efecto Eléctrico */
.premium-cta-button.electric-effect::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: 0;
}

.premium-cta-button.electric-effect:hover::before {
  width: 300%;
  height: 300%;
}

/* Elementos de Confianza */
.cta-reassurance {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.reassurance-item {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--premium-text-light);
  margin: 0 20px 15px;
  font-weight: 500;
}

.reassurance-item i {
  color: var(--premium-primary);
  margin-right: 8px;
  font-size: 1.1rem;
}

/* Animación Fade-In */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}

.fade-in {
animation: fadeIn 0.8s ease-out forwards;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .premium-section-title {
      font-size: 2.4rem;
  }
  
  .premium-card.featured-card {
      padding: 35px 30px;
  }
}

@media (max-width: 768px) {
  .premium-assessment-wrapper {
      padding: 40px 25px;
  }
  
  .premium-section-title {
      font-size: 2rem;
  }
  
  .premium-section-subtitle {
      font-size: 1.1rem;
  }
  
  .premium-card-header {
      flex-direction: column;
      text-align: center;
  }
  
  .premium-card-icon-wrapper {
      margin-right: 0;
      margin-bottom: 15px;
  }
  
  .premium-card-title {
      font-size: 1.6rem;
  }
  
  .premium-features-wrapper {
      flex-direction: column;
  }
  
  .premium-feature {
      width: 100%;
      justify-content: center;
      margin-bottom: 10px;
  }
  
  .premium-cta-button {
      width: 100%;
      padding: 18px 25px;
  }
}

@media (max-width: 480px) {
  .premium-assessment-wrapper {
      padding: 25px 15px;
  }
  
  .premium-section-title {
      font-size: 1.8rem;
  }
  
  .premium-card.featured-card {
      padding: 20px 15px;
  }
  
  .premium-section-subtitle {
      font-size: 1rem;
      margin-bottom: 25px;
  }
  
  .premium-card-header {
      flex-direction: column;
      text-align: center;
      margin-bottom: 15px;
  }
  
  .premium-card-icon-wrapper {
      margin: 0 auto 15px;
  }
  
  .premium-feature {
      width: 100%;
      justify-content: flex-start;
      padding: 8px 12px;
      font-size: 0.9rem;
      margin-bottom: 8px;
  }
  
  .free-badge-large {
      margin-left: 0;
      margin-top: 10px;
  }
  
  .premium-cta-button {
      font-size: 1rem;
      width: 100%;
      padding: 15px 20px;
  }
  
  .premium-gift-pricing {
      flex-direction: column;
      align-items: flex-start;
      padding: 12px;
  }
  
  .price-original, .price-current {
      margin-bottom: 8px;
  }
  
  .reassurance-item {
      font-size: 0.85rem;
      margin: 0 10px 10px;
  }
  
  /* Mejora para test de ansiedad en móvil */
  .test-ansiedad-container {
      width: 100%;
      padding: 0 15px;
      box-sizing: border-box;
      margin-top: 25px;
      margin-bottom: 25px;
  }
  
  /* Mejoras específicas para el botón del test en móvil */
  .test-ansiedad-btn {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      width: 90%;
      margin: 0 auto;
      border-radius: 50px;
      background: linear-gradient(to right, #00a99d, #007c72);
      padding: 15px 25px;
      box-shadow: 0 8px 20px rgba(0,156,140,0.25);
  }
  
  .test-icon {
      font-size: 22px;
      margin-right: 15px;
  }
  
  .test-text {
      text-align: left;
      flex: 1;
  }
  
  .test-arrow {
      font-size: 20px;
      margin-left: 10px;
  }
}