*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000;
    color: #fff;
}

header{
    text-align: center;
    padding: 2rem;
    background-color: #111;
}

header h1{
    font-size: 2.5rem;
}

header p{
    font-size: 1.2rem;
    color: #ccc;
}

section.info{
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    justify-content: center;
}

.info img{
    max-width: 700px;
    margin-right: 2rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.7);
    transition: 0.3s;
}

.info img:hover{
    transform: scale(1.05);
    transition: 0.3s;
    opacity: 0.9;
}

.info h2{
    text-align: center;
    margin-bottom: 13px;
}

.info p{
    margin-bottom: 14px;
}

.info h3{
    margin-bottom: 13px;
}

.detalhes{
    max-width: 500px;
}

.detalhes h2, .detalhes h3{
    color: #e50914;
}

.detalhes ul li{
    list-style: none;
    margin-bottom: 12px;
}

ul li::before{
    content: "🎬";
}

button{
    background-color: red;
    color: white;
    padding: 1rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 0 10px red;
}

button:hover{
    background-color: darkred;
    transform: scale(1.05);
}

#modal.hidden{
    display: none;
}

#modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

#modal.show{
    opacity: 1;
    pointer-events: auto;
}

.modal-content{
    position: relative;
}

#closeBtn{
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px){
    section.info{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info img{
        margin: 0 0 1rem 0;
        max-width: 90%;
    }

    .detalhes{
        max-width: 90%;
    }

    iframe{
        width: 90%;
        height: 200px;
    }
}

@media (max-width: 480px){
    header h1{
        font-size: 2rem;
    }

    header p{
        font-size: 1rem;
    }

    button{
        padding: 10px 20px;
        font-size: 1rem;
    }

    #closeBtn{
        top: -20px;
        right: -20px;
        font-size: 2rem;
    }
}