/* Reset CSS */

/* Normalizações gerais */
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
q,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption {
    margin: 0;
    padding: 0;
    border: 0;
}

/* Ajuste para uma boa prática de box-sizing */
*,
*:before,
*:after {
    box-sizing: border-box;
}

/* Normalização de elementos específicos */
body {
    line-height: 1;
}

/* Elementos tipográficos padrão */
body,
button,
input,
select,
textarea {
    font-family: 'Poppins', sans-serif; /* Aplica a fonte Poppins à página inteira */
}

/* Outras normalizações específicas podem ser adicionadas conforme necessário */

/* Fim do Reset CSS */
@media only screen and (min-width: 992px) {
/* HEADER DESKTOP */
#section-header {
    background-color: #fefefe; /* Cor de fundo */
    padding: 60px 0; /* Espaçamento interno */
}

.container {
    max-width: 1200px; /* Largura máxima do container */
    margin: 0 auto; /* Centraliza o container na página */
}

.div-header-content {
    display: flex; /* Flex container para organizar os elementos em linha */
    justify-content: space-between; /* Distribui o espaço entre os elementos */
    align-items: center; /* Alinha os elementos verticalmente */
    gap: 60px;
}

/* Estilos para a coluna do texto no header */
.col-header-txt {
    display: block;
    width: 40%;
}

.div-header-txt {
    text-align: left; /* Centraliza o conteúdo */
    display: block;
    width: 94%;
}

.div-avatar-mobile {
    display: none;
}

.img-header {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.div-logo {
    padding: 15px 0; /* Adiciona margem de 10 pixels em todos os lados */
}

.img-logo-header {
    max-width: 200px; /* Largura máxima do logotipo */
}

/* Estilos para a coluna do avatar no header */
.col-header-avatar {
    display: block;
    width: 60%;
}

.div-header-avatar {
    text-align: center; /* Centraliza o conteúdo */
}

/* Estilos para os títulos e textos no header */
.div-h1 {
 display: block;
 padding: 15px 0; /* Adiciona margem de 10 pixels em todos os lados */
}

.h1-header {
    color: #0021E2;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 54px */
}

.div-h3 {
 display: block;
 padding: 15px 0; /* Adiciona margem de 10 pixels em todos os lados */
}

.h3-header {
    color: #0A1C7D;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 48px */
}

/* Estilos para o botão no header */
.div-button {
    padding: 15px 0; /* Adiciona margem de 10 pixels em todos os lados */
}

.button {
    display: inline-block;
    padding: 20px 25px;
    background-color: #00B03C; /* Cor de fundo do botão */
    color: #fff; /* Cor do texto do botão */
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px; /* Borda arredondada */
    transition: background-color 0.3s; /* Transição suave de cor de fundo */
}

.button:hover {
    background-color: #0cff5d; /* Cor de fundo do botão ao passar o mouse */
}

.txt-bt {
    margin: 0;
    font-family: poppins;
    font-size: 20px;
}

/* ACORDOS DESKTOP */
#section-acordos {
    background-color: #0A1C7D; /* Cor de fundo */
    padding: 60px 0; /* Espaçamento interno */
}

.div-acordos-content {
    display: flex; /* Flex container para organizar os elementos em linha */
    justify-content: space-between; /* Distribui o espaço entre os elementos */
    align-items: center; /* Alinha os elementos verticalmente */
    gap: 60px;
}

/* Estilos para a coluna do texto no header */
.col-acordos-txt {
    display: block;
    width: 50%;
}

.div-acordos-txt {
    text-align: right; /* Centraliza o conteúdo */
    display: block;
    width: 100%;
    padding-left: 100px;
}

.div-acordos-mobile {
    display: none;
}

.img-acordos {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Estilos para a coluna do avatar no header */
.col-acordos-avatar {
    display: block;
    width: 50%;
}

.div-acordos-avatar {
    text-align: center; /* Centraliza o conteúdo */
}

/* Estilos para os títulos e textos no header */
.div-h1 {
 display: block;
 padding: 15px 0; /* Adiciona margem de 10 pixels em todos os lados */
}

.h1-acordos {
    color: #fefefe;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 54px */
}

.div-h3 {
 display: block;
 padding: 15px 0; /* Adiciona margem de 10 pixels em todos os lados */
}

.h3-acordos {
    color: #fefefe;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 48px */
}

/*PASSOS DESKTOP*/
#section-passos {
    background-color: #fefefe; /* Cor de fundo */
    padding: 60px 0; /* Espaçamento interno */
}

