
*{
  margin: 0;
  padding: 0;  
}

a{
    color: #746558;
    text-decoration: none;
    transition: 0.3s;
}

a:hover{
    opacity: 0.7;
}

body{
font-family: "Inter", sans-serif;

min-height: 100vh;
color: var(--text);
line-height: 1.45;
background: #f9f6f0;
background-color:#f9f6f0 ;
}

.nav {
position: relative;
top: 0;
background:#f9f6f0;
padding: clamp(0.5rem, 1vw + 0.2rem, 1rem) clamp(1rem, 2vw + 0.5rem, 3rem);
border-bottom: #333 var(--stroke);
backdrop-filter:none;
z-index: 100;

}

.nav-inner{
max-width: var(--maxw);
margin: auto;
display: flex;
align-items: center;
justify-content: space-between;

}

.brand{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    text-decoration: none;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;

}

.logo-img{
    width: clamp(100px, 4vw, 48px);
    height:clamp(100px, 4vw, 48px);
}

.menu{
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1vw, 1.rem);
    list-style: none;
}

.menu a {
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    font-size: clamp(0.9rem, 0.9vw, 1.05rem);
    color:#746558;


}

.menu a:hover{
    text-shadow: 0 0 10px var(--text);
    transition: 0.5s;
    opacity: 1;
      background-color: #7f674d;
  color: #ffffff;
  transform: translateX(-50%) translateY(-2px);
  border-radius: 50px;
}

.nav-btn {
display: flex;
align-items: center;
justify-content: center;
background: var(-text);
border: none;
outline: none;
border-radius: 12px;
transition: transform 0.15s, box-shadow 0.2s;
}

.nav-btn .btn{
padding: 0.6rem 1rem;
font-size: clamp(0.9rem, 0.9vw, 1rem);
font-weight: 700;
color: #7f674d;
cursor: pointer;
text-decoration: none;
}

.nav-btn:hover{
transform: translateY(-2px);
box-shadow: 0 8px 32px -8px rgba(255, 255, 255, 0.
55);
}

.menu-toggle{
    display: none;
}

.hamburger{
 display: none;   
 width: clamp(40px, 6vw, 45px);
 height: clamp(40px, 6vw, 45px);
align-items: center;
justify-content: center;
border-radius: 12px;
border: 1px solid #fff;
background: #7f674d;
cursor: pointer;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after{
display: block;
width: 18px;
height: 2px;
background: #f9f6f0;
position: relative;
content: "";
transition: transform 0.25s ease, top 0.25s ease,
background 0.25s ease;
transform-origin: center; 
}

.hamburger span::before{
    position: absolute;
    top: -6px;
}

.hamburger span::after{
    position: absolute;
    top: 6px;
}



@media(max-width:900px){
.menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
flex-direction: column;
align-items: center;
gap: 1rem;
backdrop-filter: blur(12px);
max-height: 0;
padding: 0;
opacity: 0;
pointer-events: none;
overflow: hidden;
transition: max-height 0.4s ease, opacity 0.4s
ease, padding 0.4s ease;
}

.menu li{
display: flex;
align-items: center;
justify-content: center;
width: 90%;
border-bottom: 1px solid #b6c0c9;
}

.menu li a{
padding: 10px 0;
}

.menu .search,
.menu .nav-btn{
    width: 90%;
    margin-top: 1rem;
}

.menu-toggle:checked~.menu{
    max-height: 100vh;

padding: 1.5rem 0;
opacity: 1;
pointer-events: auto;
}
.hamburger{
    display: flex;
}

.menu-toggle:checked~.hamburger span{
    background: transparent;
}

.menu-toggle:checked~.hamburger span::before{
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle:checked~.hamburger span::after{
    top: 0;
    transform: rotate(-45deg);
}

}


.main-content {
  display: flex;
  align-items: flex-start;  /* Alinha os itens ao topo */
  justify-content: space-between;
  gap: 30px;
  padding: 20px;
}

.image-container {
  flex: 1;
  margin-top: -10px; /* Move a imagem para cima */
  margin-right: 0%;
  margin-left: -1%;
  
}

.text-container {
  flex: 1;
  max-width: 50%;
  margin-top: 60px; /* Move o texto para cima */
}

.image {
  width: 80%;  /* Reduz o tamanho da imagem */
  height: auto;
  margin-top: 50px;  /* Move a imagem para cima */

  
}

h1 {
  font-size: 60px;
  text-align: center;
  font-weight: bold;
  margin-top: -20;  /* Remove o espaço do topo */
  margin-bottom: 20px;
  color: #746558;
}

p {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top:0% ;
  color:#7f674d;
}

h3 {
  font-size: 150px;
  margin-bottom: 20px;
  margin-top: 5%;
  color:#7f674d;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #7f674d;
  color: #0e0e0e;
  text-decoration: none;
  border-radius: 50px;
  margin-left: 38%;
  margin-top: 2%;
}

.btn:hover {
  background-color: #7f674d;
}

/* Responsividade */
@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
    align-items: center;
  }

  .image-container {
    margin-top: -20px; /* Ajusta a imagem no mobile */
    margin-left: 30%;
  }

  .text-container {
    max-width: 100%;
    text-align: center;
  }

  .btn {
    width: 50%;
    text-align: center;
    margin-bottom: 10px;
    margin-left: 10%;
  }
  
}


