/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #1c1c1c;
  overflow-x: hidden;
}

section {
  scroll-margin-top: 80px;
}

/*----------------------------------------------------------------------------------------*/
/*Menu Desktop*/

.menu-estilizado {
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: linear-gradient(90deg, #117c6e, #084b5f);
  border-radius: 18px;
  padding: 10px 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 96vw;
  overflow: hidden;
  white-space: nowrap;
}


.menu-estilizado ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: nowrap;
}
.menu-estilizado li:first-child {
  margin-left: 0;
  margin-top: 0;
}
.menu-estilizado a {
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.menu-estilizado a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.logo-menu-link {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo-wrapper {
  background: linear-gradient(135deg, #00d2ff, #3a7bd5); /* azul degradê */
  border: none;
  border-radius: 16px;
  padding: 6px 14px; /* menor para evitar altura extra */
  height: 100%; /* força ocupar altura total do menu */
  display: flex;
  align-items: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.logo-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  opacity: 0.95;
}

.logo-menu {
  height: 28px; /* menor para caber visualmente no menu */
  width: auto;
}

.menu-estilizado .btn-agende {
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
  padding: 10px 20px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 15px;
  color: white;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.menu-estilizado .btn-agende:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.menu-toggle {
  display: none;
}
/*---------------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------Landing Page----------------------------------------------------------*/
.hero-split {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  z-index: 0; /* adiciona este para contexto de empilhamento */
  height: 100vh;
}

.hero-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #084b5f 0%, #117c6e 50%, #084b5f 100%);
  background-size: 300% 300%;
  animation: pulse-bg-suave 12s ease-in-out infinite;
  z-index: -1;
}

.hero-split::after {
  content: "";
  position: absolute;
  top: 22%;
  left: 74%;
  transform: translate(-50%, -50%);
  background-image: url('img/logomd2.png'); /* Caminho relativo ao CSS */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 320px;
  opacity: 1;
  width: 320px;
  height: 320px;
  z-index: 0;
  pointer-events: none;
}

.hero-split::before {
  z-index: -1;
}
.hero-split::after {
  z-index: 0;
}

.hero-left,
.hero-right {
  position: relative;
  z-index: 2;
}

.hero-left {
  display: flex;
  flex: 0.9; /* Menos espaço pro texto */
  justify-content: flex-end;  /* 👉 alinha a imagem à direita do bloco */
  align-items: center;
  padding: 0;
}

.imagem-lateral {
  max-width: 72%;
  height: auto;
  object-fit: contain;
  margin-top: 20px;
  margin-right: 30px;    /* garante sem recuo */
  align-self: flex-end; /* se quiser encostar embaixo também */
}
.hero-right {
  padding-left: 20px;
  padding-right: 20px;
  flex: 1.1; /* Mais espaço pro texto */
  display: flex;
  align-items: center;
  justify-content: flex-start;  /* 👈 alinha conteúdo à esquerda */
  position: relative;
  padding-top: 60px;
}
.conteudo-texto {
  position: relative;
  z-index: 2;
  text-align: center;  
}

.conteudo-texto h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.4;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 32px;
}

.conteudo-texto p {
  text-align: center;
  max-width: 540px;
  font-size: 1.3rem;
  font-weight: 500;
  margin-left:auto;
  margin-right: auto;
  color: #f0f0f0;
  line-height: 1.6;
  /*text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);*/
  margin-bottom: 40px;
}

.logo-topo-hero {
  padding: 16px 24px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4)); /* sombra */
  width: 350px;
  margin-bottom: 10px;
  display: center;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 30px;
}