.div-passos-content {
    display: flex; /* Flex container para organizar os elementos em linha */
    flex-direction: column;
    justify-content: space-between; /* Distribui o espaço entre os elementos */
    align-items: center; /* Alinha os elementos verticalmente */
    gap: 30px;
}

.h1-passos {
    color: #FF7F09;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 54px */
}

/* Estilos para o grid de passos */
.grid-passos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; /* Espaçamento entre os boxes */
}

/* Estilos para cada box de passo */
.box-passo {
    text-align: center;
    padding: 40px 40px;
    background-color: #4B65EE;
}

.numero {
    display: block;
    font-size: 70px;
    color: #fefefe;
    font-weight: 500;
}

.p-passo {
    margin-top: 10px; /* Espaçamento superior */
    font-size: 18px; /* Tamanho da fonte para o texto */
    color: #fefefe; /* Cor do texto */
    font-weight: 300;
    line-height: 120%;
}

/* BENEFÍCIOS DESKTOP */
#section-beneficios {
    background-color: #fefefe; /* Cor de fundo */
    padding: 60px 0; /* Espaçamento interno */
}

.div-beneficios-content {
    display: flex; /* Flex container para organizar os elementos em linha */
    flex-direction: column;
    justify-content: space-between; /* Distribui o espaço entre os elementos */
    align-items: center; /* Alinha os elementos verticalmente */
    gap: 30px;
}

.h1-beneficios {
    color:#FF7F09;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 54px */
}

.beneficios-flex {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.avatar-beneficios {
 width: 50%;
}

.img-beneficios {
 width: 80%;
}

/* Estilos para o grid de beneficios */
.grid-beneficios {
    display: grid;
    width:50%;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* Espaçamento entre os boxes */
    justify-content: space-between;
    align-items: center;
    justify-items: stretch;
    align-content: center;
}

/* Estilos para cada box de beneficio */
.box-beneficio {
    text-align: center;
    padding: 40px 60px;
    border: 5px solid #0021E2;
}

.img-beneficio {
    width: 100px; /* Ajuste conforme necessário */
    height: 100px; /* Ajuste conforme necessário */
}

.h4-beneficio {
    margin-top: 10px; /* Espaçamento superior */
    font-size: 18px; /* Tamanho da fonte para o subtítulo */
    color: #0A1C7D; /* Cor do texto do subtítulo */
    font-weight: 600;
    line-height: 120%;
}

.txt-bt-beneficio {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 20px; /* Tamanho da fonte para o texto do botão */
}

/* NUMEROS DESKTOP */
.section-numeros {
    background-color: #0A1C7D; /* Cor de fundo */
    padding: 60px 0; /* Espaçamento interno */
}

.section-numeros h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.5;
    color: #fefefe;
}

.div-numeros-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.div-numeros {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 285px;
}

.numeros{
    display: block;
    text-align: center;
}

.small-text {
    display: inline-block;
    font-size: 18px !important; 
    font-weight: 700; 
    margin-right: 5px; 
    color: #FEFEFE !important;
}


.numeros h1 {
 font-family: poppins;
 font-size: 35px;
 color: #FEFEFE;
 font-style: normal;
 font-weight: 700;
}

.numeros span {
 font-family: poppins;
 font-size: 35px;
 color: #FF7F09;
 font-style: normal;
 font-weight: 600; 
}

.numeros h4 {
 font-family: poppins;
 font-size: 15px;
 color: #fefefe;
 font-style: normal;
 font-weight: 600;   
}

.numeros h3 {
 font-family: poppins;
 font-size: 25px;
 color: #fefefe;
 font-style: normal;
 font-weight: 400; 
}

/* DEPOIMENTOS DESKTOP */
#section-depoimentos {
    background-color: #4B65EE; /* Cor de fundo */
    padding: 60px 0; /* Espaçamento interno */
}

