@import url('baseSite.css');

.sec-branco {
    margin-bottom: 32px;
}

.linha {
    display: flex;
    flex-wrap: wrap;       
    gap: 24px;
    justify-content: center;
}

.cardAgronomo {
    display: flex;
    align-items: center;
    flex: 1 1 45%;          
    max-width: 45%;         
    border-radius: 12px;
    padding: 24px;
    background-color: #f9fff9;
    box-shadow: 0px 20px 35px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    gap: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.cardAgronomo:hover {
    transform: translateY(-6px);
    box-shadow: 0px 30px 34px rgba(0, 0, 0, 0.35);
}

.card-img-container {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.card-nome {
    font-size: 1.5rem;
    font-weight: bold;
}

.card-Nascimento,
.card-telefone,
.card-formacao,
.card-instituicao,
.card-lattes {
    font-size: 1rem;
}

.card-lattes a {
    color: #1b5e20;
    text-decoration: underline;
}
.btnAgronomo{
    background-color: #3f7021; 
    color: white;
}
.btnAgronomo:hover {
  background-color: #38611f;
  color: #fff;
}

/* Responsividade */
@media (max-width: 768px) {
    .cardAgronomo {
        flex-direction: column;
        max-width: 90%;
        text-align: center;
    }

    .card-img-container {
        width: 150px;
        height: 150px;
        margin-bottom: 16px;
    }
}