  /* ============================================
    HERO PREGUNTAS FRECUENTES - FUSIÓN USA/CANADÁ
    ============================================ */

  .hero-faq {
    margin-top: 80px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 50%, #dc2626 100%);
    padding: 4rem 2rem;
  }

  /* Patrón de puntos sutil */
  .hero-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.5;
  }

  /* Bolas flotantes decorativas - MUY SUTILES */
  .hero-faq-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
  }

  /* Bola azul USA - arriba izquierda */
  .bola-1 {
    width: 400px;
    height: 400px;
    background: #3b82f6;
    top: -100px;
    left: -100px;
    animation: float 20s infinite ease-in-out;
  }

  /* Bola roja Canadá - abajo derecha */
  .bola-2 {
    width: 350px;
    height: 350px;
    background: #ef4444;
    bottom: -100px;
    right: -100px;
    animation: float 15s infinite ease-in-out reverse;
    animation-delay: 5s;
  }

  /* Bola dorada - centro */
  .bola-3 {
    width: 300px;
    height: 300px;
    background: #f59e0b;
    top: 50%;
    left: 30%;
    transform: translateY(-50%);
    animation: float 18s infinite ease-in-out;
    animation-delay: 10s;
    opacity: 0.1;
  }

  @keyframes float {

    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }

    50% {
      transform: translate(30px, -30px) scale(1.1);
    }
  }

  /* Contenedor del contenido */
  .hero-faq-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
  }

  /* Tag superior */
  .hero-faq-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* Título principal */
  .hero-faq-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  /* Subtítulo */
  .hero-faq-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
  }

  /* Botón CTA */
  .btn-faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #0f172a;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
  }

  .btn-faq-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #1e293b;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .hero-faq-content h1 {
      font-size: 2.5rem;
    }

    .hero-faq-subtitle {
      font-size: 1.1rem;
    }

    .btn-faq-cta {
      padding: 1rem 2rem;
      font-size: 1rem;
    }

    .hero-faq-decoration {
      width: 200px;
      height: 200px;
    }
  }

  @media (max-width: 480px) {
    .hero-faq-content h1 {
      font-size: 2rem;
    }
  }

  /* ============================================
    SECCIÓN DE PREGUNTAS - DISEÑO COMPLETO
    ============================================ */

  .faq-section {
    padding: 6rem 2rem;
    background: var(--bg);
  }

  /* Categoría principal - Card con borde */
  .faq-category {
    background: white;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
  }

  .faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
  }

  /* Bordes de colores */
  .faq-usa {
    border: 2px solid #1e3a8a;
  }

  .faq-canada {
    border: 2px solid #dc2626;
  }

  .faq-citas {
    border: 2px solid #059669;
  }

  /* Hover tenue */
  .faq-usa:hover {
    background: rgba(30, 58, 138, 0.02);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.12);
  }

  .faq-canada:hover {
    background: rgba(220, 38, 38, 0.02);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.12);
  }

  .faq-citas:hover {
    background: rgba(5, 150, 105, 0.02);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.12);
  }

  /* Header de la categoría */
  .faq-category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .faq-category-header:hover {
    background: rgba(0, 0, 0, 0.01);
  }

  .faq-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .faq-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  .faq-category-header h2 {
    flex: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
  }

  .faq-toggle-icon {
    font-size: 1.5rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
  }

  .faq-category.active .faq-toggle-icon {
    transform: rotate(180deg);
  }

  /* Contenedor de preguntas - Acordeón */
  .faq-questions {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 2rem;
  }

  .faq-category.active .faq-questions {
    max-height: 2000px;
    padding-bottom: 1rem;
  }

  /* Item individual de pregunta */
  .faq-item {
    background: var(--bg-alt);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
  }

  .faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
  }

  .faq-question i {
    color: var(--text-light);
    transition: all 0.3s ease;
    font-size: 1.2rem;
  }

  .faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--primary);
  }

  /* Respuesta - Acordeón interno */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
  }

  .faq-answer p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .faq-answer ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
  }

  .faq-answer li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
  }

  /* ============================================
    VIDEO DENTRO DE CADA CATEGORÍA - CORREGIDO
    ============================================ */

  /* Wrapper exterior con padding */
  .faq-video-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0
  }

  .faq-category.active .faq-video-wrapper {
    max-height: 500px;
    padding-bottom: 2rem;
  }

  /* Contenedor del video - sin padding, ancho completo */
  .faq-video {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  /* Placeholder del video */
  .video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px dashed #d1d5db;
    box-sizing: border-box;
  }

  .video-icon {
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 0.5rem;
  }

  .video-placeholder h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
    text-align: center;
  }

  .video-placeholder p {
    color: var(--text-light);
    font-size: 0.95rem;
    text-align: center;
    padding: 0 1rem;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .faq-category-header {
      padding: 1.5rem;
    }

    .faq-icon {
      width: 55px;
      height: 55px;
    }

    .faq-icon img {
      width: 30px;
      height: 30px;
    }

    .faq-category-header h2 {
      font-size: 1.4rem;
    }

    .faq-questions {
      padding: 0 1.5rem;
    }

    .faq-video-wrapper {
      padding: 0 1.5rem;
    }

    .faq-category.active .faq-video-wrapper {
      padding-bottom: 1.5rem;
    }

    .video-icon {
      font-size: 2.5rem;
    }

    .video-placeholder h4 {
      font-size: 1.2rem;
    }

    .video-placeholder p {
      font-size: 0.85rem;
    }
  }
  