@import url('https://fonts.googleapis.com/css2?family=Netflix+Sans:wght@300;400;500;600;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Netflix Sans', 'Helvetica Neue', Arial, sans-serif;
            background: #141414;
            color: white;
            overflow-x: hidden;
            line-height: 1.4;
        }

        /* Netflix Header */
        .netflix-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 68px;
            background: linear-gradient(180deg, rgba(20,20,20,0.9) 0%, transparent 100%);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 4%;
            z-index: 1000;
            transition: all 0.4s ease;
        }

        .netflix-header.scrolled {
            background: rgba(20, 20, 20, 0.95);
            backdrop-filter: blur(10px);
        }

        .logo {
            height: 40px;
            width: auto;
            display: block;
        }

        .logo img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 20px;
            margin-left: 40px;
        }

        .nav-menu li a {
            color: #e5e5e5;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu li a:hover {
            color: #b3b3b3;
        }

        .nav-menu li a.active {
            color: white;
            font-weight: 500;
        }

        .user-menu {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .search-icon {
            width: 24px;
            height: 24px;
            cursor: pointer;
            fill: #e5e5e5;
            transition: fill 0.3s ease;
        }

        .search-icon:hover {
            fill: white;
        }

        .notifications {
            width: 24px;
            height: 24px;
            cursor: pointer;
            fill: #e5e5e5;
            transition: fill 0.3s ease;
        }

        .notifications:hover {
            fill: white;
        }

        .profile-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .profile-avatar {
            width: 32px;
            height: 32px;
            border-radius: 4px;
            background: linear-gradient(45deg, #e50914, #f40612);
        }

        .dropdown-arrow {
            width: 12px;
            height: 12px;
            fill: #e5e5e5;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, 
                rgba(0,0,0,0.85) 0%, 
                rgba(0,0,0,0.4) 40%,
                rgba(229,9,20,0.1) 60%, 
                rgba(0,0,0,0.9) 100%
            ),
            url('eric_clapton.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 120px 4% 60px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 600px;
            text-align: left;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: clamp(32px, 5vw, 54px);
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.1;
            color: white;
        }

        .hero-subtitle {
            font-size: 20px;
            color: #e5e5e5;
            margin-bottom: 32px;
            line-height: 1.4;
            font-weight: 400;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 40px;
        }

        .play-btn {
            background: white;
            color: black;
            border: none;
            padding: 16px 40px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .play-btn:hover {
            background: rgba(255,255,255,0.8);
        }

        .info-btn {
            background: rgba(109,109,110,0.7);
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .info-btn:hover {
            background: rgba(109,109,110,0.4);
        }

        /* Health Partners Logo */
        .health-partners {
            margin: 30px 0;
            text-align: left;
        }

        .partners-logo {
            max-width: 100%;
            height: auto;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }

        .partners-logo:hover {
            opacity: 1;
        }

        .maturity-rating {
            display: flex;
            align-items: center;
            gap: 16px;
            color: #e5e5e5;
            font-size: 14px;
            margin-top: 24px;
        }

        .rating-badge {
            background: rgba(255,255,255,0.2);
            padding: 4px 8px;
            border-radius: 3px;
            font-weight: 600;
            font-size: 12px;
        }

        /* Content Sections */
        .content-section {
            padding: 60px 4%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 32px;
            color: white;
        }

        .documentary-info {
            background: rgba(42,42,42,0.8);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 60px;
            backdrop-filter: blur(10px);
        }

        .documentary-info h3 {
            color: white;
            font-size: 22px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .documentary-info p {
            line-height: 1.6;
            margin-bottom: 16px;
            color: #e5e5e5;
            font-size: 16px;
        }

        /* Documentary Watch Button */
        .documentary-watch-btn {
            margin-top: 32px;
            text-align: center;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .documentary-watch-btn .play-btn {
            background: #e50914;
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .documentary-watch-btn .play-btn:hover {
            background: #f40612;
            transform: translateY(-1px);
        }

        .partners {
            font-weight: 700;
            color: #e50914;
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: rgba(42, 42, 42, 0.95);
            border-radius: 12px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: slideIn 0.3s ease-out;
        }

        @keyframes slideIn {
            from { 
                opacity: 0;
                transform: translateY(-30px) scale(0.95);
            }
            to { 
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 32px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 20px;
        }

        .modal-header h3 {
            color: white;
            font-size: 24px;
            font-weight: 600;
            margin: 0;
        }

        .close-btn {
            background: none;
            border: none;
            color: #b3b3b3;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .modal-body {
            padding: 32px;
        }

        .modal-body p {
            line-height: 1.6;
            margin-bottom: 20px;
            color: #e5e5e5;
            font-size: 16px;
        }

        .modal-body p:last-of-type {
            margin-bottom: 32px;
        }

        .modal-actions {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .watch-now-modal {
            background: #e50914;
            color: white;
            border: none;
            padding: 14px 32px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .watch-now-modal:hover {
            background: #f40612;
            transform: translateY(-1px);
        }

        /* Quote Section */
        .quote-section {
            background: rgba(42,42,42,0.6);
            border-left: 4px solid #e50914;
            padding: 40px;
            margin: 60px 0;
            border-radius: 0 8px 8px 0;
        }

        .quote-text {
            font-size: 22px;
            font-style: italic;
            color: #e5e5e5;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .quote-author {
            text-align: right;
            color: white;
            font-weight: 600;
            font-size: 16px;
        }

        /* Form Section */
        .eligibility-form {
            background: rgba(42,42,42,0.8);
            border-radius: 12px;
            padding: 40px;
            margin: 60px auto;
            max-width: 800px;
            backdrop-filter: blur(10px);
        }

        .form-title {
            font-size: 28px;
            margin-bottom: 32px;
            color: white;
            font-weight: 600;
        }

        .form-subtitle {
            font-size: 16px;
            color: #b3b3b3;
            margin-bottom: 40px;
            line-height: 1.5;
        }

        .question {
            margin-bottom: 32px;
            padding: 24px;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .question:hover {
            background: rgba(255,255,255,0.08);
        }

        .question h4 {
            font-size: 16px;
            margin-bottom: 16px;
            color: white;
            font-weight: 500;
        }

        .radio-group {
            display: grid;
            gap: 12px;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            border-radius: 6px;
            transition: all 0.3s ease;
            cursor: pointer;
            background: rgba(255,255,255,0.03);
        }

        .radio-option:hover {
            background: rgba(255,255,255,0.08);
        }

        .radio-option input[type="radio"] {
            width: 18px;
            height: 18px;
            accent-color: #e50914;
            cursor: pointer;
        }

        .radio-option label {
            color: #e5e5e5;
            cursor: pointer;
            font-size: 14px;
            font-weight: 400;
        }

        .radio-option:has(input:checked) {
            background: rgba(229, 9, 20, 0.15);
            border: 1px solid rgba(229, 9, 20, 0.3);
        }

        .input-group {
            margin-bottom: 24px;
        }

        .input-group label {
            display: block;
            margin-bottom: 8px;
            color: white;
            font-weight: 500;
            font-size: 14px;
        }

        .input-group input[type="text"],
        .input-group input[type="email"] {
            width: 100%;
            padding: 16px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 6px;
            background: rgba(42,42,42,0.8);
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .input-group input[type="text"]:focus,
        .input-group input[type="email"]:focus {
            outline: none;
            border-color: #e50914;
            background: rgba(42,42,42,1);
        }

        .input-group input::placeholder {
            color: #737373;
        }

        .submit-btn {
            width: 100%;
            background: #e50914;
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 24px;
        }

        .submit-btn:hover {
            background: #f40612;
        }

        /* Video Section */
        .video-container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 4%;
        }

        .video-wrapper {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            background: #000;
            aspect-ratio: 16/9;
        }

        .video-title {
            text-align: center;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 24px;
            color: white;
        }

        .loading {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            gap: 20px;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(255,255,255,0.1);
            border-top: 3px solid #e50914;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .loading-text {
            color: #b3b3b3;
            font-size: 14px;
            font-weight: 400;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .success-message {
            background: rgba(46, 125, 50, 0.9);
            color: white;
            padding: 16px 24px;
            border-radius: 6px;
            margin: 24px 0;
            font-size: 16px;
            font-weight: 500;
            text-align: center;
            display: none;
        }

        .netflix-red {
            color: #e50914;
        }

        .free-access {
            background: linear-gradient(135deg, #e50914 0%, #ff1e2d 100%);
            color: white;
            padding: 20px 30px;
            border-radius: 8px;
            margin: 30px 0;
            font-size: 18px;
            font-weight: 600;
            box-shadow: 0 8px 32px rgba(229, 9, 20, 0.3);
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
            overflow: hidden;
        }

        .free-access::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .netflix-header {
                padding: 0 4%;
            }

            .nav-menu {
                display: none;
            }

            .logo {
                height: 32px;
            }

            .hero-section {
                padding: 100px 4% 40px;
                min-height: 80vh;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 12px;
            }

            .play-btn, .info-btn {
                justify-content: center;
                padding: 14px 24px;
            }

            .health-partners {
                text-align: center;
                margin: 25px 0;
            }
            
            .partners-logo {
                max-width: 90%;
            }

            .eligibility-form {
                padding: 32px 24px;
                margin: 40px 4%;
            }

            .content-section {
                padding: 40px 4%;
            }

            .documentary-info {
                padding: 32px 24px;
            }

            .quote-section {
                padding: 32px 24px;
            }

            .user-menu {
                gap: 16px;
            }

            .search-icon, .notifications {
                width: 20px;
                height: 20px;
            }

            .profile-avatar {
                width: 28px;
                height: 28px;
            }

            .modal-content {
                width: 95%;
                margin: 20px;
            }

            .modal-header {
                padding: 20px 24px 0;
            }

            .modal-body {
                padding: 24px;
            }

            .modal-header h3 {
                font-size: 20px;
            }
        }
		
        /* Estilo específico para a página de vídeo - remover a imagem de fundo e ajustar altura */
        .video-page .hero-section {
            background: linear-gradient(135deg, 
                rgba(0,0,0,0.85) 0%, 
                rgba(0,0,0,0.4) 40%,
                rgba(229,9,20,0.1) 60%, 
                rgba(0,0,0,0.9) 100%
            );
            /* Remove a imagem de fundo eric_clapton.png */
            background-image: none !important;
            /* Reduz drasticamente a altura da seção hero */
            min-height: 120px !important;
            padding: 80px 4% 20px !important;
        }

        /* Ajuste responsivo para mobile */
        @media (max-width: 768px) {
            .video-page .hero-section {
                min-height: 100px !important;
                padding: 70px 4% 15px !important;
            }
        }