.services-section3 {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 50px;
  text-align: center;
}

.service-box3 {
  flex: 0 0 45%; 
  max-width: 250px;
  background-color: #eee8dd;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-top: 5%;
}
.service-box3:hover {
  transform: translateY(-10px);      /* Efeito de elevação ao passar o mouse */
}

.icon {
  font-size: 40px;                   /* Tamanho do ícone */
  color: #7f674d;                    /* Cor do ícone */
  margin-bottom: 15px;               /* Espaçamento entre o ícone e o texto */
}

.tittle2 {
  font-size: 50px;
  text-align: center;
  font-weight: bold;
  margin-top: 12%;  /* Remove o espaço do topo */
  align-items: center;
  margin-right: 15px;
  color: #746558;
}


.con {
  font-size: 20px;
  color: #7f674d; 
                       /* Cor do texto */
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #7f674d;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  margin-right: 15px;
}

.btn:hover {
  background-color: #7f674d;
}

/* Responsividade */
@media (max-width: 768px) {
  .services-section3 {
    flex-direction: column;  /* Empilha os cards verticalmente em telas pequenas */
    align-items: center;      /* Centraliza os itens */
  }

  .service-box3 {
    max-width: 90%;           /* Garante que os cards ocupem mais espaço em telas pequenas */
    margin-bottom: 20px;      /* Adiciona espaço entre os cards */
  }
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.care {
  flex: 1 1 45%; /* flex-grow, flex-shrink, flex-basis */
  text-align: center;
}

.care-image {
  width: 89%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.care-image2 {
  width: 89%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

h3 {
  margin-top: 10px;
  font-size: 1.5em;
  color: #746558;
}
.tittle3 {
  font-size: 36px;
  text-align: center;
  font-weight: bold;
  margin-top: 12%;  /* Remove o espaço do topo */
  align-items: center;
  margin-right: 15px;
  color: #746558;
}


@media (max-width: 768px) {
  .care {
    flex: 1 1 100%; /* 100% largura em telas pequenas */
  }
}


.tittle4{
   font-size: 50px;
  text-align: center;
  font-weight: bold;
  margin-top: 12%;  /* Remove o espaço do topo */
  align-items: center;
  margin-right: 15px;
  color: #746558;
} 

/* Estilo geral para a seção de serviços */
.services-section2 {
  display: flex;
  justify-content: center; 
  gap: 30px;
  flex-wrap: wrap;
  padding: 50px;
  text-align: center;
}

.service-box2 {
  flex: 0 0 30%;
  max-width: 250px;
  background-color: #eee8dd;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-top: 5%;
}


.service-box2 i {
  font-size: 40px; /* Tamanho do ícone */
  color: #746558; /* Cor do ícone */
}

.service-box2 h3 {
  margin-top: 10px;
  font-size: 18px;
  color: #7f674d;
}

/* Responsividade */
@media (max-width: 1024px) {
  .services-section2 {
    grid-template-columns: repeat(3, 1fr); /* 3 colunas em telas menores */
  }
}

@media (max-width: 768px) {
  .services-section2 {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas em telas ainda menores */
  }
}

@media (max-width: 480px) {
  .services-section2 {
    grid-template-columns: 1fr; /* 1 coluna em telas de celular */
  }
}

.tittle5{
   font-size: 36px;
  text-align: center;
  font-weight: bold;
  margin-top: 10%;  /* Remove o espaço do topo */
  align-items: center;
  margin-right: 15px;
  color: #746558;
} 

.com{
 font-size: 20px;
  color: #7f674d; 
  font-weight: bold;
  text-align: center;
}

.btm {
   display: inline-block;
  padding: 12px 24px;
  background-color: #7f674d;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  margin-left: 43%;
  margin-top: 0%;
  margin-bottom: 10%;
}

.btm:hover {
  background-color: #7f674d;
}

/* Estilos gerais do rodapé */
.footer {
  background-color: #746558;
  color: #eee8dd;
  padding: 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Estilo da parte superior do rodapé */
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-left, .footer-center, .footer-right {
  flex: 1;
  text-align: center;
}

.footer-left p, .footer-center p, .footer-right p {
  margin: 10px 0;
}

.social-links a {
  margin: 0 10px;
  color: #eee8dd;
  text-decoration: none;
  font-size: 40px;
}

.social-links a:hover {
  color: #eee8dd;
}

/* Linha separadora entre a navegação e os direitos reservados */
.footer-divider {
  border: 0;
  border-top: 1px solid #ddd; /* Cor clara para a linha */
  margin: 20px 0; /* Espaçamento acima e abaixo da linha */
  width: 80%; /* Controla a largura da linha */
  margin-left: auto; /* Centraliza a linha */
  margin-right: auto;
}

/* Estilo da parte inferior do rodapé */
.footer-bottom {
  font-size: 14px;
  margin-top: 20px;
}

/* Estilo dos links de navegação */
.footer-nav {
  margin-top: 20px;
}

.footer-nav ul {
  list-style-type: none;
  padding: 0;
}

.footer-nav li {
  display: inline-block;
  margin: 0 15px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.footer-nav a:hover {
  color: #eee8dd;
}
.oi{
  color: #fff;
}

.om{
  color: #fff;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-left, .footer-center, .footer-right {
    text-align: center;
    margin-bottom: 15px;
  }

  .footer-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .footer-nav li {
    margin: 10px 0;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .social-links a {
    font-size: 18px;
  }
}

/* Estilos do mapa */
.map-container {
  text-align: center;
  padding: 40px 20px;
}

.map-container h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

/* Mapa responsivo */
.map-responsive {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  max-width: 100%;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tittle6{
   font-size: 36px;
  text-align: center;
  font-weight: bold;
  margin-top: 12%;  /* Remove o espaço do topo */
  align-items: center;
  margin-right: 15px;
  color: #746558;
} 

/* Ajustes para responsividade */
@media (max-width: 768px) {
  .map-container h2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  h1.tittle5 {
    font-size: 28px; /* Ajuste do tamanho da fonte em telas menores */
  }

  p.com {
    font-size: 16px; /* Ajuste do tamanho da fonte */
  }

  a.btm {
    padding: 15px 30px; /* Aumenta o tamanho do botão para melhorar o toque em dispositivos móveis */
    font-size: 16px; /* Ajusta o tamanho da fonte do botão */
    margin-left: 30%;
  }
}

@media (max-width: 480px) {
  section {
    padding: 15px; /* Reduz o padding nas telas menores */
  }

  h1.tittle5 {
    font-size: 24px; /* Ajuste do tamanho da fonte em dispositivos muito pequenos */
  }

  p.com {
    font-size: 14px; /* Reduz o tamanho da fonte */
  }

  a.btm {
    width: 100%; /* Faz o botão ocupar toda a largura da tela */
    font-size: 18px;
    
  }
}

/* Estilos gerais da seção Valor Social */
.valor-social {
  
  padding: 40px 20px;
  text-align: center;
}

/* Container que envolve o título e o conteúdo do SUS */
.valor-social-content {
  display: flex;
  flex-direction: flex;
  justify-content: center;
  align-items: center;
}

/* Estilo do título principal "Trabalhando com" */
.tittle7{
   font-size: 50px;
  text-align: center;
  font-weight: bold;
  margin-top: 12%;  /* Remove o espaço do topo */
  align-items: center;
  margin-right: 15px;
  color: #746558;
} 
.tittle8{
   font-size: 50px;
  text-align: center;
  font-weight: bold;
  margin-top: 10%;  /* Remove o espaço do topo */
  align-items: center;
  margin-right: 15px;
  color: #746558;
  
} 
/* Estilo geral da seção Valor Social */
.valor-social {
  padding: 40px 20px;
  text-align: center;
}

/* Container que envolve o conteúdo (logo VS e SUS) */
.valor-social-content {
  display: flex;
  flex-wrap: wrap; /* Permite que os itens quebrem em telas pequenas */
  justify-content: center; /* Centraliza o conteúdo */
  gap: 20px; /* Espaçamento entre os itens */
  margin-top: 20px;
}

/* Estilo do logo "VALOR SOCIAL" */
.logo-vs {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Sombras suaves para dar destaque */
}

/* Container do logo SUS */
.logo-sus-container {
  display: flex;
  justify-content: center;
}

/* Estilo do logo SUS */
.logo-sus {
  max-width: 90%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Sombras suaves para dar destaque */
}
.tittle8{
  color: #7f674d;
  font-weight: bold;
}

/* Responsividade */
@media (max-width: 1024px) {
  .logo-vs, .logo-sus {
    max-width: 90%; /* Limita a largura das imagens a 90% da tela em tablets */
  }
}

@media (max-width: 768px) {
  .logo-vs{
    max-width: 80%; /* Limita a largura das imagens a 80% da tela em dispositivos móveis */
    order: 3;
    height: auto;
  }
  .logo-sus{
     max-width: 80%; /* Limita a largura das imagens a 80% da tela em dispositivos móveis */
    order: 1;
    height: auto;
  }
  .valor-social-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .tittle8{
    order: 2;
    margin-top: 10px;
    width: 100%;
    text-align: center;

  }
}

@media (max-width: 480px) {
  .logo-vs, .logo-sus {
    max-width: 70%; /* Limita a largura das imagens a 70% da tela em telas muito pequenas */
  }
}
.areas-atendimento{
  display:flex;
  justify-content:center;
  gap:40px;
  padding:60px 40px;
  flex-wrap:wrap;
  
}

.area-card{
  background:#eee8dd;
  border-radius:15px;
  padding:40px;
  max-width:400px;
  text-align:center;
  box-shadow:0 8px 20px #7f674d;
  transition:transform 0.3s ease;
  margin-top: 10%;
}

.area-card:hover{
  transform:translateY(-5px);
}

.area-card h2{
  margin-bottom:15px;
}

.area-card p{
  margin-bottom:20px;
}

.btn-area{
  background:#f4c542;
  color:#7f674d;
  padding:10px 20px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}

/* RESPONSIVIDADE */

@media (max-width:768px){

  .areas-atendimento{
    padding:40px 20px;
  }

  .area-card{
    max-width:100%;
    padding:30px;
  }

}

h2{
color: #7f674d;
}

  