.div-depoimento-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.h1-depoimentos {
    color: #fefefe;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 54px */
}

.carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.wrapper {
    display: flex;
    align-items: center;
}

.depoimento-box {
    display: flex;
    flex-direction: column;
    width: 570px;
    height: 250px;
    padding: 30px 22px;
    align-items: center;
    gap: 10px;
    align-self: center; /* Alinha o bloco de depoimentos ao centro */
    border: 1px solid #E4EBF3;
    background: #FEFEFE;
    box-shadow: 0px 1.852px 7.409px 0px rgba(0, 0, 0, 0.10);
    position: relative;
}
  
.depoimento-text p {
    margin: 0;
    font-size: 20px;
    color: #000F35;
    line-height: 1.3;
    text-align: left;
}
  
/* Foto e Nome/Profissao */
.depoimento-info {
    display: flex;
    flex-direction: row;
    text-align: left;
    margin-top: auto; /* Alterado para 'auto' para alinhar ao final da .depoimento-box */
    gap: 5px;
    width: 100%;
    align-items: center;
}
  
.depoimento-info img {
    width: 55px;
    height:55px;
    border-radius: 50%;
    align-self: center;
}
  
.depoimento-info h4 {
    margin: 0;
    font-size: 15px;
    color: #000F35;
    font-weight: 400;
}
  
.depoimento-info h3 {
    color: #000F35;
    text-align: left;
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    display: flex;
    align-items: center;
    font-weight: 600;
}
  
.descricao-depoimento {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    padding-left: 5px;
}

/* FOOTER DESKTOP  */
.footer {
    background-color: #0A1C7D;
    padding: 60px 0;
    text-align: center;
}

.div-logo {
    margin-bottom: 10px;
}

.img-logo-footer {
    max-width: 150px; /* Ajuste a largura conforme necessário */
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: #FEFEFE;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

.container {
 width: 80%; /* ou qualquer valor que se ajuste melhor */
 margin: 0 auto; /* Isso centralizará o container horizontalmente */
}

/* HEADER TABLET */
#section-header {
    background-color: #fefefe; /* Cor de fundo */
    padding: 40px 0; /* Espaçamento interno */
}

.div-header-content {
    display: flex; /* Flex container para organizar os elementos em linha */
    justify-content: space-between; /* Distribui o espaço entre os elementos */
    align-items: center; /* Alinha os elementos verticalmente */
    gap: 40px;
}

/* Estilos para a coluna do texto no header */
.col-header-txt {
    display: block;
    width: 50%;
}

.div-header-txt {
    text-align: left; /* Centraliza o conteúdo */
    display: block;
}

.div-avatar-mobile {
    display: none;
}

.img-header {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.div-logo {
    padding: 15px 0; /* Adiciona margem de 10 pixels em todos os lados */
}

.img-logo-header {
    max-width: 200px; /* Largura máxima do logotipo */
}

/* Estilos para a coluna do avatar no header */
.col-header-avatar {
    display: block;
    width: 50%;
}

.div-header-avatar {
    text-align: center; /* Centraliza o conteúdo */
}

/* Estilos para os títulos e textos no header */
.div-h1 {
 display: block;
 padding: 15px 0; /* Adiciona margem de 10 pixels em todos os lados */
}

.h1-header {
    color: #0021E2;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 54px */
}

.div-h3 {
 display: block;
 padding: 15px 0; /* Adiciona margem de 10 pixels em todos os lados */
}

.h3-header {
    color: #0A1C7D;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 48px */
}

/* Estilos para o botão no header */
.div-button {
    padding: 15px 0 0 0;
}

.button {
    display: inline-block;
    padding: 20px 25px;
    background-color: #00B03C; /* Cor de fundo do botão */
    color: #fff; /* Cor do texto do botão */
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px; /* Borda arredondada */
    transition: background-color 0.3s; /* Transição suave de cor de fundo */
}

.button:hover {
    background-color: #0cff5d; /* Cor de fundo do botão ao passar o mouse */
}

.txt-bt {
    margin: 0;
    font-family: poppins;
    font-size: 20px;
}

/* ACORDOS TABLET */
#section-acordos {
    background-color: #0A1C7D; /* Cor de fundo */
    padding: 40px 0; /* Espaçamento interno */
}

