
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        }
        .net {
            background-color: #333333;
            color: #fff;
            overflow: hidden;
        }
        
        .navbar {
            /* position: fixed; */
            top: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            z-index: 1000;
            background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
            transition: background-color 0.3s;
        }
        
        .navbar.scrolled {
            background-color: #333333;
        }
        
        .logo {
            height: 30px;
        }
        
        .nav-links {
            display: flex;
            gap: 20px;
        }
        
        .nav-links a {
            color: #e5e5e5;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #b3b3b3;
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .hero {
            position: relative;
            height: 95vh;
            display: flex;
            align-items: center;
            padding: 0 50px;
            justify-content: center;
        }
        
        .hero-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.4) 100%);
            z-index: -1;
        }
        
        #background-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
            opacity: 0.7;
        }
        
        .hero-content {
            max-width: 40%;
            z-index: 1;
            display: flex;
            flex-direction: column;
            /* padding-top: 1.5rem; */
        }
        
        .hero-title {
            font-size: 2rem;
        }
        .hero-title2 {
            font-size: 2rem;
        }
        
    .hero-title3 {
            font-size: 2rem;
        }
        .hero-info {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
            font-size: 16px;
            color: #d2d2d2;
            flex-wrap: wrap;
            flex-direction: column;
        }
        
        .hd-badge{
            font-size: 0.75rem;
            color: white;
            background-color: black;
            border: 1px solid white;
            padding: 0px 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            align-self: center;
                
        }

        .info-episode{
            color: #949494;
        }
        
        .hero-description {
            margin-bottom: 20px;
            line-height: 1.5;
            font-size: 18px;
            color: #d2d2d2;
            display: flex;
            align-items: center;

        }
        .hero-abouts{
            display: flex; flex-direction: row; gap: 14px; padding-top: 0.85rem;
        }


        .hero-actions {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .btn {
            padding: 10px 25px;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            border: none;
            font-size: 16px;
        }
        
        .btn-play {
            background-color: white;
            color: black;
        }

                .btn-play:hover {
            background-color: rgb(0, 0, 0);
            color: white;
        }
        
        .btn-info {
            background-color: rgba(109, 109, 110, 0.7);
            color: white;
        }
        
        .btn:hover {
            opacity: 0.8;
        }
        
        .info-section {
            padding: 30px 50px;
        }
        
        .info-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .info-details {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }
        
        .info-left p {
            margin-bottom: 15px;
            line-height: 1.5;
            color: #d2d2d2;
            max-width: 600px;
            font-size: 16px;
        }
        
        
        .info-right div {
            margin-bottom: 4px;
            font-size: 16px;
        }
        
        .info-label {
            color: #777;
            margin-bottom: 5px;
            font-size: 14px;
        }
        
        .info-value {
            color: #d2d2d2;
        }
        
        /* Modal de vídeo */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            width: 80%;
            max-width: 900px;
            position: relative;
        }
        
        #modal-video {
            width: 100%;
            border-radius: 8px;
        }
        
        .close-modal {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: none;
            border: none;
            font-weight: bold;
        }
       
        
        @media (max-width: 768px) {
            .hero-content {
                max-width: 100%;
                       padding-top: 0.75rem;
            }
            
            .hero-title {
                font-size: 1rem;
            }

            .hero-title2 {
                font-size: 1.5rem;
            }
            .hero-title3 {
                font-size: 1.1rem;
            }
            
            
            .info-details {
                grid-template-columns: 1fr;
            }
            
            
            .navbar {
                padding: 15px 20px;
            }
            
            .nav-links {
                display: none;
            }

            .hero {
        height: auto; 
        padding: 20px; 
    }

        .hero-description{
            gap: 10px;
        }
        }
.navbar img{
    max-width: 30%;
}