/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter';
  overflow-x: hidden;
  background-color: #ffffff;
}

.favicon{
  width: 130px;
  height: 50px;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #516C6E;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.logo-preloader {
  width: 550px;
}

.texto-preloader {
  color: white;
  padding: 20px;
  font-family: 'Inter', sans-serif;
}

.loader-bar {
  width: 200px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.loader-progress {
  width: 0;
  height: 100%;
  background-color: #fff;
  animation: load 2s forwards;
}

@keyframes load {
  to { width: 100%; }
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.logo-principal{
  width: 150px;
  height: 40px;
  cursor: pointer;
}

.logo-mobile-header{
  width: 135px !important;
  height: 40px !important;
  cursor: pointer;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.picture-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 700px;
  z-index: 0;
  pointer-events: none;
}

video::-webkit-media-controls,
video::-webkit-media-controls-panel,
video::-internal-media-controls-overlay-cast-button {
  display: none !important;
}

video {
  -webkit-picture-in-picture: none !important;
}

/* Navbar */
.navbar {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.navbar-fixed.desktop-navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(242, 243, 244, 0.98);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
  width: 1128px;
  height: 64px;
  display: flex;
  z-index: 1000;
}

.nav-container {
  max-width: 1128px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 32px;
  padding: 0 24px;
  height: 64px;
  width: 100%;
}

.brand {
  font-size: 16px;
  font-weight: 500;
  color: #131313;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.nav-list li a {
  text-decoration: none;
  font-size: 16px;
  color: #131313;
  font-weight: 400;
}

.home-btn {
  width: 119.13px;
  height: 40px;
  background-color: rgba(19, 19, 19, 0.08);
  border: none;
  border-radius: 20px;
  font-size: 16px;
  color: #131313;
  cursor: pointer;
}

.contact-btn {
  width: 140px;
  height: 45px;
  background-color: #516C6E;
  color: white;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

/* Navbar Mobile */
@media (max-width: 768px) {
  .navbar-fixed-mobile {
    padding: 0 10px; 
  }

  .nav-container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
  }

  .logo-mobile-header {
    margin-right: 20px; 
  }

  .contact-btn {
    margin-left: 10px; 
  }

   body {
    overflow-x: hidden; 
  }
}

/* NAVBAR MENU MOBILE - Para telas pequenas (celulares pequenos) */
@media (max-width: 480px) {
  .navbar-fixed-mobile {
    padding: 0 10px; 
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo-mobile-header {
    margin-right: 20px; 
  }

  .contact-btn {
    margin-left: 10px; 
  }
}

/* Hero Text */
.hero-text {
  position: relative;
  z-index: 2;
  top: 35%;
  left: 10%;
  max-width: 600px;
  color: #fff;
}

.hero-section {
  padding-top: 80px; /* ou o valor da altura da sua navbar */
}

.subheading {
  font-size: 13.89px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #516C6E;
  border-radius: 50%;
  display: inline-block;
}

.main-heading {
  font-size: 47px;
  font-weight: 400;
  font-family: 'Inter';
  line-height: 1.2;
}

/* Seção de Números */
.numbers-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.numbers-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.numbers-text-block {
  max-width: 800px;
}

.numbers-title {
  font-size: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #131313;
  margin-bottom: 20px;
  text-align: left;
}

.numbers-subtitle {
  font-size: 17px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.9);
  text-align: left;
}

/* Grade dos números */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 2fr));
  gap: 40px;
  text-align: left;
}

.number-item h3 {
  font-size: 68px;
  color: #131313;
  font-weight: 400;
  margin-bottom: 12px;
}

.number-item p {
  font-size: 18.1px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #131313;
  line-height: 1.5;
  text-align: left; /* Não justificado */
}

@media (max-width: 768px){
  .numbers-subtitle{
    margin: 0;
    text-align: left
  }
}

/* Seção Nossa História */
.history-section {
  background-color: #C3C6A7;
  padding: 60px 20px;
}

.history-title {
  font-size: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #131313;
  margin-bottom: 40px;
  text-align: center; /* Centralizado no desktop */
}

.history-text {
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #131313;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  text-align: justify;
}