.div-acordos-content {
    display: flex; /* Flex container para organizar os elementos em linha */
    justify-content: space-between; /* Distribui o espaço entre os elementos */
    align-items: center; /* Alinha os elementos verticalmente */
    gap: 60px;
}

/* Estilos para a coluna do texto no header */
.col-acordos-txt {
    display: block;
    width: 50%;
}

.div-acordos-txt {
    text-align: right; /* Centraliza o conteúdo */
    display: block;
    width: 100%;
}

.div-acordos-mobile {
    display: none;
}

.img-acordos {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Estilos para a coluna do avatar no header */
.col-acordos-avatar {
    display: block;
    width: 50%;
}

.div-acordos-avatar {
    text-align: center; /* Centraliza o conteúdo */
}

/* Estilos para os títulos e textos no header */
.div-h1 {
 display: block;
 padding: 15px 0; /* Adiciona margem de 10 pixels em todos os lados */
}

.h1-acordos {
    color: #fefefe;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 54px */
}

.div-h3 {
 display: block;
 padding: 15px 0; /* Adiciona margem de 10 pixels em todos os lados */
}

.h3-acordos {
    color: #fefefe;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 48px */
}

/*PASSOS TABLET*/
#section-passos {
    background-color: #fefefe; /* Cor de fundo */
    padding: 40px 0; /* Espaçamento interno */
}

.div-passos-content {
    display: flex; /* Flex container para organizar os elementos em linha */
    flex-direction: column;
    justify-content: space-between; /* Distribui o espaço entre os elementos */
    align-items: center; /* Alinha os elementos verticalmente */
    gap: 30px;
}

.h1-passos {
    color: #FF7F09;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 54px */
}

/* Estilos para o grid de passos */
.grid-passos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* Espaçamento entre os boxes */
}

/* Estilos para cada box de passo */
.box-passo {
    text-align: center;
    padding: 40px 40px;
    background-color: #4B65EE;
}

.numero {
    display: block;
    font-size: 70px;
    color: #fefefe;
    font-weight: 500;
}

.p-passo {
    margin-top: 10px; /* Espaçamento superior */
    font-size: 18px; /* Tamanho da fonte para o texto */
    color: #fefefe; /* Cor do texto */
    font-weight: 300;
    line-height: 120%;
}

/* NUMEROS TABLET */
.section-numeros {
    background-color: #0A1C7D; /* Cor de fundo */
    padding: 60px 0; /* Espaçamento interno */
}

.section-numeros h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.5;
    color: #fefefe;
}

.div-numeros-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.div-numeros {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20%;
}

.numeros{
    display: block;
    text-align: center;
    width: 80%;
}

.small-text {
    display: inline-block;
    font-size: 18px !important; 
    font-weight: 700; 
    margin-right: 5px; 
    color: #FEFEFE !important;
}

.numeros h1 {
 font-family: poppins;
 font-size: 35px;
 color: #FEFEFE;
 font-style: normal;
 font-weight: 700;
}

.numeros span {
 font-family: poppins;
 font-size: 35px;
 color: #FF7F09;
 font-style: normal;
 font-weight: 600; 
}

.numeros h4 {
 font-family: poppins;
 font-size: 15px;
 color: #fefefe;
 font-style: normal;
 font-weight: 600;   
}

.numeros h3 {
 font-family: poppins;
 font-size: 25px;
 color: #fefefe;
 font-style: normal;
 font-weight: 400; 
}

/* BENEFÍCIOS TABLET */
#section-beneficios {
    background-color: #fefefe; /* Cor de fundo */
    padding: 40px 0; /* Espaçamento interno */
}

.div-beneficios-content {
    display: flex; /* Flex container para organizar os elementos em linha */
    flex-direction: column;
    justify-content: space-between; /* Distribui o espaço entre os elementos */
    align-items: center; /* Alinha os elementos verticalmente */
    gap: 30px;
}

.h1-beneficios {
    color:#FF7F09;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 54px */
}

