.titulo-operacao {
    font-size: 3rem;
    font-weight: 700;
    width: 100%;
    max-width: 1100px;
}

.titulo-operacao span {
    color: #1a8449;
}

.section-operacao-p1{
    display: flex;              /* Layout flexível */
    align-items: center;        /* Alinha verticalmente */
    gap: 10px;                  /* Espaço entre linha e texto */
    width: 100%;
    max-width: 1100px;
}

.operacao-description {
    font-size: 1.2rem;
    line-height: 1.5;
    color: rgba(109, 109, 109, 0.795);
    width: 100%;
    max-width: 1100px;
}

.quem-somos{
    width: 20px;
    height: 2px;
    margin-right: 0% ;
}

.card-operacao {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    width: 100%;
    max-width: 1100px;
 
}

.section-operacao-p1 span{
    font-weight: 800;
    margin-left: 0% ;
}

.card-operacao img {
    width: 500px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.card-operacao-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex: 1;
    padding: 20px 0;
}

.card-operacao-text > p:first-of-type {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a8449;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.card-operacao-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.card-operacao-text > p:nth-of-type(2) {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(100, 100, 100, 0.9);
    margin: 0;
}

.card-informations {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 10px;
}

.information-1,
.information-2 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.information-1 h3,
.information-2 h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a8449;
    margin: 0;
}

.information-1 span,
.information-2 span {
    font-size: 0.95rem;
    color: rgba(100, 100, 100, 0.8);
    font-weight: 500;
}

.section-operacoes {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
}

.cards-section-operation{
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 1100px;
}

@media (max-width: 900px) {
    .titulo-operacao {
        font-size: 2.2rem;
    }

    .card-operacao {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }

    .card-operacao img {
        width: 100%;
        max-height: 320px;
        object-fit: cover;
    }

    .card-operacao-text h2 {
        font-size: 1.6rem;
    }

    .card-informations {
        gap: 20px;
    }
}

/* Celulares (até 600px) */
@media (max-width: 600px) {
    .section-operacoes {
        padding: 40px 16px;
    }

    .titulo-operacao {
        font-size: 1.7rem;
    }

    .operacao-description {
        font-size: 1rem;
    }

    .card-operacao {
        flex-direction: column;
        gap: 20px;
        padding: 18px;
        border-radius: 12px;
    }

    .card-operacao img {
        width: 100%;
        max-height: 220px;
        border-radius: 8px;
    }

    .card-operacao-text {
        align-items: flex-start;
        padding: 0;
        gap: 12px;
    }

    .card-operacao-text h2 {
        font-size: 1.35rem;
    }

    .card-operacao-text > p:nth-of-type(2) {
        font-size: 0.95rem;
    }

    .card-informations {
        flex-direction: column;
        gap: 14px;
        margin-top: 6px;
    }

    .information-1 h3,
    .information-2 h3 {
        font-size: 1.1rem;
    }

    .information-1 span,
    .information-2 span {
        font-size: 0.9rem;
    }

    .cards-section-operation {
        gap: 24px;
    }
}