/* ============================================================================
   DISPARADORPRO V2.7 - LANDING PAGE - ESTILOS PRINCIPALES
   ============================================================================
   
   Descripción: Hoja de estilos principal para la landing page de ventas
   Autor: SociosDigitales.pro
   Versión: 1.0
   Fecha: Diciembre 2025
   
   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 Información SaaS
   8. Sección de Funcionalidades
   9. 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
   ============================================================================ */

.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: white;
}

/* ============================================================================
   7. SECCIÓN DE COMPARACIÓN
   ============================================================================ */

.comparison-section {
    padding: 80px 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.comparison-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.comparison-card.ai-way {
    border-color: #f59e0b;
}

.card-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 20px;
    background: #444;
    color: #ddd;
}

.card-badge.after {
    background: #f59e0b;
    color: black;
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #a0a0a0;
}

.comparison-card ul li i {
    color: #f59e0b;
}

/* ============================================================================
   8. SECCIÓN INFORMACIÓN SAAS
   ============================================================================ */

.saas-info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 80px 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.info-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-text p {
    color: #a0a0a0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-text ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.info-text ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #d4d4d8;
}

.info-text ul li i {
    color: #22c55e;
    font-size: 1.2rem;
}

.notifications-preview {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #22c55e;
}

.notifications-preview p {
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.notifications-preview span {
    display: block;
    color: #22c55e;
    margin-bottom: 8px;
    font-weight: 500;
}

.final-text {
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
}

/* Dashboard mockup */
.info-dashboard {
    background: #1e1e1e;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #3a3a3a;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.traffic-lights {
    display: flex;
    gap: 8px;
    margin-right: auto;
}

.traffic-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.traffic-light.red {
    background-color: #ff5f57;
}

.traffic-light.yellow {
    background-color: #ffbd2e;
}

.traffic-light.green {
    background-color: #28c940;
}

.dashboard-url {
    color: #d1d1d1;
    font-weight: 500;
    font-size: 0.85rem;
    flex: 1;
    text-align: center;
}

.live-badge {
    background: #ef4444;
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.dashboard-body {
    padding: 25px;
    background: #2c2c2c;
}

.dashboard-body h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.dashboard-body .subtitle {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.sale-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #3d3d3d;
    border-radius: 8px;
    margin-bottom: 10px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.1rem;
}

.sale-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sale-info span:first-child {
    font-weight: 600;
}

.sale-info .plan {
    font-size: 0.85rem;
    color: #888;
}

.sale-amount {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.sale-amount span:first-child {
    font-weight: 700;
    font-size: 1.1rem;
    color: #22c55e;
}

.sale-amount .time {
    font-size: 0.75rem;
    color: #888;
}

.dashboard-footer {
    display: flex;
    padding: 20px 25px;
    background: #1e1e1e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
    margin-top: 4px;
}

/* ============================================================================
   9. SECCIÓN DE FUNCIONALIDADES
   ============================================================================ */

.creations-section {
    padding: 80px 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    color: #a78bfa;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(167, 139, 250, 0.3);
}

.creations-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.creations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.creation-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.creation-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: #22c55e;
}

.creation-card i {
    font-size: 1.8rem;
    color: #28c940;
    margin-bottom: 15px;
}

.creation-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.creation-card p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.more-text {
    color: #a0a0a0;
    font-style: italic;
    margin-top: 20px;
}

/* ============================================================================
   10. SECCIÓN CÓMO FUNCIONA (COMPONENTIZACIÓN)
   ============================================================================ */

.componentization-section {
    padding: 80px 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.componentization-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.componentization-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.componentization-text p {
    color: #a0a0a0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.componentization-text h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
}

.componentization-text ul {
    list-style: none;
    padding: 0;
}

.componentization-text ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #d4d4d8;
}

.componentization-text ul li i {
    color: #22c55e;
    font-size: 1.2rem;
}

.summary-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
}

.summary-box p {
    color: white;
    margin: 0;
}

.componentization-diagram {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
}

.diagram-header {
    text-align: center;
    margin-bottom: 30px;
}

.diagram-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.diagram-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.diagram-header p {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.diagram-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.diagram-row {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.diagram-block {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: white;
    font-weight: 600;
    max-width: 150px;
}

.diagram-component {
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.diagram-component.purple {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.diagram-component.orange {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.diagram-list-item {
    padding: 12px 20px;
    border-radius: 6px;
    color: white;
    font-size: 0.85rem;
}

.diagram-list-item.green {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.small-components {
    margin-top: 10px;
}

.diagram-small-item {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-size: 0.8rem;
    color: #a0a0a0;
}

.diagram-small-item span {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

/* ============================================================================
   11. SECCIÓN CARACTERÍSTICAS AVANZADAS
   ============================================================================ */

.software-anatomy-section {
    padding: 80px 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.anatomy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.module-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(239, 68, 68, 0.2));
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fbbf24;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.anatomy-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.anatomy-text h4 {
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
}

.anatomy-text p {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.anatomy-text ul {
    list-style: none;
    padding: 0;
}

.anatomy-text ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #d4d4d8;
}

.anatomy-text ul li i {
    color: #22c55e;
    font-size: 1.2rem;
}

.anatomy-diagram {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
}

.diagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 25px 0;
}

.file-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.file-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #22c55e;
    transform: translateY(-3px);
}

.file-item i {
    font-size: 1.5rem;
    color: #22c55e;
    margin-bottom: 8px;
    display: block;
}

.diagram-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.diagram-footer span {
    color: #a0a0a0;
    font-size: 0.9rem;
    font-style: italic;
}

/* ============================================================================
   12. SECCIÓN DE PRECIOS
   ============================================================================ */

.pricing-section {
    padding: 80px 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.pricing-header p {
    color: #a0a0a0;
    font-size: 1.1rem;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.pricing-container .pricing-card {
    max-width: 500px;
    width: 100%;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.recommended {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.05);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.plan-description {
    color: #a0a0a0;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: center;
}

.features-list li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #d4d4d8;
    font-size: 0.95rem;
    width: 100%;
}

.features-list li i {
    color: #22c55e;
    font-size: 1.1rem;
}

.price-section {
    margin: 30px 0;
}

.price-section .currency {
    font-size: 1.2rem;
    color: #a0a0a0;
    vertical-align: top;
}

.price-section .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: 0 5px;
}

.price-section .period {
    font-size: 1rem;
    color: #a0a0a0;
}

.price-section.custom .contact-text {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.btn-pricing {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-pricing.highlighted {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.btn-pricing.highlighted:hover {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.guarantee {
    color: #a0a0a0;
    font-size: 0.85rem;
    margin-top: 15px;
}

/* ============================================================================
   13. PREGUNTAS FRECUENTES (FAQ)
   ============================================================================ */

.faq-section {
    padding: 80px 40px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.faq-header p {
    color: #a0a0a0;
    font-size: 1.1rem;
}

.faq-list {
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    color: #8b5cf6;
}

.question-icon {
    font-size: 1.5rem;
    color: #8b5cf6;
}

.question-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.toggle-icon {
    font-size: 1.2rem;
    color: #a0a0a0;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: #a0a0a0;
    line-height: 1.6;
    padding-left: 50px;
}

.faq-contact {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-contact-text {
    color: #a0a0a0;
    margin-bottom: 20px;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* ============================================================================
   14. FOOTER
   ============================================================================ */

.main-footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px 30px;
    margin-top: 80px;
}

.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-color: #ff5f57;
}

.traffic-light-footer.yellow {
    background-color: #ffbd2e;
}

.traffic-light-footer.green {
    background-color: #28c940;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.logo-accent {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #a0a0a0;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #8b5cf6;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #a0a0a0;
}

.footer-contact .contact-item i {
    color: #8b5cf6;
    font-size: 1.1rem;
}

.footer-contact .contact-item a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-item a:hover {
    color: #8b5cf6;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.85rem;
    margin: 5px 0;
}

/* ============================================================================
   15. 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: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.show {
    display: flex;
    opacity: 1;
}

.popup-content {
    position: relative;
    background: #2c2c2c;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-header {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #3a3a3a;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.popup-title {
    color: #d1d1d1;
    font-weight: 500;
    font-size: 0.9rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.close-btn {
    cursor: pointer;
}

.close-btn:hover {
    transform: scale(1.1);
}

/* ============================================================================
   FIN DEL ARCHIVO CSS
   ============================================================================ */