.beneficios-flex {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.avatar-beneficios {
 width: 50%;
 height: auto;
 text-align: center;
}

.img-beneficios {
 width: 80%;
}

/* Estilos para o grid de beneficios */
.grid-beneficios {
    display: grid;
    width:100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* Espaçamento entre os boxes */
    justify-content: space-between;
    align-items: center;
    justify-items: stretch;
    align-content: center;
}

/* Estilos para cada box de beneficio */
.box-beneficio {
    text-align: center;
    padding: 40px 60px;
    border: 5px solid #0021E2;
}

.img-beneficio {
    width: 100px; /* Ajuste conforme necessário */
    height: 100px; /* Ajuste conforme necessário */
}

.h4-beneficio {
    margin-top: 10px; /* Espaçamento superior */
    font-size: 18px; /* Tamanho da fonte para o subtítulo */
    color: #0A1C7D; /* Cor do texto do subtítulo */
    font-weight: 600;
    line-height: 120%;
}

.txt-bt-beneficio {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 20px; /* Tamanho da fonte para o texto do botão */
}

/* DEPOIMENTOS TABLET */
#section-depoimentos {
    background-color: #4B65EE; /* Cor de fundo */
    padding: 60px 0; /* Espaçamento interno */
}

.div-depoimento-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.h1-depoimentos {
    color: #fefefe;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 54px */
    text-align: center;
    padding: 0 80px;
}

.carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.wrapper {
    display: flex;
    align-items: center;
}

.depoimento-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 30px 22px;
    align-items: center;
    gap: 10px;
    align-self: center; /* Alinha o bloco de depoimentos ao centro */
    border: 1px solid #E4EBF3;
    background: #FEFEFE;
    box-shadow: 0px 1.852px 7.409px 0px rgba(0, 0, 0, 0.10);
    position: relative;
}
  
.depoimento-text p {
    margin: 0;
    font-size: 20px;
    color: #000F35;
    line-height: 1.3;
    text-align: left;
}
  
/* Foto e Nome/Profissao */
.depoimento-info {
    display: flex;
    flex-direction: row;
    text-align: left;
    margin-top: auto; /* Alterado para 'auto' para alinhar ao final da .depoimento-box */
    gap: 5px;
    width: 100%;
    align-items: center;
}
  
.depoimento-info img {
    width: 55px;
    height:55px;
    border-radius: 50%;
    align-self: center;
}
  
.depoimento-info h4 {
    margin: 0;
    font-size: 15px;
    color: #000F35;
    font-weight: 400;
}
  
.depoimento-info h3 {
    color: #000F35;
    text-align: left;
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    display: flex;
    align-items: center;
    font-weight: 600;
}
  
.descricao-depoimento {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    padding-left: 5px;
}

/* FOOTER TABLET */
.footer {
    background-color: #0A1C7D;
    padding: 40px 0;
    text-align: center;
}

.div-logo {
    margin-bottom: 10px;
}

.img-logo-footer {
    max-width: 100px; /* Ajuste a largura conforme necessário */
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: #FEFEFE;
}

}

@media only screen and (max-width: 767px) {
    
.container {
 width: 80%; /* ou qualquer valor que se ajuste melhor */
 margin: 0 auto; /* Isso centralizará o container horizontalmente */
}

/* HEADER SMARTPHONE */
#section-header {
    background-color: #fefefe; /* Cor de fundo */
    padding: 30px 0; /* Espaçamento interno */
}

.div-header-content {
    display: flex; /* Flex container para organizar os elementos em linha */
    flex-direction: column;
    justify-content: space-between; /* Distribui o espaço entre os elementos */
    align-items: center; /* Alinha os elementos verticalmente */
    gap: 20px;
}

/* Estilos para a coluna do texto no header */
.col-header-txt {
    display: block;
    width: 100%;
}

.div-header-txt {
    text-align: center; /* Centraliza o conteúdo */
    display: block;
}

.div-avatar-mobile {
    display: block;
    width: 100%;
}