.btn-modern {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff10;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-modern:hover {
  transform: translateY(-2px);
  background: #ffffff20;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.icon-whatsapp {
  width: 18px;
  height: 18px;
}
.btn-modern i {
  width: 18px;
  height: 18px;
}
* {
  transition: all 0.3s ease;
}

.btn-blue {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

/*---------------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------Landing Page----------------------------------------------------------*/

.quem-somos-section {
  background: linear-gradient(135deg, #e0f7fa, #f1f8e9);
  padding: 100px 20px;
}

.container-quem-somos {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.texto-quem-somos {
  flex: 1;
  color: #084b5f;
}

.texto-quem-somos h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0a5c56;
  margin-bottom: 12px;
}

.linha-decorativa {
  width: 270px;
  height: 4px;
  background: #117c6e;
  margin: 12px 0 32px 0;
  border-radius: 4px;
}

.texto-quem-somos p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.imagem-quem-somos {
  flex: 1;
  text-align: center;
}

.imagem-quem-somos img {
  max-width: 60%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}


@keyframes pulseButton {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
}

.hero-buttons .btn-modern {
  animation: pulseButton 6s ease-in-out infinite;
}

/* SEÇÃO DE ESPECIALISTAS */
.especialistas-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f4c75, #3282b8);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.container-especialistas {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.container-especialistas h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #ffffff;
}

.titulo-especialidades {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.subtitulo-especialidades {
  font-size: 1.6rem;
  color: #00ffd1;
  margin-bottom: 16px;
}

.preco-promocional {
  font-weight: 800;
  font-size: 1.8rem;
  color: #00ffd1;
}

.texto-intro {
  font-size: 1.1rem;
  color: #d8fafa;
  margin-bottom: 40px;
}

/* NOVO GRID DE ESPECIALIDADES EM PÍLULAS */

@keyframes pulse-bg-suave {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.especialidades-grid {
  display: grid;
  grid-template-columns: 1fr;
  padding: 32px 16px;
  gap: 20px;
  background: linear-gradient(135deg, #117c6e, #084b5f);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  animation: pulse-bg-suave 12s ease-in-out infinite;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pill {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.15rem;
  text-align: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.pill:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.e-mais {
  font-size: 1.1rem;
  color: #cdebf9;
  margin-bottom: 30px;
}

.btn-agende-promo {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.btn-agende-promo:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #128c7e, #0f5e4d);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.icon-whatsapp {
  width: 18px;
  height: 18px;
}
/*----------------------------------------------------*/
/*-------------------- SEÇÃO DE DEPOIMENTOS----------- */
 .faixa-depoimentos {
  background: linear-gradient(135deg, #0b3c5d, #1c587a);
  padding: 80px 0px;
  z-index: 0;
}


.titulo-depoimentos {
  font-size: 2rem;
  text-align: center;
  color: white;
  margin-bottom: 50px;
}

.linha-depoimentos {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 colunas iguais */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px; /* espaço interno lateral */
}

.card-depoimento {
  background: rgba(230, 244, 241, 0.4); /* menta suave com transparência */
  backdrop-filter: blur(6px); /* efeito vidro fosco */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  width: 100%;
  min-height: 360px;
  color: #ffffff; /* garante boa leitura no fundo translúcido */
  display: flex;
  gap: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  transition: all 0.3s ease;
}

.card-depoimento:hover {
  background: rgba(255, 255, 255, 0.08); /* MAIS claro no hover */
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
/* CARD IMAGEM */
.card-imagem {
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  width: 260px;
  height: 360px;
}
.card-imagem img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}
.card-imagem img {
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.imagem-card {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* TEXTO DEPOIMENTOS */
.texto-depoimento {
  font-size: 1rem;
  color: #0c2229;
  line-height: 1.5;
  margin-bottom: 12px;
}
.card-final {
  flex-grow: 1.2;         /* aumenta levemente o tamanho na grid */
  padding: 32px 20px;     /* mais conteúdo interno */
}
.estrelas {
  color: #f4c150;
  font-size: 1.82rem;
  margin: 0 0 8px 0;
}

.info-depoimento {
  margin-top: auto; /* fixa no final se quiser */
  font-size: 0.85rem;
  color: #030e11;
}

/* CARD FINAL */
.especial-final {
  background: linear-gradient(135deg, #4da3b8, #88c9bf); /* azul esverdeado suave */
  color: white;
}

.icone-final {
  font-size: 2rem;
  margin-bottom: 12px;
  align-self: center;
}

.titulo-final {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.texto-final {
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: #e0e0e0;
}

.link-final {
  font-size: 1rem;
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}
.link-final:hover {
  text-decoration: none;
  opacity: 0.85;
  
}

/*---------------------------------------------*/
/* SEÇÃO DE EXAMES */
.exames-section {
  background: linear-gradient(to bottom, #e0f7fa, #ffffff);
  padding: 80px 20px;
}
.exames-section p.text-lg {
  font-size: 1.25rem; /* aumenta a legibilidade */
  line-height: 1.8;
  color: #084b5f; /* tom coerente com o tema da clínica */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
  font-weight: 500;
}
.exames-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  color: #084b5f;
  margin-bottom: 50px;
}

.exames-section .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.exames-section .grid > div {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.exames-section .grid > div:hover {
  transform: scale(1.05);
}

.exames-section img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.exames-section .p-6 {
  padding: 24px;
}

.exames-section h3 {
  font-size: 1.4rem;
  color: #117c6e;
  font-weight: 700;
  margin-bottom: 12px;
}

.exames-section p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.exames-section .text-center {
  margin-top: 50px;
}

.exames-section a {
  background: #25D366;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.exames-section a:hover {
  background: #128C7E;
  transform: translateY(-2px);
}
.btn-exames-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 80px; /* ✅ nova margem inferior */
}

.btn-exames {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff10;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-exames:hover {
  transform: translateY(-2px);
  background: #ffffff20;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn-exames img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  display: inline-block;
}

.btn-whatsapp2 {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
/* SEÇÃO DE CONTATO */
.contato-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f0fbfc, #e8f5e9);
}

/* TÍTULO CENTRALIZADO */
.container-titulo-contato {
  text-align: center;

}

.titulo-contato {
  font-size: 2.6rem;
  font-weight: 800;
  color: #117c6e;

}

.bloco-saude-destaque {
  text-align: center;
  padding: 30px 20px;
  max-width: 700px;
  margin: 0 auto 40px auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12); /* sombra média */
}

.bloco-saude-destaque h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #084b5f;
  margin-bottom: 14px;
}

.bloco-saude-destaque p {
  font-size: 1.25rem;
  color: #117c6e;
  font-weight: 500;
}

/* MAPA CENTRALIZADO */
.mapa-clique-externo {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.mapa-clique-externo iframe {
  width: 100%;
  height: 400px;
  pointer-events: none; /* 🔑 Impede interação dentro do iframe */
}

.mapa-clique-externo a {
  display: block;
}


/* BLOCO DE INFORMAÇÕES */
.bloco-contato-modern {
  max-width: 720px;
  margin: 60px auto;
  background: linear-gradient(135deg, #d8fdfa, #b9f4ee);
  border: 1px solid #a5e5de;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 20px;
}

.linha-contato-modern {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.15rem;
  color: #084b5f;
}

.linha-contato-modern i {
  width: 26px;
  height: 26px;
  color: #117c6e;
  flex-shrink: 0;
  margin-top: 3px;
}

.linha-contato-modern p {
  margin: 0;
  line-height: 1.7;
  color: #0d3b3a;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: left;
}

.info-contato-centralizado {
  max-width: 600px;
  margin: 0 auto;
  color: #084b5f;
}

/* BOTÃO WHATSAPP */
.btn-exames-wrapper2 {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.btn-exames2 {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff10;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-exames2:hover {
  transform: translateY(-2px);
  background: #ffffff20;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn-exames2 img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  display: inline-block;
}

.btn-whatsapp2 {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.rodape {
  text-align: center;
  margin-top: 60px;
  padding: 30px 20px 20px;
  font-size: 0.95rem;
  color: #777;
  border-top: 1px solid #ccc;
  background-color: #f7fdfc;
}
/* VISIBILIDADE PADRÃO */
.menu-mobile-container {
  display: none; /* escondido no desktop */
}

.botao-whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  padding: 12px;
  border-radius: 50%;
  z-index: 3000;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.botao-whatsapp-fixo img {
  width: 34px;
  height: 34px;
}

/*---------------------------------------------------------------------------------------------------------*/
/*-----------------------------------------MOBILE----------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------*/
/* MOSTRAR APENAS NO MOBILE */
@media (max-width: 768px) {

  body.menu-aberto .menu-mobile-container {
    display: flex;
    flex-direction: column;
    transform: translateX(0);
  }

  .menu-estilizado {
    display: none !important;
  }

  .hero-split {
    margin-top: 0;
    padding-top: 0;
  }

  .logo-wrapper,
  .logo-menu-link {
    display: none;
  }

  .hero-split {
    background-image: linear-gradient(135deg, rgba(8,75,95,0.95), rgba(17,124,110,0.95));
  }

  /* ===== MENU MOBILE MODERNO ===== */
  .menu-mobile-container {
    position: fixed;
    top: 0;
    right: 0; /* corrigido */
    width: auto;
    min-width: 180px;
    max-width: 92vw;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    z-index: 3000;
    padding: 20px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 20px;
    height: auto;
  }

  body.menu-aberto .menu-mobile-container {
    transform: translateX(0);
  }

  .menu-toggle {
    position: fixed;
    top: 5px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    z-index: 3100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }

  .menu-toggle:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    content: "";
    display: block;
    background: #084b5f;
    height: 3px;
    width: 22px;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .menu-icon::before {
    position: absolute;
    top: -7px;
  }
  
  .menu-icon::after {
    position: absolute;
    top: 7px;
  }
  
  /* Quando o menu está aberto (vira X) */
  body.menu-aberto .menu-icon {
    background: transparent;
  }
  
  body.menu-aberto .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
  }
  
  body.menu-aberto .menu-icon::after {
    transform: rotate(-45deg);
    top: 0;
  }
  
  .menu-links-mobile ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .menu-links-mobile a {
    color: #084b5f;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    padding: 10px;
    border-radius: 6px;
    transition: background 0.2s;
  }

  .menu-links-mobile a:hover {
    background-color: #f2f2f2;
  }
  
  .menu-links-mobile .btn-agende {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    text-align: center;
    border-radius: 30px;
    display: block;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    max-width: 180px;
    margin: 0 auto;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  /* ===== HERO RESPONSIVO ===== */
  .hero-split {
    flex-direction: column;
    height: auto;
    padding-top: 5px;
    background-image: linear-gradient(135deg, rgba(8, 75, 95, 0.95), rgba(17, 124, 110, 0.95));
  }

  .hero-left {
    display: none;
  }

  .hero-right {
    padding: 12px 16px;
    text-align: center;
    max-width: 95%;
    margin: 0 auto;
  }

  .conteudo-texto h1 {
    font-size: 2.2rem;
  }

  .conteudo-texto p {
    font-size: 1.1rem;
  }

  .logo-topo-hero {
    width: 180px;
    margin: 0 auto 24px auto;
    display: block;
  }

  .hero-split::after {
    display: none;
  }

  .logo-wrapper,
  .logo-menu-link {
    display: none;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 49px;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .texto-quem-somos {
    text-align: center;
  }

  .texto-quem-somos,
  .texto-quem-somos p,
  .texto-quem-somos h2 {
    text-align: left !important;
    padding-left: 12px;
    padding-right: 12px;
  }

  .container-quem-somos {
    flex-direction: column;
  }

  .imagem-quem-somos {
    order: 1;
    margin-bottom: 20px;
    text-align: center;
  }

  .texto-quem-somos {
    order: 2;
  }

  .texto-quem-somos h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 16px;
    padding: 0 0px;
    text-align: left;
  }
  
  .texto-quem-somos p {
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 12px;
    margin-bottom: 20px;
    text-align: left;
  }
  /* ===== AJUSTES GERAIS MOBILE ===== */
  .btn-agende {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    padding: 12px 24px;
    border-radius: 32px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }
  .especialidades-grid {
    grid-template-columns: 1fr;
    padding: 32px 16px;
    gap: 20px;
  }

  .exames-section {
  padding: 40px 16px;
  }

  .exames-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .exames-section h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }

  .exames-section p.text-lg {
    font-size: 1rem;
    padding: 0;
    margin-bottom: 24px;
  }

  .grid.md\:grid-cols-2 {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 16px;
  }

  .exames-section img {
    max-height: 220px;
    object-fit: cover;
    border-radius: 12px;
  }

  .exames-section h3 {
    font-size: 1.1rem;
    text-align: left;
  }

  .exames-section p {
    font-size: 0.95rem;
    text-align: left;
  }

  .btn-exames-wrapper {
    margin-top: 32px;
  }

  .btn-exames {
    font-size: 16px;
    padding: 10px 20px;
  }
  .rodape {
    margin-top: 30px;
    padding: 20px 16px;
    font-size: 0.85rem;
    text-align: center;
  }
  .mapa-contato-centralizado iframe {
    height: 240px;
  }
  .btn-modern,
  .btn-exames,
  .btn-agende {
    max-width: 90%;
    font-size: 15px;
    padding: 10px 20px;
    margin: 0 auto;
  }
  .especialistas-section,
  .quem-somos-section,
  .exames-section {
    padding: 40px 16px;
  }
  .exames-section .p-6 {
    padding: 16px;
  }
  .info-contato-centralizado {
    padding: 0 16px;
    text-align: left;
  }

  .lista-contato {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 16px;
  }

  .lista-contato li {
    display: flex;
    align-items: center; /* 🔑 garante alinhamento vertical */
    gap: 10px;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    color: #2b2b2b;
  }

  .lista-contato img,
  .lista-contato i {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .lista-contato span {
    display: block;
    max-width: 90%;
  }

  .linha-depoimentos {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 16px;
    scroll-padding: 16px;
  }
  .card-depoimento {
    min-width: 85%;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}