/* ============================================================================
   ZAPFLOW - LANDING PAGE - ESTILOS PRINCIPALES
   ============================================================================
   
   Descripción: Hoja de estilos principal para la landing page de ZapFlow
   Basado en DisparadorPro V3.0 con adaptaciones para ZapFlow
   Autor: ZapFlow Team
   Versión: 1.0
   Fecha: Febrero 2026
   
   Estructura:
   1. Estilos Generales
   2. Fondo Animado
   3. Header y Navegación
   4. Hero Section
   5. Botones
   6. Sección de Comparación
   7. Sección de Funcionalidades
   8. Sección Cómo Funciona (Componentización)
   10. Sección Características Avanzadas
   11. Sección de Precios
   12. Preguntas Frecuentes (FAQ)
   13. Footer
   14. Pop-up de Video
   15. Animaciones
   
   ============================================================================ */

/* ============================================================================
   1. ESTILOS GENERALES
   ============================================================================ */

/* Reset básico y configuración global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}

body {
    background: #000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: white;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    /* Grid sutil de fondo */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="rgba(255,255,255,0.05)" d="M0 0h1v20H0zM10 0h1v20h-1zM20 0h1v20h-1zM0 0h20v1H0zM0 10h20v1H0zM0 20h20v1H0z"/></svg>');
}

/* ============================================================================
   2. FONDO ANIMADO
   ============================================================================ */

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 25s ease-in-out infinite;
    will-change: transform;
}

/* Formas de fondo con gradientes */
.bg-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    top: 5%;
    left: 10%;
    animation-delay: 0s;
}

.bg-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    top: 50%;
    right: 10%;
    animation-delay: -8s;
}

.bg-shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    bottom: 10%;
    left: 20%;
    animation-delay: -16s;
}

.bg-shape-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    top: 20%;
    right: 40%;
    animation-delay: -4s;
}

/* Animación de flotación para formas de fondo */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }

    25% {
        transform: translateY(-25px) translateX(15px) scale(1.1);
    }

    50% {
        transform: translateY(20px) translateX(-20px) scale(0.9);
    }

    75% {
        transform: translateY(-15px) translateX(25px) scale(1.05);
    }
}

/* Ajustes responsive para formas de fondo */
@media (max-width: 768px) {
    .bg-shape {
        filter: blur(60px);
        opacity: 0.1;
    }

    .bg-shape-1 {
        width: 250px;
        height: 250px;
    }

    .bg-shape-2 {
        width: 200px;
        height: 200px;
    }

    .bg-shape-3 {
        width: 220px;
        height: 220px;
    }

    .bg-shape-4 {
        width: 180px;
        height: 180px;
    }
}

/* ============================================================================
   3. HEADER Y NAVEGACIÓN
   ============================================================================ */

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.main-header .logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.main-header .logo i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.main-header .logo i:hover {
    transform: scale(1.05) rotate(5deg);
}

