/* INÍCIO SEÇÃO PRINCIPAL */
.principal {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 20px;
    gap: 40px;
}
/* FIM SEÇÃO PRINCIPAL */

/* INÍCIO TEXTO (ESQUERDA) */
.texto {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 50%;
    text-align: center;
    padding: 0 5%;
}

.texto h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 60px;
    line-height: 1.4;
    color: #ffffff;
}

.texto h2 span {
    color: rgb(36, 167, 255);
}

.texto p {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
}
/* FIM TEXTO (ESQUERDA) */

/* INÍCIO IMAGEM (PLAY) */
.capas {
    width: 700px;
    height: 700px;
    clip-path: polygon(20% 10%, 80% 50%, 20% 90%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capas img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* FIM IMAGEM (PLAY) */

/* INÍCIO RESPONSIVIDADE */
/* Tablets (até 1024px) */
@media (max-width: 1024px) {
    .texto {
        width: 100%;
        padding: 0 5%;
    }

    .texto h2 {
        font-size: 44px;
    }

    .capas {
        width: 500px;
        height: 500px;
    }
}

/* Celulares (até 768px) */
@media (max-width: 768px) {
    .principal {
        flex-direction: column;
        height: auto;
        padding: 40px 10px;
    }
    
    .principal a {
        width: 100%;
    }

    .texto {
        width: 100%;
        text-align: center;
        padding: 0 10px;
    }

    .texto h2 {
        font-size: 32px;
    }

    .texto p {
        font-size: 14px;
    }

    .capas {
        width: 300px;
        height: 300px;
    }
}
/* FIM RESPONSIVIDADE */