/* === FONTES LOCAIS MONTSERRAT === */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Reset e ajustes globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, 
/* ===== ESTILOS GERAIS DO SITE ===== */
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* ===== ESTILOS GERAIS DO SITE ===== */
body {
  font-family: 'Montserrat', sans-serif;
  background: #f4f4f4;
  color: #333;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 5%;
  margin: 0 auto;
}

/* Telas grandes */
@media (min-width: 1600px) {
  .container {
  max-width: 1400px;
  }
}

@media (min-width: 1920px) {
  .container {
  max-width: 1600px;
  }
}

/* ====== CABEÇALHO ====== */
header {
  background: rgba(34, 34, 34, 0.9);
  color: white;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 30px;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #00b8f1;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 10001;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  background: #222;
  padding: 20px;
  position: fixed;
  top: 70px;
  width: 100%;
  left: 0;
  z-index: 10000;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: block;
  padding: 10px;
  text-align: center;
}

/* ====== HERO ====== */

/* ===== SEÇÃO HERO (BANNER PRINCIPAL) ===== */
.hero {
  
  background-size: cover;
  background-position: center;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
  transition: background-image 1s ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 150, 200, 0.10); /* Azul bem suave */
  backdrop-filter: none; /* Remove escurecimento */
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .container {
  width: 100%;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #00b8f1;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #cc5500;
}

/* ===== SEÇÃO SOBRE NÓS ===== */
.sobre {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.sobre h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #333;
}

