
.monitoriaCorpo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 5rem;
    background-color: var(--branco);
}

.monitoriaTextos {
    max-width: 100%;
    padding: 2rem;
}

.monitoriaTextos h2 {
    color: var(--vermelho);
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.monitoriaTextos p {
    font-size: 1.2rem;
    color: var(--cinza-escuro);
}

.monitoriaImgExtra {
    max-width: 35%;
}

.monitoriaImgExtra img {
    width: 100vw;

}

/* Seção de envio de documentos */
.monitoriaEmail {
    display: flex;
    justify-content: space-between;
    padding: 2rem 5rem;
    background-color: #f9f9f9;
}

.monitoriaFiles {
    background-color: #f9f9f9;
    padding: 2rem;
    width: 43vw;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

.monitoriaFiles h2 {
    color: var(--vermelho);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--vermelho);
    padding-bottom: 0.5rem;
}

.monitoriaFiles div {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.monitoriaFiles a {
    background-color: var(--vermelho);
    text-decoration: none;
    font-weight: bold;
    margin-left: 1rem;
}

.monitoriaFiles a:hover {
    background-color: #f80d0d;
}

.preencherEmail {
    flex: 1;
    background-color: var(--branco);
    padding: 1rem;

    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}

.preencherEmail form {
    display: flex;
    flex-direction: column;
}

.preencherEmail label {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--cinza-escuro);
}

.preencherEmail input, .preencherEmail textarea {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
}

#btn_enviar {
    background-color: var(--vermelho);
    color: white;
    padding: 0.75rem;
    font-size: 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

#btn_enviar:hover {
    background-color: #a11414;
}


.tipo-solicitacao {
    margin: 15px 0;
}

.opcoes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 5px;
}

.opcoes input {
    display: none;
}

.opcoes label {
    padding: 10px 20px;
    background-color: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.opcoes input:checked + label {
    background-color: #a11414;
    color: white;
}


.textinho-vermelho{
    color: #a11414;
}
.monitoriaItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0.8rem 1rem;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    border: solid 1px;
    border-color: #a11414;
}

.monitoriaItem:hover {
    background-color: #f0f0f0;
}

/* Estilo do texto */
.monitoriaItem span {
    font-size: 1.2rem;
    color: #333;
}

/* Botão de download */
.monitoriaBtn {
    display: inline-flex;
    align-items: center;
    background-color: var(--vermelho);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.monitoriaBtn i {
    margin-right: 0.5rem;
}

.monitoriaBtn:hover {
    background-color: #a11414;
}

.monitoriaCardsVertical {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
}

.monitoriaCardsVertical .card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);

    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.monitoriaCardsVertical .card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}

.monitoriaCardsVertical .card-header {
    background-color: var(--vermelho);
    color: #fff;
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    border-bottom: 3px solid rgba(0, 0, 0, 0.1);
}
.monitoriaCardsVertical .card-header .texto-header {
    margin-top: 0;
    margin-bottom: 0rem;
}

.monitoriaCardsVertical .card-body {
    padding: 1.5rem;
    font-size: 1.4rem;
    color: var(--cinza-escuro);

    text-align: center;
}

.monitoriaCardsVertical .card-body p {
    margin-bottom: 1rem;
}

.monitoriaCardsVertical .card-body p strong {
    color: #333;
    font-weight: bold;
}

/* Responsividade */
@media (min-width: 851px) {
    .mobile{
        display: none;
    }
}
@media (max-width: 850px) {
    .monitoriaCorpo {
        flex-direction: column;
        align-items: center;
        padding: 0rem;
    }
    .monitoriaFiles{
        width: 100vw;
    }
    
    .monitoriaFiles a {
        margin-left: 0rem;
    }
    .monitoriaTextos {
        max-width: 100%;
        padding: 1rem;
    }

    .desktop {
        display: none;
    }

    .monitoriaEmail {
        flex-direction: column;
        padding: 0rem;
    }


    .monitoriaItem {
        flex-direction: column;
        align-items: flex-start;
    }

    .monitoriaBtn {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .monitoriaCardsVertical {
        padding: 1rem;
    }

    .monitoriaCardsVertical .card {
        max-width: 100%;
    }

    .monitoriaCardsVertical .card-header {
        font-size: 1.4rem;
    }

    .monitoriaCardsVertical .card-body {
        font-size: 1rem;
    }
}

@media (max-width: 570px) {
    .monitoriaTextos h2 {
        font-size: 2rem;
    }

    .preencherEmail input, .preencherEmail textarea {
        font-size: 1rem;
    }

    .preencherEmail label {
        font-size: 1rem;
    }
}
