/* ═══════════════════════════════════════════════════════════════════════════════
   HUMANPRO - CORRECCIONES MÓVILES Y VISUALES
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════════
   1. OCULTAR BARRA DE BÚSQUEDA EN MÓVIL (Problema de la imagen 1)
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .search-trigger,
    .search-btn,
    .nav-search-btn,
    [onclick*="openSearch"],
    [onclick*="HumanProSearch"] {
        display: none !important;
    }
    
    /* Modal de búsqueda - mejor posicionamiento móvil */
    .search-modal-content {
        width: 95% !important;
        max-width: 95% !important;
        margin: 10px auto !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }
    
    .search-modal {
        padding: 10px !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   2. CORREGIR DROPDOWN COLOR BLANCO (Problema de la imagen 2)
   ═══════════════════════════════════════════════════════════════════════════════ */
.dropdown,
.mega-menu,
.dropdown-menu,
.nav-dropdown,
[class*="dropdown"] {
    background: rgba(5, 10, 48, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(35, 61, 255, 0.3) !important;
}

.dropdown a,
.mega-menu a,
.dropdown-menu a,
.nav-dropdown a,
[class*="dropdown"] a {
    color: rgba(255, 255, 255, 0.85) !important;
    background: transparent !important;
}

.dropdown a:hover,
.mega-menu a:hover,
.dropdown-menu a:hover,
[class*="dropdown"] a:hover {
    background: rgba(35, 61, 255, 0.2) !important;
    color: #00d4ff !important;
}

/* Línea de selección */
.dropdown a.active,
.mega-menu a.active,
[class*="dropdown"] a.active {
    border-left: 3px solid #00d4ff;
    background: rgba(0, 212, 255, 0.1) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   3. CHATBOT/ASISTENTE - FIX PARA MÓVIL
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .chatbot-container,
    .chat-widget,
    .assistant-widget,
    #chatWidget,
    .tawk-min-container {
        bottom: 80px !important;
        right: 10px !important;
        max-width: calc(100vw - 20px) !important;
        max-height: 60vh !important;
    }
    
    .chatbot-messages,
    .chat-messages {
        max-height: 40vh !important;
        overflow-y: auto !important;
    }
    
    .whatsapp-float {
        bottom: 20px !important;
        right: 15px !important;
        z-index: 9998 !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   4. TARJETAS DE SERVICIOS - MEJOR DISEÑO
   ═══════════════════════════════════════════════════════════════════════════════ */
.service-card,
.pricing-card,
.plan-card,
[class*="service-card"],
[class*="pricing-card"] {
    background: rgba(5, 10, 48, 0.95) !important;
    border: 1px solid rgba(35, 61, 255, 0.2) !important;
    border-radius: 16px !important;
    transition: all 0.3s ease !important;
}

.service-card:hover,
.pricing-card:hover,
[class*="service-card"]:hover,
[class*="pricing-card"]:hover {
    border-color: rgba(0, 212, 255, 0.5) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15) !important;
}

/* Popular tag */
.popular-tag,
.most-popular,
[class*="popular"] {
    background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
    color: #fff !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   5. FAQ MEJORADO (Estilo tipo Poppins moderno)
   ═══════════════════════════════════════════════════════════════════════════════ */
.faq-section,
.faqs-section,
[class*="faq"] {
    font-family: 'Poppins', 'Montserrat', sans-serif !important;
}

.faq-item {
    background: transparent !important;
    border: none !important;
    margin-bottom: 0.75rem !important;
}

.faq-question,
.faq-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 1rem 1.25rem !important;
    background: linear-gradient(135deg, rgba(35, 61, 255, 0.1), rgba(255, 255, 255, 0.02)) !important;
    border: 1px solid rgba(35, 61, 255, 0.2) !important;
    border-radius: 12px !important;
    color: #fff !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.faq-question:hover,
.faq-header:hover {
    background: linear-gradient(135deg, rgba(35, 61, 255, 0.2), rgba(0, 212, 255, 0.1)) !important;
    border-color: rgba(0, 212, 255, 0.3) !important;
}

.faq-question i,
.faq-header svg,
.faq-icon {
    transition: transform 0.3s ease !important;
    color: #00d4ff !important;
}

.faq-item.active .faq-question i,
.faq-item.active .faq-icon {
    transform: rotate(180deg) !important;
}

.faq-answer {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    padding: 0 1.25rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
    transition: all 0.4s ease !important;
}

.faq-item.active .faq-answer {
    max-height: 500px !important;
    opacity: 1 !important;
    padding: 1rem 1.25rem !important;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   6. DESCUENTOS - MÁXIMO 30%
   ═══════════════════════════════════════════════════════════════════════════════ */
.discount-badge,
.discount-tag,
[class*="discount"]:not(.hp-discount-modal):not(.hp-discount-card),
[class*="ahorro"] {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: #fff !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   7. RESPONSIVE GENERAL
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 576px) {
    .quiz-card {
        padding: 1.5rem !important;
        margin: 0 10px !important;
    }
    
    .quiz-option {
        padding: 1rem !important;
    }
    
    .hero-title,
    h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
    }
    
    .service-card,
    .pricing-card {
        margin: 0 10px !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   8. EQUIPO NOSOTROS - DISEÑO INTERACTIVO
   ═══════════════════════════════════════════════════════════════════════════════ */
.team-member,
.team-card,
[class*="team-member"] {
    position: relative !important;
    cursor: pointer !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    transition: all 0.3s ease !important;
}

.team-member-info,
.team-card-info {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(to top, rgba(5, 10, 48, 0.95), transparent) !important;
    padding: 2rem 1.5rem 1.5rem !important;
    transform: translateY(70%) !important;
    transition: transform 0.3s ease !important;
}

.team-member:hover .team-member-info,
.team-card:hover .team-card-info {
    transform: translateY(0) !important;
}

.team-member-name {
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    color: #fff !important;
}

.team-member-role {
    color: #00d4ff !important;
    font-size: 0.9rem !important;
}

.team-member-bio {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.85rem !important;
    margin-top: 0.5rem !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.team-member:hover .team-member-bio {
    opacity: 1 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   9. FIX QUIZ - Mostrar preguntas correctamente
   ═══════════════════════════════════════════════════════════════════════════════ */
.quiz-question {
    display: none !important;
}

.quiz-question.active {
    display: block !important;
    animation: fadeIn 0.4s ease !important;
}

.quiz-start {
    display: block;
}

#quizStart[style*="display: none"] {
    display: none !important;
}

/* Mejorar botones de tipo de quiz */
.quiz-type-btn {
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px !important;
    border: 2px solid rgba(35, 61, 255, 0.3) !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.quiz-type-btn:hover {
    border-color: #233dff !important;
    color: #fff !important;
}

.quiz-type-btn.active {
    background: linear-gradient(135deg, #233dff, #00d4ff) !important;
    border-color: transparent !important;
    color: #fff !important;
}

/* Opciones del quiz */
.quiz-option {
    padding: 1rem 1.25rem !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 2px solid rgba(35, 61, 255, 0.2) !important;
    border-radius: 12px !important;
    margin-bottom: 0.75rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.quiz-option:hover {
    border-color: #233dff !important;
    background: rgba(35, 61, 255, 0.1) !important;
}

.quiz-option.selected {
    border-color: #00d4ff !important;
    background: rgba(0, 212, 255, 0.15) !important;
}

/* Resultado del quiz */
.quiz-result {
    display: none;
}

.quiz-result.active {
    display: block !important;
    animation: fadeIn 0.5s ease !important;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   10. CHATBOT MÓVIL - FIX COMPLETO
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Container del chatbot */
    .chatbot-widget,
    .chat-widget,
    #chatWidget,
    [class*="chatbot"],
    [class*="chat-container"] {
        position: fixed !important;
        bottom: 80px !important;
        right: 10px !important;
        left: 10px !important;
        width: auto !important;
        max-width: calc(100vw - 20px) !important;
        max-height: 60vh !important;
        border-radius: 16px !important;
        z-index: 9990 !important;
    }
    
    /* Header del chatbot */
    .chatbot-header,
    .chat-header {
        padding: 0.75rem 1rem !important;
        border-radius: 16px 16px 0 0 !important;
    }
    
    /* Área de mensajes */
    .chatbot-messages,
    .chat-messages,
    .chat-body {
        max-height: 35vh !important;
        overflow-y: auto !important;
        padding: 0.75rem !important;
    }
    
    /* Input del chat */
    .chatbot-input,
    .chat-input-container {
        padding: 0.5rem !important;
    }
    
    .chatbot-input input,
    .chat-input {
        font-size: 16px !important; /* Evita zoom en iOS */
        padding: 0.75rem !important;
    }
    
    /* Botón del chatbot */
    .chatbot-toggle,
    .chat-toggle-btn {
        bottom: 80px !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   11. TARJETAS CARD FIX - Mejor visualización
   ═══════════════════════════════════════════════════════════════════════════════ */
.card,
.service-card,
.pricing-card,
.blog-card,
.ebook-card,
[class*="-card"] {
    background: rgba(5, 10, 48, 0.95) !important;
    border: 1px solid rgba(35, 61, 255, 0.2) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
}

.card-header,
.card-body,
.card-footer {
    padding: 1.25rem !important;
}

.card-title,
.card h3,
.card h4 {
    color: #fff !important;
    font-weight: 600 !important;
}

.card-text,
.card p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   12. NAVEGACIÓN MÓVIL - FIX MENÚ
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .nav-menu,
    .main-nav,
    .mobile-menu {
        background: rgba(5, 10, 48, 0.98) !important;
        backdrop-filter: blur(20px) !important;
    }
    
    .nav-menu a,
    .main-nav a,
    .mobile-menu a {
        color: rgba(255, 255, 255, 0.85) !important;
        padding: 1rem 1.5rem !important;
        display: block !important;
        border-bottom: 1px solid rgba(35, 61, 255, 0.1) !important;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(35, 61, 255, 0.2) !important;
        color: #00d4ff !important;
    }
    
    /* Submenús en móvil */
    .dropdown,
    .submenu,
    .mega-menu {
        position: static !important;
        width: 100% !important;
        background: rgba(5, 10, 48, 0.98) !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .dropdown a,
    .submenu a {
        padding-left: 2.5rem !important;
        font-size: 0.9rem !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   13. FOOTER MEJORADO (Estilo similar al código proporcionado)
   ═══════════════════════════════════════════════════════════════════════════════ */
.footer,
.mega-footer,
footer {
    background: linear-gradient(to bottom, #050a30, #0a0a20) !important;
    border-top: 1px solid rgba(35, 61, 255, 0.2) !important;
}

.footer-content,
.footer-main {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 3rem 1.5rem !important;
}

.footer a {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: color 0.3s ease !important;
}

.footer a:hover {
    color: #00d4ff !important;
}

.footer-social a {
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(35, 61, 255, 0.2) !important;
    border-radius: 50% !important;
    margin-right: 0.5rem !important;
    transition: all 0.3s ease !important;
}

.footer-social a:hover {
    background: #233dff !important;
    transform: translateY(-3px) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 1.5rem !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   14. EQUIPO - TARJETAS INTERACTIVAS (Click para ver info)
   ═══════════════════════════════════════════════════════════════════════════════ */
.team-card {
    position: relative !important;
    background: rgba(5, 10, 48, 0.95) !important;
    border: 2px solid rgba(35, 61, 255, 0.2) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    overflow: hidden !important;
}

.team-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #233dff, #00d4ff) !important;
    transform: scaleX(0) !important;
    transition: transform 0.3s ease !important;
}

.team-card:hover::before,
.team-card.active::before {
    transform: scaleX(1) !important;
}

.team-card:hover,
.team-card.active {
    border-color: rgba(0, 212, 255, 0.5) !important;
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2) !important;
}

/* Avatar del equipo */
.team-avatar {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    margin: 0 auto 1.25rem !important;
    background: linear-gradient(135deg, #233dff, #00d4ff) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    overflow: hidden !important;
    border: 3px solid rgba(0, 212, 255, 0.3) !important;
    transition: all 0.4s ease !important;
}

.team-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.team-card:hover .team-avatar {
    transform: scale(1.1) !important;
    border-color: #00d4ff !important;
}

/* Nombre del equipo */
.team-name {
    font-family: 'Space Grotesk', 'Poppins', sans-serif !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 0.25rem !important;
}

/* Rol del equipo */
.team-role {
    color: #00d4ff !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    display: block !important;
    margin-bottom: 1rem !important;
}

/* Bio del equipo - oculta por defecto, visible en hover/active */
.team-bio {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transition: all 0.4s ease !important;
    margin-bottom: 0 !important;
}

.team-card:hover .team-bio,
.team-card.active .team-bio {
    max-height: 200px !important;
    opacity: 1 !important;
    margin-bottom: 1rem !important;
}

/* Tags del equipo */
.team-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    justify-content: center !important;
    margin-bottom: 1rem !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transition: all 0.4s ease !important;
}

.team-card:hover .team-tags,
.team-card.active .team-tags {
    max-height: 100px !important;
    opacity: 1 !important;
}

.team-tag {
    background: rgba(35, 61, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
}

/* Social del equipo */
.team-social {
    display: flex !important;
    gap: 0.75rem !important;
    justify-content: center !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transition: all 0.4s ease !important;
}

.team-card:hover .team-social,
.team-card.active .team-social {
    max-height: 50px !important;
    opacity: 1 !important;
}

.team-social a {
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(35, 61, 255, 0.3) !important;
    border-radius: 50% !important;
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.team-social a:hover {
    background: #00d4ff !important;
    transform: translateY(-3px) !important;
}

/* Indicador de "clic para ver más" */
.team-card::after {
    content: 'Toca para ver más' !important;
    position: absolute !important;
    bottom: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 0.7rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease !important;
}

.team-card:hover::after,
.team-card.active::after {
    opacity: 0 !important;
}

@media (min-width: 769px) {
    .team-card::after {
        content: 'Hover para ver más' !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO CARD DISRUPTIVO - Diseño llamativo
   ═══════════════════════════════════════════════════════════════════════════════ */
.hero-card-disruptive {
    position: relative;
    background: rgba(5, 10, 48, 0.95);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    overflow: hidden;
    max-width: 320px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-card-content {
    position: relative;
    z-index: 2;
}

.hero-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

.hero-icon-ring.delay {
    animation-delay: 1s;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.hero-icon-container i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #00d4ff, #233dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-card-disruptive h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.hero-card-disruptive h3 .plus-sign {
    color: #00d4ff;
    font-weight: 800;
}

.hero-card-disruptive > .hero-card-content > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.hero-card-disruptive strong {
    color: #00d4ff;
}

.hero-card-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-stat {
    text-align: center;
}

.mini-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
}

.mini-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-card-disruptive {
        padding: 1.5rem;
        max-width: 280px;
    }
    
    .hero-card-disruptive h3 {
        font-size: 1.5rem;
    }
    
    .hero-card-stats {
        gap: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FAQ MEJORADO - Diseño moderno
   ═══════════════════════════════════════════════════════════════════════════════ */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(5, 10, 48, 0.8);
    border: 1px solid rgba(35, 61, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.4);
}

.faq-item.active {
    border-color: #00d4ff;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(35, 61, 255, 0.1);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    color: #00d4ff;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer strong {
    color: #00d4ff;
}

/* Garantía mejorada */
.garantia-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 10, 48, 0.95));
}

.garantia-badge i {
    font-size: 3rem;
    color: #10b981;
}

.garantia-content h2 span {
    color: #10b981 !important;
}
