.fundopagsobre {
    background: #FFA323;
    background: linear-gradient(90deg, rgba(255, 163, 35, 0.425) 0%, rgba(0, 125, 171, 0.288) 50%, rgba(255, 255, 255, 1) 100%);
    z-index: 3;
}


.degradefundopag {
    background-image: linear-gradient(to bottom, #075b7f, #0a739975, #0d8dbf46);

}

.titulo-sobre {
    font-size: 32px;
    font-weight: bold;
    padding-top: 80px;
    text-align: center;
    color: #075b7f;
}

.textoP {
    color: black;
    text-align: justify;

}

.textoH3 {

    font-weight: bold;
}

.textoH1 {
    font-weight: bold;
}

.btn-parceria {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #075b7f;
    color: white;
    width: 500px;
    height: 55px;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    transition: 0.5s;
    font-weight: bold;
}

.btn-parceria:hover {
    background-color: #007cab;
}

.alinhar-btn {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.title-sobre {
    font-size: 18px;
    font-weight: bold;
    color: rgb(255, 255, 255)
}

.title-comecar {
    font-size: 43px;
    font-weight: bold;
    color: #075b7f;
}

.sub-title {
    color: #075b7f;
    font-size: 18px;
    font-weight: bold;
    margin-top: 35px;


}

.btn-queropar {
    background-color: #075b7f;
    color: white;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    transition: 0.5s;
    margin-top: 35px;
    text-decoration: none;
    font-weight: bold;

}

.btn-queropar:hover {
    background-color: #007cab;
}

.img-sobre {
    width: 100%;
}

.custom-divider2 {
    --divider-pattern-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cline x1='0' y1='10' x2='10' y2='0' stroke='black' stroke-width='1'/%3E%3C/svg%3E");
    margin-top: 100px;
    margin-bottom: -90px;
    background-image: var(--divider-pattern-url);
    background-repeat: repeat-x;
    background-size: 13px 13px;
    width: 100%;
    height: 20px;
}

.elementor-divider-separator2 {
    display: block;
    width: 100%;
    height: 100%;
}

.title-escolher {
    font-size: 21px;
    font-weight: bold;
    color: #075b7f;
    text-align: center;
}

.title-seja {
    font-size: 32px;
    font-weight: bold;
    color: #075b7f;
    text-align: center;
}

.alinhar-parceiro {
    display: flex;
    align-items: center;

}

/* gestores */

.gestor {
    position: relative;
    text-align: center;
    margin-bottom: 20px;


}

.imagem img {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
    height: 350px;

}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%;
    height: 85%;
    transform: translate(-50%, -50%) scale(1);
    border-radius: 50%;
    background-color: #00183073;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
}


.cargo-white {
    color: white;
}

.informacao {
    text-align: center;
    color: white;
}

.informacao h3 {
    font-size: 18px;
    margin: 5px 0;
}

.informacao p {
    font-size: 14px;
    margin: 5px 0;
}

.redes-sociais a {
    margin: 5px;
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.gestor:hover .overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.8);
    /* Reduz para 80% no hover */
}

/* especializacao */
.box-solutions {
    background-color: white;
    width: 360px !important;
    height: 310px;
    margin: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px !important;
    overflow: hidden;
    position: relative;
    /* Necessário para posicionar o ícone */
}

.box-especializacao {
    background-color: rgba(255, 255, 255, 0.486);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 360px !important;
    height: 310px;
    margin: 10px;
    margin-bottom: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px !important;
    overflow: hidden;
    position: relative;

}

.icon-effect {
    position: absolute;
    bottom: 0px;
    /* Escondido logo dentro do box, no limite inferior */
    right: 10px;
    /* Posiciona o ícone no canto inferior direito */
    font-size: 30px;
    color: #007BFF;
    /* Cor do ícone */
    opacity: 0;
    /* Invisível inicialmente */
    transition: all 0.3s ease-in-out;
    width: 80px;
    /* Ajuste o tamanho do ícone */
    height: 80px;
    transform: translateY(30px);
    /* Desloca o ícone para baixo, fora da vista */
}

.box-especializacao:hover .icon-effect {
    opacity: 1;
    /* Torna o ícone visível */
    transform: translateY(0);
    /* Move o ícone para a posição original */
}

.box-solutions:hover .icon-effect {
    opacity: 1;
    /* Torna o ícone visível */
    transform: translateY(0);
    /* Move o ícone para a posição original */
}

@media (max-width: 480px) {
    .titulo-sobre {
        font-size: 40px;
        font-weight: 600;
        color: #007cab;
        margin-top: 20px;
    }

    .btn-parceria {
        background-color: #001830;
        color: white;
        width: 100%;
        height: 55px;
        font-size: 18px;
        border: none;
        border-radius: 10px;
        transition: 0.5s;
    }

    .title-comecar {
        font-size: 40px;
        font-weight: 600;
        color: #007cab;
    }

    .btn-queropar {
        background-color: #001830;
        color: white;
        width: 100%;
        height: 55px;
        font-size: 18px;
        border: none;
        border-radius: 10px;
        transition: 0.5s;
        margin-top: 35px;
        margin-bottom: 40px;
    }

    .imagem img {
        width: 70%;
        border-radius: 50%;
        object-fit: cover;
        transition: opacity 0.3s ease-in-out;

    }

    .overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 70%;
        height: 85%;
        transform: translate(-50%, -50%) scale(1);
        border-radius: 50%;
        background-color: rgba(0, 0, 255, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    }
}