.img-header {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.div-logo {
    padding: 10px 0; /* Adiciona margem de 10 pixels em todos os lados */
}

.img-logo-header {
    max-width: 200px; /* Largura máxima do logotipo */
}

/* Estilos para a coluna do avatar no header */
.col-header-avatar {
    display: none;
}

/* Estilos para os títulos e textos no header */
.div-h1 {
 display: block;
 padding: 10px 0; /* Adiciona margem de 10 pixels em todos os lados */
}

.h1-header {
    color: #0021E2;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 54px */
}

.div-h3 {
 display: block;
 padding: 10px 0; /* Adiciona margem de 10 pixels em todos os lados */
}

.h3-header {
    color: #0A1C7D;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 48px */
}

/* Estilos para o botão no header */
.div-button {
    padding: 10px 0 0 0;
}

.button {
    display: inline-block;
    padding: 20px 25px;
    background-color: #00B03C; /* Cor de fundo do botão */
    color: #fff; /* Cor do texto do botão */
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px; /* Borda arredondada */
    transition: background-color 0.3s; /* Transição suave de cor de fundo */
}

.button:hover {
    background-color: #0cff5d; /* Cor de fundo do botão ao passar o mouse */
}

.txt-bt {
    margin: 0;
    font-family: poppins;
    font-size: 20px;
    text-align: center;
}

/* ACORDOS SMARTPHONE */
#section-acordos {
    background-color: #0A1C7D; /* Cor de fundo */
    padding: 30px 0; /* Espaçamento interno */
}

.div-acordos-content {
    display: flex; /* Flex container para organizar os elementos em linha */
    flex-direction: column;
    justify-content: space-between; /* Distribui o espaço entre os elementos */
    align-items: center; /* Alinha os elementos verticalmente */
    gap: 10px;
}

/* Estilos para a coluna do texto no header */
.col-acordos-txt {
    display: block;
    width: 100%;
}

.div-acordos-txt {
    text-align: center; /* Centraliza o conteúdo */
    display: block;
    width: 100%;
}

.div-acordos-mobile {
    display: none;
}

.img-acordos {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Estilos para a coluna do avatar no header */
.col-acordos-avatar {
    display: block;
    width: 100%;
}

.div-acordos-avatar {
    text-align: center; /* Centraliza o conteúdo */
}

/* Estilos para os títulos e textos no header */
.div-h1 {
 display: block;
 padding: 15px 0; /* Adiciona margem de 10 pixels em todos os lados */
}

.h1-acordos {
    color: #fefefe;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 54px */
}

.div-h3 {
 display: block;
 padding: 15px 0; /* Adiciona margem de 10 pixels em todos os lados */
}

.h3-acordos {
    color: #fefefe;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 48px */
}

/* PASSOS SMARTPHONE */
#section-passos {
    background-color: #fefefe; /* Cor de fundo */
    padding: 30px 0; /* Espaçamento interno */
}

.div-passos-content {
    display: flex; /* Flex container para organizar os elementos em linha */
    flex-direction: column;
    justify-content: space-between; /* Distribui o espaço entre os elementos */
    align-items: center; /* Alinha os elementos verticalmente */
    gap: 30px;
}

.h1-passos {
    color: #FF7F09;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 54px */
}

/* Estilos para o grid de passos */
.grid-passos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* Espaçamento entre os boxes */
}

/* Estilos para cada box de passo */
.box-passo {
    text-align: center;
    padding: 15px;
    background-color: #4B65EE;
}

.numero {
    display: block;
    font-size: 70px;
    color: #fefefe;
    font-weight: 500;
}

.p-passo {
    margin-top: 10px; /* Espaçamento superior */
    font-size: 14px; /* Tamanho da fonte para o texto */
    color: #fefefe; /* Cor do texto */
    font-weight: 300;
    line-height: 120%;
}

/* NUMEROS SMARTPHONE */
.section-numeros {
    background-color: #0A1C7D; /* Cor de fundo */
    padding: 30px 0; /* Espaçamento interno */
}

.section-numeros h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.5;
    color: #fefefe;
    text-align: center;
}

