/* NAVBAR ESTILO */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #00825e;
    color: #fff;
}
.nav-links a {
    color: #fff;
}

/* LOGO */
.logo {
    font-size: 32px;
}

/* NAVBAR ESTILO */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #00825e;
    color: #fff;
}
.nav-links a {
    color: #fff;
}

/* LOGO */
.logo {
    font-size: 32px;
}

/* NAVBAR MENU */
.menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
}
.menu li:hover {
    background-color: #4c9e9e;
    border-radius: 5px;
    transition: 0.3s ease;
}
.menu li {
    padding: 5px 14px;
}

/* CHECKBOX HACK */
input[type=checkbox]{
    display: none;
}

/*HAMBURGER MENU*/
.hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
}

/* NAVBAR MENU RESPONSIVA*/
/* APLICAÇÃO MEDIA QUERIES */
@media (max-width: 768px) {
    .menu {
        display:none;
        position: absolute;
        background-color:#00825e;
        right: 0;
        left: 0;
        text-align: center;
        padding: 10px 0;
    }
    .menu li:hover {
        display: inline-block;
        background-color:#00825e;
        transition: 0.3s ease;
    }
    .menu li + li {
        margin-top: 12px;
    }
    input[type=checkbox]:checked ~ .menu{
        display: block;
    }
    .hamburger {
        display: block;
    }
}


/* Base styles for larger screens */
.first-section {
  background-image: url(img/brasilcreditos.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
}
.first-section-all {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 0;
}
.first-section-all-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 47%;
}
.first-section-all-content #logo {
  width: 200px;
}
.first-section-all-content h1 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
}
.first-section-all-content h1 span {
  color: #ffc901;
  font-size: 3.0rem;
}
.first-section-all-content p {
  font-size: 1.0rem;
  font-weight: 500;
  text-align: justify;
  color: #fff;
}
.first-section-all-content a {
  width: 320px;
  padding: 10px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  color: #00825e;
  background-color: #ffc901;
}

.fourth-section {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px 0;
}
.fourth-section-all {
  margin: 10px 0;
  max-width: 500px;
  text-align: center;
}
/*.fourth-section-all h1 {
  height: 50px;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
}*/

.fourth-section-all h1 {
  height: 50px;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  position: absolute; /* Alterado de absolute para relative */
  margin-top: 0%; /* Adicionado para dar espaço na parte superior */
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
}
.fourth-section-all-container {
  display: flex;
  flex-direction: row;
  gap: 5px;
  flex-wrap: nowrap;
}
.fourth-section-all-container-content {
  display: flex;
  flex-direction: column;
  gap: 0px;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 30px;
  transition: 0.5s;
  cursor: pointer;
  margin: 120px auto;
  padding: 10px;
  height: 330px;
  width: 260px;
  align-items: center;
}
.fourth-section-all-container-content:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.fourth-section-all-container-content img {
  width: 50px;
}
.fourth-section-all-container-content h3 {
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}
.fourth-section-all-container-content p {
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center-right;
  color: #4d4d4d;
  display: flex;
  gap: 20px;
  justify-content: center;
  border-radius: 20px;
  transition: 0.5s;
  cursor: pointer;
  padding: 80px;
  height: 300px;
  width: 400px;
  align-items: center;
}