.sobre-info {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.sobre-item {
  text-align: center;
  width: 30%;
  min-width: 280px;
}

.sobre-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.sobre-item h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.sobre-item p {
  color: #666;
}

/* ===== SEÇÃO SERVIÇOS ===== */
.servicos {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.servicos h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #333;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .servicos-grid {
  grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .servicos-grid {
  grid-template-columns: 1fr;
  }
}

.servico-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.servico-item:hover {
  transform: translateY(-10px);
}

.servico-item img {
  max-width: 100%;
  height: auto;
  width: 80px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.servico-item h3 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 10px;
}

.servico-item p {
  font-size: 1em;
  color: #666;
}

/* ====== BACKGROUND EXTRA ====== */
.background-extra {
  background-color: white;
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.background-extra .fundo-translucido {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.3; /* controla a translucidez */
}

/* ====== CONTATO ====== */
.contato {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contato h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #333;
}

.contato form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

textarea {
  height: 150px;
}

button {
  padding: 10px;
  background: #00b8f1;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  transition: background 0.3s;
}

button:hover {
  background: #cc5500;
}

/* ====== DESABILITA BOTÂO DE ENVIO DE FORMULARIO SE NÂO MARCAR O RECAPTCHA ====== */

#btnEnviar:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #ccc;
  color: #666;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

/* ===== RODAPÉ ===== */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 10px 0 !important;
  margin-top: 0 !important;
  font-size: 0.9em;
  line-height: 1.2em;
}

.contato-fixa {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px 0;
  position: relative;
  z-index: 100;
}

.contato-fixa .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contato-info {
  color: white;
  text-decoration: none;
}

.contato-info i {
  color: #00b8f1;
  font-size: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

.contato-info:hover {
  text-decoration: none;
}

/* ====== WHATSAPP FIXO ====== */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-icon img {
  width: 90px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* ====== RESPONSIVO ====== */
@media (max-width: 900px) {
  .whatsapp-icon {
  display: block;
  }
}

@media (max-width: 768px) {
  nav ul {
  display: none;
  }

  .menu-toggle {
  display: flex;
  }

  .sobre-item,
  .servico-item {
  width: 100%;
  }

  .contato-fixa .container {
  flex-direction: column;
  align-items: center;
  }

  .hero .container {
  padding: 0 20px;
  width: 100%;
  max-width: 100%;
  }
}

/* ====== CLIENTES (CLIENTES SLIDE) ====== */
.clientes {
  background: #f4f4f4;
  padding: 30px 0;
  overflow: hidden;
}

.slider {
  height: 100px;
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
}

.slide-track {
  display: flex;
  width: calc(250px * 20);
  animation: scroll 40s linear infinite;
}

.slide {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.slide img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
  opacity: 0.8;
}

.slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll {
  0%  { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.barra-topo {
  background-color: #111;
  color: white;
  font-size: 0.9em;
  padding: 6px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1100;
}

.barra-topo .info-topo {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.barra-topo i {
  color: #00b8f1;
  margin-right: 5px;
}

header .container {
  padding-top: 20px;
  padding-bottom: 10px;
}

.sobre-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.sobre-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  text-align: center;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobre-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.sobre-card i {
  font-size: 40px;
  color: #00b8f1;
  margin-bottom: 20px;
}

.sobre-card h3 {
  font-size: 1.5em;
  color: #00b8f1;
  margin-bottom: 10px;
}

.sobre-card p {
  color: #555;
  font-size: 0.95em;
  line-height: 1.6;
}

/* ====== TREINAMENTOS (FAIXAS COM LISTA) ====== */
.treinamentos {padding:80px 20px;background:#fff;text-align:center;}
.treinamentos h2 {font-size:2.2em;color:#333;margin-bottom:10px;}
.treinamentos p {color:#666;font-size:1em;margin-bottom:40px;}
.treinamento-faixa {
  background:#a9ddf8;
  padding:20px;
  border-radius:10px;
  margin-bottom:20px;
  text-align:left;
  box-shadow:0 2px 5px rgba(0,0,0,0.1);
}
.treinamento-faixa h3 {
  font-size:1.3em;
  color:#003366;
  margin-bottom:10px;
}
.treinamento-faixa ul {
  list-style:disc;
  padding-left:20px;
  margin:0;
}
.treinamento-faixa li {
  margin-bottom:5px;
  color:#000;
  font-size:1em;
}

/* ====== Título Clientes ====== */
.titulo-clientes {
  text-align:center;
  font-size:2em;
  margin:40px 0 10px 0;
  color:#333;
}

/* ====== CONTATO FIXO (CARDS) ====== */
.contato-fixa {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 40px 0;
}

.contato-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contato-card {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #222;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contato-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.contato-card i {
  font-size: 28px;
  color: #00b8f1;
  margin-bottom: 10px;
}

.contato-card a,
.contato-card span {
  color: white;
  text-decoration: none;
  font-size: 1em;
  display: block;
}

.contato-card a:hover {
  color: #00b8f1;
}

/* ====== BOTÕES (AJUSTE DE CORES) ====== */
.btn {
  background-color: #00b8f1; /* azul padrão */
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn:active {
  background-color: #003366; /* azul forte ao passar o mouse/clicar */
}
/* ====== FUNDO DECORATIVO ENTRE SOBRE NÓS E MISSÃO/VISÃO/VALORES ====== */
.sobre-info {
  position: relative;
  z-index: 1;
}

.sobre-info::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: calc(100% + 100px);
  background: url('../img/shape-tm-20.png') center/cover no-repeat;
  opacity: 0.25;
  z-index: -1;
}
/* ====== AJUSTE DO HERO PARA DEIXAR O LETREIRO VISÍVEL ====== */
.hero .container {
  position: relative;
  top: 60px; /* Ajuste vertical */
}

@media (max-width: 768px) {
  .hero .container {
  top: 30px;
  }
}
/* ====== LAYOUT SOBRE NÓS COM IMAGEM À ESQUERDA ====== */
.sobre-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.sobre-imagem {
  flex: 1 1 45%;
}

.sobre-imagem img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.sobre-texto {
  flex: 1 1 50%;
  text-align: left;
}

.sobre-texto h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

.sobre-texto p {
  font-size: 1.05em;
  line-height: 1.7;
  color: #555;
}

/* Responsividade */
@media (max-width: 900px) {
  .sobre-flex {
  flex-direction: column;
  text-align: center;
  }

  .sobre-texto {
  text-align: center;
  }
}
/* ====== AJUSTE: IMAGEM SOBRE NÓS COM MESMA ALTURA DO TEXTO ====== */
.sobre-flex {
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.sobre-imagem {
  flex: 1 1 45%;
  display: flex;
}

.sobre-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.sobre-texto {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* ====== SEÇÃO NÚMEROS ====== */

/* ===== SEÇÃO CONTADOR DE RESULTADOS ===== */
.numeros {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.numeros-texto {
  max-width: 500px;
  margin: 0 auto 40px auto;
}

.numeros-texto h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 15px;
}

.numeros-texto p {
  color: #666;
  font-size: 1em;
  line-height: 1.6;
}

.numeros-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.numero-item {
  flex: 1 1 200px;
}

.numero-item i {
  font-size: 40px;
  color: #00b8f1;
  margin-bottom: 10px;
}

.numero-item .contador {
  display: block;
  font-size: 2.5em;
  font-weight: bold;
  color: #333;
}

.numero-item p {
  margin-top: 5px;
  color: #555;
}
/* ====== AJUSTE: LAYOUT NÚMEROS COM TEXTO À ESQUERDA ====== */
.numeros .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  text-align: left;
}

.numeros-texto {
  flex: 1 1 40%;
  max-width: 500px;
}

.numeros-grid {
  flex: 1 1 50%;
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}

.numero-item {
  flex: 1 1 120px;
  min-width: 120px;
}
/* ====== FUNDO DECORATIVO NA SEÇÃO SERVIÇOS ====== */

/* ===== SEÇÃO SERVIÇOS ===== */
.servicos {
  position: relative;
  overflow: hidden;
}

.servicos::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: url('../img/bg-shape-tm-3.png') center/contain no-repeat;
  opacity: 0.08;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.servicos .container {
  position: relative;
  z-index: 1;
}
/* ====== FUNDO DECORATIVO SOBRE O FUNDO CINZA, ATRÁS DOS CARDS ====== */

/* ===== SEÇÃO SERVIÇOS ===== */
.servicos {
  position: relative;
  background: #f9f9f9;
  overflow: hidden;
  z-index: 1;
}

.servicos::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: url('../img/bg-shape-tm-3.png') no-repeat center;
  background-size: contain;
  opacity: 0.25;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.servicos .container {
  position: relative;
  z-index: 2;
}
/* ====== FUNDO DECORATIVO PREENCHENDO TODA A LARGURA DA SEÇÃO SERVIÇOS ====== */

/* ===== SEÇÃO SERVIÇOS ===== */
.servicos {
  position: relative;
  background: #f9f9f9;
  overflow: hidden;
  z-index: 1;
}

.servicos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/bg-shape-tm-3.png') center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.servicos .container {
  position: relative;
  z-index: 2;
}
/* ====== FUNDO TEXTURIZADO COM REPETIÇÃO PARA TODA A SEÇÃO SERVIÇOS ====== */

/* ===== SEÇÃO SERVIÇOS ===== */
.servicos {
  position: relative;
  background: #f9f9f9 url('../img/bg-shape-tm-3.png') repeat center;
  background-size: 400px;
  z-index: 1;
}
/* ====== FUNDO COM UMA ÚNICA IMAGEM LARGA NA SEÇÃO SERVIÇOS ====== */

/* ===== SEÇÃO SERVIÇOS ===== */
.servicos {
  position: relative;
  background: #f9f9f9 url('../img/bg-shape-tm-3.png') no-repeat center top;
  background-size: cover;
  z-index: 1;
}

/* ====== AJUSTE FINAL: IMAGEM SOBRE NÓS ====== */
.sobre-imagem img {
  width: 100%;
  height: auto;
  max-height: 450px; /* mantém proporção */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ====== AJUSTE FINAL: SEÇÃO CONTADOR ====== */

/* ===== SEÇÃO CONTADOR DE RESULTADOS ===== */
.numeros {
  padding: 60px 20px;
  background: #f5f5f5;
}
.numeros .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.numeros-texto {
  flex: 1 1 40%;
  max-width: 500px;
}
.numeros-grid {
  flex: 1 1 50%;
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}
.numero-item {
  flex: 1 1 120px;
}
.numero-item i {
  font-size: 40px;
  color: #00b8f1;
  margin-bottom: 10px;
}
.numero-item .contador {
  display: block;
  font-size: 2.5em;
  font-weight: bold;
  color: #333;
}
.numero-item p {
  margin-top: 5px;
  color: #555;
}
@media (max-width: 900px) {
  .numeros .container {
  flex-direction: column;
  text-align: center;
  }
}

/* ====== AJUSTE FINAL: MENU HAMBÚRGUER ====== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 10001;
}
.menu-toggle span {
  width: 30px;
  height: 3px;
  background: white;
  border-radius: 2px;
}
@media (max-width: 768px) {
  nav ul { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: none; background: #222; position: fixed; top: 70px; width: 100%; left: 0; z-index: 10000; }
  .mobile-nav.active { display: block; }
}

/* === CORREÇÃO FINAL: LOGO MAIOR SEM CORTAR, BARRA FIXA E RESPONSIVA === */

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header .logo img {
  height: 72px;  
  max-height: 72px;
  width: auto;
}

@media (max-width: 768px) {
  .logo img {
  height: 64px;
  max-height: 64px;
  }
}

/* === AJUSTE EXTRA: SUBIR LEVEMENTE A LOGO === */

@media (max-width: 768px) {
  .barra-topo {
  display: none;
  }

  .contato-card {
  min-height: 130px;
  }
}

@media (max-width: 768px) {
  .barra-topo {
  display: none;
  }

  header {
  top: 0 !important; /* Remove o espaço extra deixado pela barra oculta */
  }

  .contato-card {
  min-height: 150px; /* Altura maior forçada para igualar visualmente */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  }
}

@media (max-width: 768px) {
  .barra-topo {
  display: none;
  }

  header {
  top: 0 !important;
  }

  .contato-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  }

  .contato-card {
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  }
}

/* ===== Correção Definitiva: força todos os cards de contato a terem o mesmo tamanho no mobile ===== */
@media (max-width: 768px) {
  .contato-cards {
  display: flex;
  flex-direction: column;
  align-items: stretch !important;
  }
  .contato-card {
  height: 220px !important; /* altura fixa */
  min-height: 220px !important;
  max-height: 220px !important;
  overflow: hidden !important; /* ignora conteúdo maior */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  }
}

/* ===== Correção de Centralização: contato-cards centralizados no mobile ===== */
@media (max-width: 768px) {
  .contato-cards {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  }
  .contato-card {
  width: 90% !important;
  max-width: 320px !important;
  margin: 10px auto !important;
  }
}

/* ===== SEÇÃO EXAMES ===== */
.exames { padding:80px 20px; background:#fff; text-align:center; }
.exames h2 { font-size:2em; margin-bottom:10px; color:#333; }
.exames p { color:#666; margin-bottom:30px; }
.exames-lista { max-width:900px; margin:0 auto; text-align:left; }
.exame-item { background:#f9f9f9; border:1px solid #ddd; border-radius:8px; margin-bottom:10px; cursor:pointer; transition:0.3s; }
.exame-item h3 { margin:0; padding:15px 20px; font-size:1.2em; color:#003366; background:#e6f4fb; }
.exame-desc { max-height:0; overflow:hidden; padding:0 20px; background:#fff; color:#555; font-size:0.95em; line-height:1.5; transition:max-height 0.4s ease, padding 0.3s ease; }
.exame-item.active .exame-desc { max-height:200px; padding:15px 20px; }

/* ===== AJUSTE EXAMES: COR PADRÃO E ÍCONE ===== */
.exame-item h3 {
  position: relative;
  margin: 0;
  padding: 15px 40px 15px 20px;
  font-size: 1.2em;
  color: #003366;
  background: #a9ddf8; /* mesma cor dos blocos NR */
  cursor: pointer;
}



/* ===== AJUSTE FINAL: SETA NO INÍCIO ===== */
.exame-item h3 {
  position: relative;
  padding: 15px 20px 15px 40px; /* espaço para a seta à esquerda */
}

.exame-item h3::before {
  content: "\25B6"; /* seta apontando para a direita */
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1em;
  color: #003366;
  transition: transform 0.3s ease;
}

.exame-item.active h3::before {
  transform: translateY(-50%) rotate(90deg); /* seta aponta para baixo ao expandir */
}

/* ===== AJUSTE FINAL: BORDAS ARREDONDADAS SUAVES ===== */
.exame-item {
  border-radius: 8px;
  overflow: hidden; /* Garante que o fundo azul siga o arredondamento */
}
.exame-item h3 {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

/* ===== CORREÇÃO ESPAÇAMENTO FINAL EXAMES ===== */
.exames {
  padding: 80px 20px 40px 20px !important; /* reduz o espaço inferior */
  margin-bottom: 0 !important; /* remove margens extras */
}

/* === AJUSTE FINAL HEADER: BARRA MAIS FINA SEM MUDAR LOGO === */
header {
  height: 75px !important;    /* altura exata mais fina */
  overflow: hidden !important;
  padding: 0 !important;      
  display: flex;
  align-items: center;        /* centraliza conteúdo */
}

/* === HEADER FINAL COM MAIS RESPIRO PARA O LOGO === */
header {
  height: 85px !important;   /* altura ajustada */
  overflow: hidden !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
}


/* === CARROSSEL HERO COM FADE === */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 150, 200, 0.10); /* Azul bem suave */
  backdrop-filter: none; /* Remove escurecimento */
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* ===== TEXTO HERO COM SOMBRA SUAVE ===== */
.hero h1, .hero p {
  color: #ffffff;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6), 
               0 0 3px rgba(255, 255, 255, 0.2);
}
