/* Estilo para o botão "Conheça nosso projeto" */
.btn-video {
    display: block;
    font-size: 2rem;
    margin: 5rem auto;
    text-align: center;
    width: auto;
}

.btn-video a {
    background-color: white;
    border: 0.1rem solid #00524C;
    color: #00524C;
    font-family: 'Ibarra Real Nova', serif;
    padding: 1rem;
    text-decoration: none;
}

.btn-video a:hover {
    background-color: #00524C;
    color: white;
}

/* Texto com destaque em verde */
.cor-verde {
    color: #00325B;
    font-size: 1.7rem;
    text-align: center;
}

/* Seção da equipe */
.div-nossa-equipe {
    display: flex;
    margin: 5rem auto 0;
    position: relative;
}

/* Texto da página inicial */
.div-texto-inicio {
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 2rem;
    text-align: justify;
    width: 70vw;
}

.div-texto-inicio p {
    font-size: 2rem;
    line-height: 1.8rem;
}

/* Estilo para iframe de vídeo */
iframe {
    display: block;
    height: 72vh;
    margin: 3% auto;
    position: relative;
    width: 60vw;
}

/* Estilo para imagem que carrega o vídeo */
.imagem-vd {
    cursor: pointer;
    height: 100%;
    left: 50%;
    margin: auto;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

/* Container para o vídeo na página inicial */
#video-inicio {
    height: 0;
    padding-bottom: 50%;
    position: relative;
}

/* ----------- Responsividade ----------- */
@media only screen and (max-width: 980px) {
    .div-texto-inicio {
        width: 90vw;
    }

    .div-texto-inicio p {
        font-size: 1.5rem;
        line-height: 1.4rem;
    }

    iframe {
        height: 30rem;
        width: 80%;
    }
}