/*========================================================
                HERO SECTION ABOUT US CIRCLE
==========================================================*/
/* Imagem na full direita */
.sobre-image {
    position: absolute; /* Posiciona a imagem de forma absoluta */
    right: -170%; /* Alinha totalmente à direita */
    top: 60%; /* Centraliza verticalmente em relação à seção */
    transform: translateY(-50%); /* Ajusta a centralização vertical */
    z-index: 1; /* Garante que fique acima de outros elementos */
    width: 900px; /* Define a largura fixa da imagem */
    height: auto; /* Mantém as proporções */
}

.sobre-image img {
    width: 100%; /* A imagem preenche totalmente o contêiner pai */
    height: auto; /* Mantém as proporções */
    object-fit: contain; /* Garante que a imagem não seja cortada */
}

.circle-right-6 {
    width: 600px;
    height: 600px;
    top: 7%;
    left: 63.5%;
    border-color: #20B486;
    opacity: 1 !important;
}

/* Pequeno círculo à direita */
.circle-right-small {
    width: 50px;
    height: 50px;
    top: 60%;
    right: 30%;
    background-color: #20B486;
    /* Preenchimento */
    border: none;
    /* Sem borda */
    opacity: 1 !important;
}

/* Círculo grande à direita */
.circle-right-large {
    width: 600px;
    height: 600px;
    top: 10%;
    left: 65%;
    background-color: #20B486;
    border: none;
    /* Sem borda */
    opacity: 1 !important;
}

/*========================================================
                HERO SECTION ABOUT US TEXT
==========================================================*/
.sobre-subtittle {
    font-size: 3rem;
    font-weight: bold;
    color: #6366F1;
    margin-bottom: 30px;
    line-height: 1.2;
}

.sobre-description {
    font-size: 1.2rem;
    /* Tamanho do texto da descrição */
    color: #1E1E1E;
    /* Cor do texto da descrição */
    line-height: 1.6;
    /* Espaçamento entre linhas ajustado */
    margin-bottom: 30px;
    text-align: left;
    /* Alinha o texto à esquerda */
}

/*========================================================
                HERO SECTION ABOUT US BUTTON
==========================================================*/
.hero .btn-entrecontato {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #20B486;
    border: none;
    color: #fff;
    padding: 12px 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border-radius: 30px;
    width: 200px;
    transition: all 0.6s ease;
    pointer-events: auto;
    position: relative;
    z-index: 2000;
    transition: color 0.3s ease, transform 0.3s ease;
    /* Transição suave */
}

.hero .btn-entrecontato:hover {
    background-color: #3BC49A;
    color: #fff;
    transform: translateX(5px);
    /* Move o ícone levemente para a direita */
}

.hero .btn-entrecontato i {
    color: #fff !important;
    font-size: 1.5rem !important;
    margin-left: 5px;
    transition: transform 0.3s ease;
    /* Transição para o hover */
}


.hero .btn-entrecontato:hover i {
    transform: translateX(5px);
    /* Move o ícone levemente para a direita */
}

/*========================================================
            HERO SECTION ABOUT US FEATURE SECTION
==========================================================*/
.policy-section {
    padding: 40px 20px;
    background-color: #ffffff;
    /* Fundo claro */
}

.policy-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 1200px;
    margin: 0 auto;
}

.aboutusfeature-section {
    padding: 40px 20px;
    background-color: #ffffff;
    /* Fundo claro */
}

.aboutusfeature-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.aboutusfeature-item {
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 20px;
    justify-content: space-between;
}

.aboutusfeature-item-reverse {
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 20px;
    justify-content: space-between;
    /* Espaço entre imagem e texto */
}

.aboutusfeature-text,
.aboutusfeature-text-reverse {
    width: 55%;
    font-family: 'Inter', sans-serif;
    color: #1E1E1E;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
}

.aboutusfeature-text p,
.aboutusfeature-text-reverse p {
    margin-bottom: 20px;
    /* Espaçamento entre parágrafos */
}

.aboutusfeature-text {
    right: 0;
}

.aboutusfeature-text-reverse {
    left: 0;
}


.aboutusfeature-item-reverse .aboutusfeature-btn-saiba-mais {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #20B486;
    border: none;
    color: white;
    padding: 8px 24px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.aboutusfeature-btn-saiba-mais:hover {
    background-color: #3BC49A;
    color: #fff;
    transform: translateX(5px); /* Move o botão levemente para a direita */
}

/* Ícone */
.aboutusfeature-btn-saiba-mais i {
    color: #fff !important;
    font-size: 1.5rem !important;
    margin-left: 5px;
    transition: transform 0.3s ease; /* Suaviza o movimento */
}

/* Efeito ao passar o mouse: Ícone se move para a direita */
.aboutusfeature-btn-saiba-mais:hover i {
    transform: translateX(7px);
}



/*========================================================
            HERO SECTION ABOUT US TEAM
==========================================================*/
.team-aboutus {
    background-color: #ffffff;
}

.teamfeature-container {
    display: flex;
    flex-direction: column;
    gap: 150px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.teamfeature-item {
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 20px;
    justify-content: space-between;
}

.teamfeature-item-reverse {
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 20px;
    justify-content: space-between;
    /* Espaço entre imagem e texto */
}

.teamfeature-text,
.teamfeature-text-reverse {
    width: 55%;
    font-family: 'Inter', sans-serif;
    color: #1E1E1E;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
}

.teamfeature-text h1,
.teamfeature-text-reverse h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.teamfeature-text h5,
.teamfeature-text-reverse h5 {
    font-family: 'Poppins', sans-serif;
    color: #22B286;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 20px;
}

.teamfeature-text p,
.teamfeature-text-reverse p {
    margin-bottom: 20px;
}

.teamfeature-text {
    right: 0;
}

.teamfeature-text-reverse {
    left: 0;
}

/*========================================================
            HERO SECTION ABOUT US BENEFIT CARD
==========================================================*/

.aboutus-benefits-section {
    padding: 40px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

.aboutus-benefits-header{
    margin-top: 120px;
    margin-bottom: 50px;
}

.aboutus-benefits-header h2 {
    color: #20B486;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}

.aboutus-benefits-header h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #1E1E1E;
    margin-top: 50px;
    margin-bottom: 50px;
}

.aboutus-benefits-header h3 span {
    color: #20B486;
}

.aboutus-benefits-header p {
    color: #1E1E1E;
    margin-bottom: 40px;
    font-size: 18px;
}

.aboutus-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 colunas fixas */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.aboutus-benefit-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(224, 224, 224, 0.3); /* 50% de opacidade */
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Personalização de cores para os cartões 1, 3 e 5 */
.aboutus-benefit-card:nth-child(1),
.aboutus-benefit-card:nth-child(3),
.aboutus-benefit-card:nth-child(5) {
    background-color: #F7FDF9;
    color: #141414;
    border: none;
}

.aboutus-benefit-card:nth-child(1) h4,
.aboutus-benefit-card:nth-child(3) h4,
.aboutus-benefit-card:nth-child(5) h4 {
    color: #20B486;
    /* Número branco */
}

.aboutus-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.aboutus-benefit-card h4 {
    font-size: 32px;
    color: #20B486;
    /* Verde padrão */
    margin-bottom: 10px;
}

.aboutus-benefit-card h5 {
    font-size: 22px;
    color: #141414;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.aboutus-benefit-card p {
    font-size: 14px;
    color: #666;
}