/*Sessão das Especialidades*/
.specialties-section {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.specialties-container {
  max-width: 1200px;
  margin: 0 auto;
}

.specialties-title {
  font-size: 54.4px;
  font-weight: 400;
  margin-bottom: 20px;
}

.specialties-subtitle {
  font-size: 20.4px;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

.specialty-card {
  background-color: #F2F3F4;
  border-radius: 10px;
  padding: 30px 25px;
  text-align: left;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.icon-box {
  background-color: #516C6E;
  color: white;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 20px;
}

.card-title {
  font-size: 20.4px;
  font-weight: 500;
  margin-bottom: 15px;
}

.card-text {
  font-size: 18.1px;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
}

/*Seção dos Valores*/
.values-section {
  background-color: #ffffff;
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
}

.values-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 50px;
}

.values-text {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
}

.values-label {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.values-label .dot {
  width: 8px;
  height: 8px;
  background-color: #516C6E;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

.values-title {
  font-size: 45.56px;
  font-weight: 400;
  margin-bottom: 40px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background-color: #2A2A2A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 5px;
}

.value-subtitle {
  font-size: 22.88px;
  font-weight: 400;
  margin-bottom: 10px;
}

.value-description {
  font-size: 20px;
  font-weight: 400;
  color: #7D7D7D;
  line-height: 1.5;
}

.saiba-mais-btn {
  background-color: #2A2A2A;
  color: rgb(255, 255, 255);
  font-size: 25px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.saiba-mais-btn:hover {
  opacity: 0.9;
}

.values-image {
  flex: 1;
  min-width: 300px;
  max-width: 805.9px;
  display: flex;
  justify-content: center;
}

.values-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}

@media (max-width: 768px){
  .values-title{
    font-size: 35px;
  }

  .value-subtitle{
    font-size: 25px;
  }

  .value-description{
    font-size: 17px !important;
  }
}

/*Seção das Empresas Parceiras*/
.partners-section {
  padding: 100px 20px;
  background-color: #C3C6A7;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.partners-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.partners-header .dot {
  width: 8px;
  height: 8px;
  background-color: #516C6E;
  border-radius: 50%;
}

.small-title {
  font-size: 14px;
  font-weight: 400;
  color: #131313;
  margin: 0;
  text-transform: uppercase;
}

.partners-title {
  font-size: 44.63px;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
  margin: 0 auto 60px auto;
  max-width: 1000px;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.partner-logo {
  max-width: 140px;
  max-height: 200px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
  cursor: pointer;
}

.partner-logo-car {
  max-width: 120px;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
  cursor: pointer;
}

.partner-logo-mini {
  max-width: 70px;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
  cursor: pointer;
}

.partner-logo-jaes {
  max-width: 160px;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
  cursor: pointer;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.word {
  opacity: 0;
  display: inline-block;
  transition: opacity 0.2s ease;
}

/*media queries para partners*/
@media (max-width: 768px) {
  .partners-title {
    font-size: 28px;
    padding: 0 10px;
  }
}

/* Seção de Segmentos */
.segmentos-section {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.segmentos-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.segmentos-header .dot {
  width: 8px;
  height: 8px;
  background-color: #516C6E;
  border-radius: 50%;
}

.small-title {
  font-size: 14px;
  font-weight: 400;
  color: #131313;
  margin: 0;
  text-transform: uppercase;
}

.segmentos-title {
  font-size: 44.38px;
  font-weight: 400;
  color: #131313;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

/* Cards */
.segmentos-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
}

.segment-card {
  background-color: #F2F3F4;
  border-radius: 16px;
  padding: 30px 25px;
  max-width: 340px;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.segment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.icon-circle {
  width: 40px;
  height: 40px;
  background-color: #516C6E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.icon-circle i {
  color: white;
  font-size: 18px;
}

.card-title {
  font-size: 20.4px;
  font-weight: 500;
  color: #131313;
  margin-bottom: 12px;
}

.card-text {
  font-size: 16px;
  font-weight: 400;
  color: #7D7D7D;
}

/* Imagem com bordas arredondadas */
.segmentos-image img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  border-radius: 16px;
  margin: 0 auto;
  display: block;
  width: 1788px;
  height: 400px;
}

/* Responsividade da Seção de Segmentos */
@media (max-width: 768px) {
  .segmentos-title {
    font-size: 28px;
    padding: 0 10px;
  }

  .segmentos-cards {
    flex-direction: column;
    align-items: center;
  }

  .segment-card {
    max-width: 90%;
    padding: 25px 20px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-text {
    font-size: 15px;
  }

  .segmentos-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 16px;
    margin-top: 20px;
  }

  .segmentos-header {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .small-title {
    font-size: 13px;
  }

  .logo-principal{
  width: 100px;
  height: 40px;
  }
}

/* Seção de Contato */
.contato-section {
  padding: 80px 40px;
  background-color:#ffffff;
  font-family: 'Inter', sans-serif;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.contato-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.contato-header .dot {
  width: 8px;
  height: 8px;
  background-color: #516C6E;
  border-radius: 50%;
}

.small-title {
  font-size: 14px;
  font-weight: 400;
  color: #131313;
  text-transform: uppercase;
  margin: 0;
}

.contato-title {
  font-size: 45.19px;
  font-weight: 400;
  color: #131313;
  margin: 10px 0 15px 0;
}

.contato-subtext {
  font-size: 16px;
  font-weight: 400;
  color: #252525;
  margin-bottom: 30px;
  max-width: 700px;
}

/* Informações de Contato */
.contato-info {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  
  gap: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #131313;
  line-height: 1; 
}

.info-item p {
  margin: 0;
  padding: 0; 
  line-height: 1; 
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px; 
}

.icon-circle {
  width: 40px;
  height: 40px;
  background-color: #516C6E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; 
}

.icon-circle i {
  color: white;
  font-size: 16px;
}

/* Formulário */
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

/* Grupo label + campo */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

/* Títulos dos campos */
.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #202020;
  font-family: 'Inter', sans-serif;
}

/* Campos */
.contato-form input,
.contato-form textarea {
  border: 1px solid #CFCFCF;
  border-radius: 12px;
  font-size: 16px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  width: 100%;
  background: #f7f7f7;
  color: #131313;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Foco */
.contato-form input:focus,
.contato-form textarea:focus {
  border-color: #9DA27C;
  box-shadow: 0 0 0 2px rgba(157, 162, 124, 0.2);
}

.contato-form textarea {
  resize: none;
}

/* Botão */
.form-button-wrapper {
  display: flex;
  justify-content: flex-end;
}

.contato-form button {
  background-color: #C3C6A7;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  border: none;
  padding: 12px 40px;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contato-form button:hover {
  background-color: #B5B894;
}

/*Responsividade para a Seção de Contato*/
@media (max-width: 768px) {
  .contato-section {
    padding: 60px 20px;
    text-align: left;
  }

  .contato-title {
    font-size: 30px;
  }

  .info-item {
    align-items: center;
  }

  .info-item p {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .contato-info {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start; /* Garante alinhamento à esquerda */
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .botao-enviar{
    font-size: 20px;
    padding: 10px 30px;
    justify-content: end;
    background-color: #C3C6A7;
    color: #000000;
  }
}

/*Seção de Perguntas Frequentes*/
.faq-section {
  font-family: 'Inter', sans-serif;
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 20px;
  color: #131313;
  animation: fadeIn 1.5s ease;
  text-align: center;
}

.faq-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13.78px;
  font-weight: 400;
  color: #131313;
}

.faq-dot {
  width: 8px;
  height: 8px;
  background-color: #2A2A2A;
  border-radius: 50%;
}

.faq-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.faq-title {
  font-size: 45.56px;
  font-weight: 400;
  color: #131313;
  margin-bottom: 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: left;
}

.faq-item {
  background-color: #ffffffd7;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 60px 20px 20px;
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #131313;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid rgba(0, 0, 0, 0.3);
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.3);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: translateY(-50%) rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.5s ease;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

/* Exemplo para reduzir espaço entre seções */
#duvidas {
  margin-top: 2rem;
  padding-top: 1rem;
}

/* Supondo que a seção anterior seja #servicos */
#servicos {
  margin-bottom: 0;
}

/*Responsividade para FAQ*/
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .picture-background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 650px;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
  }

  .logo-mobile-header{
    width: 200px;
    height: 50px;
  }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/*FOOTER*/
.footer {
  background-color: #516C6E;
  color: #F2EADD;
  font-family: 'Inter', sans-serif;
  padding: 20px 40px 20px;
  border-radius: 20px 20px 0 0;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px; /* Mantém espaço uniforme entre colunas */
  margin-bottom: 25px;
}

.footer-logo {
  flex: 1 1 220px;  
  margin-bottom: 10px;
  margin-top: 35px;
  margin-left: 20px;
}

.logo-img {
  width: 300px;   
  height: 250px;
}

.footer-column {
  flex: 1 1 220px;  /* Colunas uniformes */
  margin-bottom: 20px;
  margin-top: 60px;
}

.footer-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-line {
  width: 40px;
  height: 2px;
  background-color: #f1f1f1;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #F2EADD;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
}

.footer-links a:hover {
  font-weight: 600;  /* Negrito no hover */
}

.footer-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  text-align: justify;
}

.footer-bottom {
  border-top: 1px solid #f3f3f3;
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-bottom-text {
  font-size: 12px;
  font-weight: 400;
  flex: 1 1 200px;
  margin: 5px 10px;
}

.footer-bottom-text.left {
  text-align: left;
}

.footer-bottom-text.center {
  text-align: center;
}

.footer-bottom-text.right {
  text-align: right;
}

.footer-bottom-text a {
  color: #F2EADD;
  text-decoration: none;
}

.footer-bottom-text a:hover {
  font-weight: 600;  /* Negrito no hover também aqui */
  text-decoration: none;
}

.footer-links-column {
  transform: translateX(-40px);
}

@media (max-width: 768px) {
  .logo-img {
    content: url("images/preloader.png");
    width: 180px;
    height: 90px;
    margin-top: 20px;
  }

  .footer-logo {
    margin: 0 auto;
    text-align: center;
  }
}

/* MOBILE RESPONSIVO para o FOOTER*/
@media (max-width: 768px) {
  .footer-top {
    align-items: start;
    text-align: left;
    gap: 0; 
  }

  .footer-logo {
    margin-bottom: 0px;
    margin-top: 20px;
  }

  .logo-img {
    margin: 0;
    width: 350px;
    height: auto;          
  }

  .footer-bottom {
    flex-direction: column;
    border-top: 1px solid #fdfdfd;
    padding-top: 20px;
  }

  .footer-bottom-text {
    text-align: start;
    flex: none;
  }
}

/* Responsividade dos Valores */
@media (max-width: 1024px) {
  .values-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .values-text {
    max-width: 100%;
  }

  .values-image {
    max-width: 100%;
  }

  .value-description {
    font-size: 24px;
  }

  .saiba-mais-btn {
    font-size: 22px;
  }

  .footer-links-column {
    transform: none;
  }
}

/* Responsivo */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: rgba(242, 243, 244, 0.98);
  padding: 14px;
  border-radius: 12px;
  position: fixed;
  top: 35%;
  left: 50%;
  transform: translate(-0.50%, -50%);
  width: 35%;
  max-width: 320px;
}

.mobile-menu a {
  color: #131313;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 12px;
}


/* Responsivo para mobile */
@media (max-width: 768px) {

  .logo-preloader{
    width: 400px;
    height: auto;
  }

  .desktop-navbar {
    display: none;
  }

  .navbar-fixed-mobile {
    display: flex;
  }

  .navbar-fixed.desktop-navbar {
    display: none;
  }

  .navbar-fixed-mobile {
  position: fixed;
  top: 20px;  /* mesma margem de topo do desktop */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(242, 243, 244, 0.98);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 32px;  /* adiciona o arredondamento */
  width: 90%;  /* deixa com margem nas laterais */
  max-width: 95%;  /* impede de ficar grande demais em tablets */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);  /* igual ao desktop */
  z-index: 1000;
}


  .nav-list {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-container {
    width: 100%;
    margin: 0 16px;
    padding: 0 16px;
  }

  .hero-text {
    max-width: 350px;
  }

  .numbers-container {
    padding-left: 0;
    text-align: center;
  }

  .numbers-title {
    font-size: 28px;
    text-align: left;
  }

  .numbers-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
    text-align: left;
    padding: 0 15px;
  }

  .numbers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ← AQUI: 2 colunas */
    gap: 30px 20px;
    justify-items: center;
  }

  .number-item {
    text-align: center;
  }

  .number-item h3 {
    font-size: 48px;
  }

  .number-item p {
    font-size: 15px;
    width: 100%;
    max-width: 180px;
    text-align: left;
    padding: 0 10px;
    margin: 0 auto;
  }

  .history-title {
    text-align: left; /* Para mobile */
    padding: 0 15px;
    font-size: 28px;
  }

  .history-text {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 15px;
  }

  .footer-links-column {
    transform: none;
  }
}

/* Responsividade da Seção Especialidades */
@media (max-width: 992px) {
  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .specialties-grid {
    grid-template-columns: 1fr;
  }

  .specialties-title {
    font-size: 40px;
  }

  .specialties-subtitle {
    font-size: 18px;
  }

  .logo-preloader{
    width: 420px;
    height: auto;
  }

  .footer-links-column {
    transform: none;
  }

}