.nineth-section {
  max-width: 100%;
  background-color: #f1f1f1;
}
.nineth-section-all {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px 0;
}
.nineth-section-all-container {
  margin: 20px 0;
  max-width: 1000px;
  text-align: center;
  align-items: center;
}
.nineth-section-all h2 {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #00825e;
  font-weight: 900;
  text-align: center;
}
.nineth-section-all h1 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.nineth-section-all-partners {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 30px 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
.nineth-section-all-partners img {
  width: 80px;
}

.eleventh-section {
  margin: 30px auto;
  padding: 20px 0;
  width: 500px;
  text-align: center;
  align-items: center;
}
.eleventh-section-all {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 10px 0;
  max-width: 500px;
  text-align: center;
}
.eleventh-section-all h2 {
  text-transform: uppercase;
  font-size: 1.3rem;
  color: #00825e;
  font-weight: 800;
}
.eleventh-section-all h1 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.eleventh-section-all p {
  font-size: 0.8rem;
  font-weight: 500;
  text-align: justify;
  color: #4d4d4d;
}
.eleventh-section-all h3 {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

/* Estilo principal da seção */
.twelfth-section {
  max-width: 100%;
  height: 600px;
  background-color: #f1f1f1;
}

/* Container geral da seção */
.twelfth-section-all {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px 0;
}

/* Container de conteúdo da seção */
.twelfth-section-all-content {
  margin: 10px 0;
  max-width: 500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Estilo do título h2 */
.twelfth-section-all-content h2 {
  width: 1000px; /* Ajuste para responsividade */
  text-transform: uppercase;
  font-size: 1.3rem;
  color: #00825e;
  font-weight: 800;
}

/* Estilo do título h1 */
.twelfth-section-all-content h1 {
  width: 1000px; /* Ajuste para responsividade */
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

/* Estilo do parágrafo */
.twelfth-section-all-content p {
  width: 1000px; /* Ajuste para responsividade */
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 0.8rem;
  text-align: center;
  color: #4d4d4d;
}

/* Estilo do span dentro do parágrafo */
.twelfth-section-all-content p span {
  width: 1000px; /* Ajuste para responsividade */
  font-size: 1.0rem;
  font-weight: 600;
  line-height: 1.0rem;
  text-align: justify;
  color: #4d4d4d;
}

/* Media Queries */

/* Ajustes para telas com largura máxima de 1024px */
@media (max-width: 1024px) {
  .twelfth-section {
    height: auto; /* Ajusta a altura para conteúdo variável em telas menores */
  }

  .twelfth-section-all-content h2,
  .twelfth-section-all-content h1,
  .twelfth-section-all-content p,
  .twelfth-section-all-content p span {
    width: 100%; /* Ajusta a largura para 100% em telas menores */
  }
}

/* Ajustes para telas com largura máxima de 768px */
@media (max-width: 768px) {
  .twelfth-section-all {
    padding: 10px 0; /* Reduz o padding para melhor ajuste em telas menores */
  }

  .twelfth-section-all-content {
    max-width: 100%; /* Ajusta a largura máxima para 100% */
    padding: 0 20px; /* Adiciona padding para espaçamento interno */
  }

  .twelfth-section-all-content h2 {
    font-size: 1.2rem; /* Reduz o tamanho da fonte */
  }

  .twelfth-section-all-content h1 {
    font-size: 1.8rem; /* Reduz o tamanho da fonte */
  }

  .twelfth-section-all-content p {
    font-size: 0.8rem; /* Reduz o tamanho da fonte */
    line-height: 1.2rem; /* Ajusta a altura da linha */
  }

  .twelfth-section-all-content p span {
    font-size: 0.9rem; /* Reduz o tamanho da fonte */
    line-height: 1.2rem; /* Ajusta a altura da linha */
  }
}

/* Ajustes para telas com largura máxima de 480px */
@media (max-width: 480px) {
  .twelfth-section {
    height: auto; /* Ajusta a altura para conteúdo variável em telas menores */
    padding: 10px; /* Adiciona padding para espaçamento interno */
  }

  .twelfth-section-all {
    padding: 10px 0; /* Reduz o padding para melhor ajuste em telas menores */
  }

  .twelfth-section-all-content {
    max-width: 100%; /* Ajusta a largura máxima para 100% */
    padding: 0 10px; /* Adiciona padding para espaçamento interno */
    gap: 10px; /* Reduz o gap entre os elementos */
  }

  .twelfth-section-all-content h2 {
    font-size: 1rem; /* Reduz o tamanho da fonte */
  }

  .twelfth-section-all-content h1 {
    font-size: 1.5rem; /* Reduz o tamanho da fonte */
  }

  .twelfth-section-all-content p {
    font-size: 0.7rem; /* Reduz o tamanho da fonte */
    line-height: 1rem; /* Ajusta a altura da linha */
  }

  .twelfth-section-all-content p span {
    font-size: 0.8rem; /* Reduz o tamanho da fonte */
    line-height: 1rem; /* Ajusta a altura da linha */
  }
}


/* Responsive styles for mobile devices */
@media (max-width: 480px) {
  .first-section-all {
    flex-direction: column;
    padding: 20px 0;
  }
  .first-section-all-content {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .first-section-all-content #logo {
    width: 150px;
  }
  .first-section-all-content h1 {
    font-size: 1.5rem;
  }
  .first-section-all-content h1 span {
    font-size: 1.8rem;
  }
  .first-section-all-content p {
    font-size: 0.5rem;
  }
  .first-section-all-content a {
    width: 200px;
    font-size: 0.9rem;
  }
  
  /* Ajustes para dispositivos móveis em modo horizontal */
@media (max-width: 768px) and (orientation: landscape) {
  .first-section-all {
    flex-direction: column;
    padding: 20px 0;
  }
  .first-section-all-content {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .first-section-all-content #logo {
    width: 120px; /* Ajuste para modo horizontal */
  }
  .first-section-all-content h1 {
    font-size: 1.3rem; /* Ajuste para modo horizontal */
  }
  .first-section-all-content h1 span {
    font-size: 1.6rem; /* Ajuste para modo horizontal */
  }
  .first-section-all-content p {
    font-size: 0.8rem; /* Ajuste para modo horizontal */
  }
  .first-section-all-content a {
    width: 180px; /* Ajuste para modo horizontal */
    font-size: 0.9rem;
  }
}

  .fourth-section-all h1 {
    font-size: 1.5rem;
    width: 100%;
    position: static;
    transform: none;
    top: auto;
    left: auto;
  }
  .fourth-section-all-container {
    flex-wrap: wrap;
    gap: 10px;
  }
  .fourth-section-all-container-content {
    margin: 20px auto;
    padding: 10px;
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  .fourth-section-all-container-content p {
    padding: 10px;
    width: 100%;
  }

  .nineth-section-all h1 {
    font-size: 1.5rem;
  }
  .nineth-section-all-partners img {
    width: 50px;
  }

  .eleventh-section {
    width: 100%;
    padding: 20px 10px;
  }
  .eleventh-section-all {
    max-width: 100%;
  }
  .eleventh-section-all h1 {
    font-size: 1.5rem;
  }

  .twelfth-section-all-content h2,
  .twelfth-section-all-content h1,
  .twelfth-section-all-content p {
    width: 100%;
    font-size: 1rem;
  }
}
/* Estilos gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

/* Estilo principal do footer */
footer {
  background-color: #00825e;
  padding: 60px 0 35px;
}

/* Container do footer com display flex e gap */
.container-footer {
  display: flex;
  gap: 15px;
  padding: 0 40px 40px;
  flex-wrap: wrap; /* Adicionado flex-wrap para que os itens possam se ajustar em telas menores */
}

/* Estilo de cada div dentro do container do footer */
.container-footer div {
  flex: 1;
  min-width: 415px;
  padding-bottom: 20px;
}

/* Estilo dos parágrafos dentro do container do footer */
.container-footer p {
  color: #f7f8fa;
  margin: 0 0 16px 0;
  font-size: 1.0rem;
}

/* Estilo das listas não ordenadas dentro do container do footer */
.container-footer ul {
  list-style: none;
  padding: 0;
}

/* Estilo dos itens da lista */
.container-footer ul li {
  margin-bottom: 8px;
  font-size: 0.8rem;
}

/* Estilo dos elementos com a classe icon-text */
.container-footer .icon-text {
  display: flex;
  align-items: center;
}

/* Espaçamento à direita dos ícones dentro de icon-text */
.container-footer .icon-text i {
  margin-right: 8px;
}

/* Estilo do wrapper do endereço */
.container-footer .address-wrapper {
  display: flex;
  align-items: center;
  color: #ffcc00;
  width: 100%; /* Ajustado para 100% para melhor responsividade */
}

/* Espaçamento entre os spans dentro de address-wrapper */
.container-footer .address-wrapper span {
  margin: 0 8px;
}

/* Barras antes e depois do address-wrapper */
.container-footer .address-wrapper::before,
.container-footer .address-wrapper::after {
  content: "|";
  margin: 0 8px;
  color: #ffcc00;
}

/* Estilo dos spans dentro dos parágrafos do container do footer */
.container-footer p span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
  text-align: justify;
  color: #ffcc00;
}

/* Estilo do primeiro span */
.container-footer p span:first-child {
  color: #ffcc00;
}

/* Estilos específicos para spans com classes address, phone e email */
.container-footer p span.address {
  
  color: #ffcc00;
}

.container-footer p span.phone,
.container-footer p span.email {
  color: #ffcc00;
}

/* Estilo dos links dentro do container do footer */
.container-footer a {
  color: #ffc901;
  transition: 0.2s ease;
}

.container-footer a:hover {
  color: #c2c6d0;
}

/* Estilo das imagens dentro do container do footer */
.container-footer img {
  height: 28px;
  width: 28px;
  margin: auto;
  
}

/* Texto do footer centralizado */
.footer-text {
  text-align: center;
}

/* Estilo dos links dentro do texto do footer */
.footer-text a {
  color: #ffc901;
  transition: 0.2s ease;
}

.footer-text a:hover {
  color: #c2c6d0;
}

/* Estilo dos links gerais */
a {
  text-decoration: none;
}

/* Estilo dos itens da lista geral */
li {
  list-style: none;
}

/* Media Queries */
/* Ajustes para telas com largura máxima de 675px */
@media (max-width: 675px) {
  .container-footer {
    flex-wrap: wrap; /* Permite que os elementos se ajustem em telas menores */
    background-color: #00825e;
  }

  .footer-text {
    text-align: center; /* Centraliza o texto do footer em telas menores */
    background-color: #00825e;
  }
}

/* Ajustes para telas com largura máxima de 480px */
@media (max-width: 480px) {
  footer {
    background-color: #00825e;
    width: 100%;
    height: 50px;
  }

  .container-footer {
    padding: 20px; /* Reduz o padding para melhor ajuste em telas menores */
  }

  .container-footer div {
    min-width: 100%; /* Faz com que cada div ocupe 100% da largura disponível */
  }

  .address-wrapper {
    flex-direction: column; /* Empilha os elementos verticalmente */
  }

  .address-wrapper span {
    margin: 4px 0; /* Ajusta o espaçamento vertical entre spans */
  }

  .address-wrapper::before,
  .address-wrapper::after {
    content: none; /* Remove as barras em telas pequenas */
  }
}
.contact-container {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 20px;
			color: #ffc901;
        }
        .icon-text {
            display: flex;
            align-items: center;
        }
        .icon-text i {
            margin-right: 8px;
        }
        
/* Media Query para telas menores */
        @media (max-width: 600px) {
            .contact-container {
                flex-direction: column;
                align-items: flex-start;
            }
