 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #9333ea, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            cursor: pointer;
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-primary {
            background: linear-gradient(135deg, #9333ea, #3b82f6);
            color: white;
            box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #9333ea;
            border: 2px solid #9333ea;
        }

        .btn-secondary:hover {
            background: rgba(147, 51, 234, 0.1);
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding: 5rem 2rem;
            text-align: center;
            background: linear-gradient(135deg, #faf5ff 0%, #fff 50%, #eff6ff 100%);
            overflow: hidden;
        }

        .hero::before,
        .hero::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.2;
        }

        .hero::before {
            width: 400px;
            height: 400px;
            background: #9333ea;
            top: -100px;
            left: -100px;
            animation: blob 7s infinite;
        }

        .hero::after {
            width: 400px;
            height: 400px;
            background: #3b82f6;
            bottom: -100px;
            right: -100px;
            animation: blob 7s infinite 2s;
        }

        @keyframes blob {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -50px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #9333ea, #3b82f6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            background: linear-gradient(135deg, #9333ea, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.5rem;
            color: #666;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* About Section */
        .about {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .card {
            background: white;
            border-radius: 1.5rem;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .about p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .highlight-box {
            padding: 1.5rem;
            border-radius: 1rem;
            margin: 1rem 0;
        }

        .highlight-purple {
            background: #faf5ff;
            border-left: 4px solid #9333ea;
        }

        .highlight-blue {
            background: #eff6ff;
            border-left: 4px solid #3b82f6;
        }

        /* Benefits Section */
        .benefits {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .benefit-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            border: 1px solid #f0f0f0;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            border-radius: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .benefit-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .benefit-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Streaming Logos Section */
        .streaming-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .streaming-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .streaming-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .streaming-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .streaming-logo {
            width: 120px;
            height: 120px;
            object-fit: contain;
            margin-bottom: 1rem;
            border-radius: 0.5rem;
        }

        .streaming-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
        }

        /* Form Section */
        .form-section {
            max-width: 800px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .form-card {
            background: white;
            border-radius: 1.5rem;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #9333ea;
            cursor: pointer;
            margin-bottom: 2rem;
            font-weight: 500;
            transition: all 0.3s;
        }

        .back-button:hover {
            gap: 0.7rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #333;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #e5e7eb;
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #9333ea;
            box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
        }

        .form-note {
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.3rem;
        }

        .info-box {
            background: #eff6ff;
            border: 2px solid #3b82f6;
            border-radius: 1rem;
            padding: 1.5rem;
            margin-top: 2rem;
        }

        .info-box h3 {
            color: #1e40af;
            margin-bottom: 0.5rem;
        }

        .info-box ul {
            list-style: none;
            color: #1e40af;
        }

        .info-box li {
            margin: 0.5rem 0;
        }

        .success-message {
            text-align: center;
            padding: 3rem;
        }

        .success-icon {
            font-size: 5rem;
            color: #10b981;
            margin-bottom: 1rem;
        }

        /* Footer */
        .footer {
            background: #1f2937;
            color: white;
            text-align: center;
            padding: 2rem;
            margin-top: 5rem;
        }

        .footer p {
            color: #9ca3af;
        }

        /* Hidden class */
        .hidden {
            display: none !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .nav-buttons {
                flex-direction: column;
            }

            .streaming-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
        }
        .conec {
            background: linear-gradient(135deg, #9333ea, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* =========================
   ACCESIBILIDAD EXTRA
========================= */

/* Focus visible real para teclado */
.btn:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 3px solid #facc15;
    outline-offset: 3px;
    border-radius: 0.5rem;
}

/* Mejor contraste para textos secundarios */
.hero p {
    color: #4b5563;
}

.form-note {
    color: #6b7280;
}

/* Estados de error accesibles en formularios */
input:invalid {
    border-color: #ef4444;
}

input:invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}


/* =========================
   MEJORA TÁCTIL (MÓVIL)
========================= */

.btn,
button {
    min-height: 44px; /* tamaño mínimo recomendado por Apple */
}


/* =========================
   BREAKPOINT EXTRA PEQUEÑO
========================= */

@media (max-width: 480px) {

    .navbar-content {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .card,
    .form-card {
        padding: 1.5rem;
    }
}


/* =========================
   REDUCE MOTION SUPPORT
========================= */

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}


/* =========================
   OCULTO PERO ACCESIBLE
========================= */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}