.main-header .logo span {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.main-header .logo .logo-accent {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ============================================================================
   4. HERO SECTION
   ============================================================================ */

.container {
    text-align: center;
    padding: 120px 40px 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    margin-bottom: 60px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 25px;
}

.badge-icon {
    font-size: 1rem;
}

.badge-text {
    color: #f0f0f0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.highlight-orange {
    color: #f59e0b;
}

.highlight-purple {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-green {
    color: #22c55e;
}

.hero-content p {
    font-size: 1.1rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ============================================================================
   5. BOTONES Y VIDEO HERO
   ============================================================================ */

.hero-video {
    margin: 40px auto 30px;
    max-width: 720px;
    width: 100%;
    display: block;
}

.video-demo-container {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    aspect-ratio: 16 / 10;
    position: relative;
}

.video-demo-header {
    background: #2a2a2a;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    height: 50px;
}

.video-demo-header .traffic-lights {
    display: flex;
    gap: 8px;
    position: absolute;
    left: 20px;
}

.video-demo-title {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.video-demo-content {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-cta {
    text-align: center;
    margin-top: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================================================
   6. LOGOS DE TECNOLOGÍAS
   ============================================================================ */

.tech-logos {
    margin-top: 40px;
    width: 100%;
    text-align: center;
}

.logo-label {
    display: block;
    color: #a0a0a0;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.logos-container:hover {
    filter: grayscale(0%) opacity(1);
}

.logos-container i,
.logos-container span {
    font-size: 1.8rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.logos-container .fab.fa-whatsapp {
    color: #25d366;
}

/* ============================================================================
   7. SECCIÓN DE COMPARACIÓN
   ============================================================================ */

.comparison-section {
    padding: 80px 50px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
}

.comparison-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: white;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border-radius: 20px;
    z-index: -1;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.comparison-card.ai-way .card-badge {
    background: linear-gradient(135deg, #10b981, #059669);
}

.comparison-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.comparison-card ul {
    list-style: none;
    text-align: left;
}

.comparison-card li {
    margin-bottom: 15px;
    color: #d0d0d0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-card li i {
    color: #8b5cf6;
    font-size: 0.9rem;
}

/* ============================================================================
   8. SECCIÓN DE FUNCIONALIDADES
   ============================================================================ */

.creations-section {
    padding: 100px 50px;
    width: 100%;
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    color: #8b5cf6;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.creations-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.creations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.creation-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.creation-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.creation-card i {
    font-size: 2.5rem;
    color: #8b5cf6;
    margin-bottom: 20px;
    display: block;
}

.creation-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.creation-card p {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 0.9rem;
}

.more-text {
    margin-top: 40px;
    color: #8b5cf6;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ============================================================================
   9. SECCIÓN CÓMO FUNCIONA (COMPONENTIZACIÓN)
   ============================================================================ */

.componentization-section {
    padding: 100px 50px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.componentization-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.componentization-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.componentization-text p {
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.componentization-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 30px 0 20px;
    color: white;
}

.componentization-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.componentization-text li {
    margin-bottom: 12px;
    color: #d0d0d0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.componentization-text li i {
    color: #22c55e;
    font-size: 0.9rem;
}

.summary-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(34, 197, 94, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
}

.summary-box p {
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}

/* Diagrama de componentes */
.componentization-diagram {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.diagram-header {
    text-align: center;
    margin-bottom: 30px;
}

.diagram-badge {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.diagram-header h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.diagram-header p {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.diagram-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.diagram-row {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.diagram-block {
    padding: 12px 20px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    min-width: 80px;
}

.diagram-component {
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    min-width: 100px;
}

.diagram-list-item {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    min-width: 80px;
}

.purple {
    background: rgba(139, 92, 246, 0.3);
    color: #c4b5fd;
}

.green {
    background: rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.orange {
    background: rgba(245, 158, 11, 0.3);
    color: #fcd34d;
}

.small-components {
    justify-content: space-around;
}

.diagram-small-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: #a0a0a0;
}

.diagram-small-item span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8b5cf6;
}

/* ============================================================================
   10. SECCIÓN CARACTERÍSTICAS AVANZADAS
   ============================================================================ */

.software-anatomy-section {
    padding: 100px 50px;
    width: 100%;
}

.anatomy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.module-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(239, 68, 68, 0.2));
    border-radius: 20px;
    margin-bottom: 20px;
}

.module-badge i {
    color: #f59e0b;
    font-size: 0.9rem;
}

.module-badge span {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
}

.anatomy-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.anatomy-text p {
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 25px;
}

.anatomy-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.anatomy-text ul {
    list-style: none;
}

.anatomy-text li {
    margin-bottom: 12px;
    color: #d0d0d0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.anatomy-text li i {
    color: #22c55e;
    font-size: 0.9rem;
}

.anatomy-diagram {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.diagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.file-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #a0a0a0;
    transition: all 0.3s ease;
}

.file-item:hover {
    background: rgba(139, 92, 246, 0.1);
    color: white;
}

.file-item i {
    font-size: 1.2rem;
    color: #8b5cf6;
}

.diagram-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.diagram-footer span {
    color: #a0a0a0;
    font-size: 0.8rem;
}

/* ============================================================================
   11. SECCIÓN DE PRECIOS
   ============================================================================ */

.pricing-section {
    padding: 100px 50px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
}

.pricing-header {
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.pricing-header p {
    color: #a0a0a0;
    font-size: 1.1rem;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 450px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px 40px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.pricing-card.recommended {
    border: 2px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
    transform: scale(1.02);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.recommended:hover {
    transform: translateY(-5px) scale(1.02);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    z-index: 10;
}

.recommended-badge-secondary {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.plan-description {
    color: #a0a0a0;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.price-section {
    margin-bottom: 40px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b5cf6;
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.period {
    color: #a0a0a0;
    font-size: 1rem;
    margin-left: 5px;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.features-list li i.fa-check-circle {
    color: #22c55e;
    font-size: 1rem;
}

.features-list li i.fa-times-circle {
    color: #ef4444;
    font-size: 1rem;
}

.features-list li {
    color: #d0d0d0;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-pricing.highlighted {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-pricing.highlighted:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.btn-pricing.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-pricing.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.guarantee {
    margin-top: 15px;
    color: #a0a0a0;
    font-size: 0.8rem;
}

/* ============================================================================
   12. PREGUNTAS FRECUENTES (FAQ)
   ============================================================================ */

.faq-section {
    padding: 100px 50px;
    width: 100%;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    margin-bottom: 60px;
}

.faq-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.faq-icon i {
    font-size: 2rem;
    color: white;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.faq-header p {
    color: #a0a0a0;
    font-size: 1.1rem;
}

.faq-list {
    text-align: left;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.faq-item.active {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.05);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.question-icon i {
    color: #8b5cf6;
    font-size: 1.1rem;
}

.question-text {
    flex: 1;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.toggle-icon i {
    color: #a0a0a0;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #a0a0a0;
    line-height: 1.6;
    margin: 0;
}

.faq-contact {
    margin-top: 50px;
    text-align: center;
}

.faq-contact-text {
    color: #a0a0a0;
    margin-bottom: 20px;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.faq-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ============================================================================
   13. FOOTER
   ============================================================================ */

.main-footer {
    background: transparent;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding: 50px 50px 30px;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.traffic-lights-footer {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}

.traffic-light-footer {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.traffic-light-footer.red {
    background: #ff5f57;
}

.traffic-light-footer.yellow {
    background: #ffbd2e;
}

.traffic-light-footer.green {
    background: #28ca42;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    font-size: 1.2rem;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.05em;
}

.logo-accent {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-links h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8b5cf6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.contact-item i {
    color: #8b5cf6;
    width: 16px;
    text-align: center;
}

.contact-item a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #8b5cf6;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 30px 0;
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    line-height: 1.5;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* ============================================================================
   14. POP-UP DE VIDEO
   ============================================================================ */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-header {
    background: #2a2a2a;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.traffic-lights {
    display: flex;
    gap: 8px;
}

.traffic-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.traffic-light.red {
    background: #ff5f57;
}

.traffic-light.yellow {
    background: #ffbd2e;
}

.traffic-light.green {
    background: #28ca42;
}

.popup-title {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.video-container {
    position: relative;
    width: 100%;
    height: calc(100% - 60px);
}

/* ============================================================================
   15. ANIMACIONES
   ============================================================================ */

/* Animación de entrada para elementos */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animación de brillo */
@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    }
}

/* Utilidades de animación */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Efecto de hover en botones */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
}

.btn-hover-effect::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: left 0.5s;
}

.btn-hover-effect:hover::before {
    left: 100%;
}

/* Pulsación suave */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* ============================================================================
   16. UTILIDADES RESPONSIVE
   ============================================================================ */

/* Ocultar en móvil */
@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
}

/* Mostrar solo en móvil */
.show-mobile {
    display: none;
}

@media (max-width: 768px) {
    .show-mobile {
        display: block;
    }
}

/* Ajustes de texto responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .comparison-section h2,
    .creations-section h2 {
        font-size: 2.2rem;
    }
}