.div-numeros-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.div-numeros {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.numeros{
    display: block;
    text-align: center;
}

.small-text {
    display: inline-block;
    font-size: 18px !important; 
    font-weight: 700; 
    margin-right: 5px; 
    color: #FEFEFE !important;
}


.numeros h1 {
 font-family: poppins;
 font-size: 25px;
 color: #FEFEFE;
 font-style: normal;
 font-weight: 700;
 text-align: center;
}

.numeros span {
 font-family: poppins;
 font-size: 25px;
 color: #FF7F09;
 font-style: normal;
 font-weight: 600; 
}

.numeros h4 {
 font-family: poppins;
 font-size: 14px;
 color: #fefefe;
 font-style: normal;
 font-weight: 600;   
}

.numeros h3 {
 font-family: poppins;
 font-size: 15px;
 color: #fefefe;
 font-style: normal;
 font-weight: 400; 
}

/* BENEFÍCIOS SMARTPHONE */
#section-beneficios {
    background-color: #fefefe; /* Cor de fundo */
    padding: 30px 0; /* Espaçamento interno */
}

.div-beneficios-content {
    display: flex; /* Flex container para organizar os elementos em linha */
    flex-direction: column;
    justify-content: space-between; /* Distribui o espaço entre os elementos */
    align-items: center; /* Alinha os elementos verticalmente */
    gap: 30px;
}

.h1-beneficios {
    color:#FF7F09;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 54px */
}

.beneficios-flex {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.avatar-beneficios {
 width: 100%;
}

.img-beneficios {
 width: 80%;
}

/* Estilos para o grid de beneficios */
.grid-beneficios {
    display: grid;
    width:100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* Espaçamento entre os boxes */
    justify-content: space-between;
    align-items: center;
    justify-items: stretch;
    align-content: center;
}

/* Estilos para cada box de beneficio */
.box-beneficio {
    text-align: center;
    padding: 20px;
    border: 5px solid #0021E2;
}

.img-beneficio {
    width: 50%; /* Ajuste conforme necessário */
    height: 50%; /* Ajuste conforme necessário */
}

.h4-beneficio {
    margin-top: 10px; /* Espaçamento superior */
    font-size: 14px; /* Tamanho da fonte para o subtítulo */
    color: #0A1C7D; /* Cor do texto do subtítulo */
    font-weight: 600;
    line-height: 120%;
}

.txt-bt-beneficio {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 20px; /* Tamanho da fonte para o texto do botão */
}

/* DEPOIMENTOS SMARTPHONE */
#section-depoimentos {
    background-color: #4B65EE; /* Cor de fundo */
    padding: 30px 0; /* Espaçamento interno */
}

.div-depoimento-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.h1-depoimentos {
    color: #fefefe;
    font-family: 'Poppins', sans-serif; /* Adicionando aspas e fallback sans-serif */
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 54px */
    text-align: center;
}

.carousel {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
}

.wrapper {
    display: flex;
    align-items: center;
}

.depoimento-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 30px 22px;
    align-items: center;
    gap: 10px;
    align-self: center; /* Alinha o bloco de depoimentos ao centro */
    border: 1px solid #E4EBF3;
    background: #FEFEFE;
    box-shadow: 0px 1.852px 7.409px 0px rgba(0, 0, 0, 0.10);
    position: relative;
}
  
.depoimento-text p {
    margin: 0;
    font-size: 20px;
    color: #000F35;
    line-height: 1.3;
    text-align: left;
}
  
/* Foto e Nome/Profissao */
.depoimento-info {
    display: flex;
    flex-direction: row;
    text-align: left;
    margin-top: auto; /* Alterado para 'auto' para alinhar ao final da .depoimento-box */
    gap: 5px;
    width: 100%;
    align-items: center;
}
  
.depoimento-info img {
    width: 55px;
    height:55px;
    border-radius: 50%;
    align-self: center;
}
  
.depoimento-info h4 {
    margin: 0;
    font-size: 15px;
    color: #000F35;
    font-weight: 400;
}
  
.depoimento-info h3 {
    color: #000F35;
    text-align: left;
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    display: flex;
    align-items: center;
    font-weight: 600;
}
  
.descricao-depoimento {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    padding-left: 5px;
}


/* FOOTER SMARTPHONE  */
.footer {
    background-color: #0A1C7D;
    padding: 30px 0;
    text-align: center;
}

.div-logo {
    margin-bottom: 10px;
}

.img-logo-footer {
    max-width: 100px; /* Ajuste a largura conforme necessário */
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: #FEFEFE;
}
}