/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
}

/*------------------------------------
  TOP BAR (WhatsApp)
------------------------------------*/
.top-bar {
  background: linear-gradient(to right, #25d366, #128c7e);
  color: #fff;
  text-align: center;
  margin: 0;
  font-size: 1em;
  font-weight: bold;
  display: flex;
  justify-content: center; /* ou space-around, space-between, etc. */
  align-items: center;
  gap: 1em; /* espaço horizontal entre spans */
  padding: 0.3em;
}
.barra-separador {
  opacity: 0.7; /* só para ficar mais suave */
}
.sede-info {
  font-weight: normal;
  /* ou qualquer estilo desejado */
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}
.top-bar a:hover {
  text-decoration: underline;
}
.top-bar i {
  margin-right: 0.5em;
}
.texto-gradient {
  /* Gradiente horizontal de um tom de verde-limão para um verde-azulado */
  background: linear-gradient(to right, #59ffb1, #00c896);

  /* Necessário para “recortar” o background */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Recomenda-se repetir em background-clip “text” padrão */
  background-clip: text;
}

/*------------------------------------
  HEADER (logo + wave atrás)
------------------------------------*/
.header {
  position: relative;
  /* Mínima altura para não “cortar” a logo */
  min-height: 80px;
  /* Gradiente do azul-escuro para o laranja do logo (ajuste se quiser) */
  background: linear-gradient(to right, #07151f, #f47b3a);

  display: flex;
  align-items: center;
  justify-content: center; /* centraliza no desktop; mude se quiser */
  padding: 1em;
  margin: 0;
  border: none;
  overflow: visible;
}

/* A onda (z-index menor) */
.header-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1; /* atrás do logo/menu */
  opacity: 25%;
}

/* LOGO E MENU (z-index maior) */
.logo,
.menu-icon {
  position: relative;
  z-index: 2;
}

.logo-img {
  height: 50px;
  width: auto;
}

/* Ícone do menu hamburger (mobile) */
.menu-icon {
  font-size: 1.4em;
  cursor: pointer;
  margin-left: 1em;
}

/*------------------------------------
  MENU MOBILE LATERAL
------------------------------------*/
.mobile-nav {
  position: fixed;
  top: 0;
  right: -200px;
  width: 200px;
  height: 100vh;
  background-color: #07151f;
  transition: right 0.3s ease;
  padding-top: 4em;
  z-index: 999;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
}
.mobile-nav li {
  margin: 1em 0;
  text-align: center;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
}
.mobile-nav a:hover {
  text-decoration: underline;
}
.mobile-nav.show {
  right: 0;
}
.local-itapema {
  display: flex; /* colado lado a lado no desktop */
  position: relative;
  flex-wrap: wrap; /* se ficar apertado, quebra linha no mobile */
  align-items: center;
  justify-content: space-around;
  gap: 2em; /* espaço entre texto e foto */
  padding: 1px;
  padding-top: 10px;
  padding-bottom: 20px;
  background: linear-gradient(
    to bottom,
    /* começa quase branco */ #fafafa 0%,
    /* ainda bem claro até uns 70% */ #fafafa 70%,
    /* escurece no final, combinando com a hero */ #2c6b8a 100%
  );
  max-width: 1200px;
  overflow: hidden;
  text-align: center;
}

.local-itapema .texto-local {
  flex: 1; /* cresce para ocupar espaço */
  max-width: 500px;
}

@media (max-width: 768px) {
  .local-itapema {
    flex-direction: column;
  }
  .local-itapema .imagem-local img {
    max-width: 70%;
  }
}

/*------------------------------------
  HERO (gradiente + card)
------------------------------------*/
.hero {
  min-height: 240px;
  background: linear-gradient(to bottom, #2c6b8a 0%, #04395e 50%, #01243d 100%);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding: 45px;
}
.hero h1 {
  font-size: 1.4em;
  margin-bottom: 0.5em;
  padding: 16px;
}
.hero h1 span {
  color: #59ffb1;
  font-weight: bold;
}
.hero p {
  font-size: 1em;
  max-width: 400px;
  margin: 0.5em auto 2em auto;
}
.hero-sede {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;

  padding: 1em 1.5em;
  margin-top: 2em;

  background-color: #01243d;
  color: #8dffca;

  border-radius: 25px; /* maior = formato “pill” */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-sede i {
  color: #ffa777;
}

.hero-sede h2 {
  font-size: 1em;
  margin: 0;
  /* Mesma linha que o ícone */
}

.card {
  background-color: #1b3b56;
  color: #fff;
  border-radius: 6px;
  padding: 1.5em;
  margin: 0 auto;
  max-width: 320px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.card h2 {
  margin-bottom: 1em;
  font-size: 1.2em;
  text-align: center;
}
.label-pergunta {
  display: block;
  margin-bottom: 0.5em;
  font-weight: 600;
}
select {
  width: 100%;
  padding: 0.5em;
  margin-bottom: 1em;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1em;
}
.btn-continuar {
  width: 100%;
  background-color: #00d167;
  color: #fff;
  border: none;
  font-size: 1em;
  padding: 0.8em;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
}
.btn-continuar:hover {
  background-color: #00a354;
}

/*------------------------------------
  STATS
------------------------------------*/
.stats {
  text-align: center;
  background-color: #fff;
  color: #333;
  padding: 2em 1em;
}
.stats-box {
  background: linear-gradient(#044060, #011726);
  color: #fff;
  border-radius: 1em;
  margin: 0 auto 0em;
  max-width: 320px;
  padding: 1.5em 1em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.stats-line {
  margin: 0.8em 0;
}
.stats-line h3 {
  font-size: 1.4em;
  margin: 0;
}
.stats-line p {
  font-size: 0.9em;
  margin: 0.3em 0 0 0;
}
.divider {
  width: 100%;
  height: 1px;
  background: #fff;
  margin: 0.8em 0;
  opacity: 0.5;
}
.especialistas-titulo {
  font-size: 1.2em;
  margin-bottom: 0.5em;
  color: #00315f;
}
.especialistas-texto {
  max-width: 320px;
  margin: 0 auto;
  font-size: 1em;
}

/*------------------------------------
  PROBLEMAS
------------------------------------*/
.problemas {
  background-color: #f2f2f2;
  padding: 2em 1em;
  text-align: center;
}
.secao-titulo {
  font-size: 1.3em;
  color: #00315f;
  margin-bottom: 1em;
}
.problema-card {
  background: linear-gradient(#044060, #011726);
  color: #fff;
  border-radius: 8px;
  max-width: 320px;
  margin: 1em auto;
  padding: 1.5em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.problema-card h3 {
  margin-bottom: 0.5em;
  font-size: 1.2em;
}
.problema-card p {
  margin-bottom: 1em;
  font-size: 0.95em;
  line-height: 1.4;
}
.btn-problema {
  background-color: #00d167;
  color: #fff;
  border: none;
  padding: 0.7em 1em;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9em;
  text-decoration: none; /* remove sublinhado */
}
.btn-problema:hover {
  background-color: #00a354;
}

/*------------------------------------
  COMO FUNCIONA
------------------------------------*/
.como-funciona {
  background-color: #fff;
  padding: 2em 1em;
  text-align: center;
}
.como-funciona h2 {
  font-size: 1.3em;
  color: #00315f;
  margin-bottom: 0.5em;
}
.como-subtitulo {
  font-size: 0.95em;
  margin-bottom: 2em;
  color: #555;
}
.passo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2em;
}
.passo-numero {
  background-color: #00315f;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
}
.passo-texto {
  max-width: 300px;
}
.passo-texto h3 {
  font-size: 1em;
  margin-bottom: 0.3em;
  color: #00315f;
}
.passo-img {
  margin-top: 1em;
  width: 80px;
  height: 80px;
}

/*------------------------------------
  RENOVE
------------------------------------*/
.renove {
  background: linear-gradient(to bottom, #04395e, #0d1d2a);
  color: #fff;
  text-align: center;
  padding: 2em 1em;
}
.renove h2 {
  font-size: 1.3em;
  margin-bottom: 0.5em;
}
.renove p {
  max-width: 320px;
  margin: 0 auto;
  font-size: 0.95em;
}

/*------------------------------------
  SIM, VOCÊ PODE
------------------------------------*/
.sim-voce-pode {
  background-color: #f2f2f2;
  padding: 2em 1em;
  text-align: center;
}
.sim-voce-pode h2 {
  color: #00315f;
  font-size: 1.3em;
  margin-bottom: 1em;
}
.img-sim-voce-pode {
  max-width: 200px;
  margin-bottom: 1em;
}
.sim-voce-pode p {
  max-width: 320px;
  margin: 0.5em auto;
  line-height: 1.4;
}
.btn-avaliacao-gratuita {
  margin-top: 1em;
  background-color: #ff2222;
  color: #fff;
  border: none;
  padding: 0.8em 1.2em;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  text-transform: uppercase;
}
.btn-avaliacao-gratuita:hover {
  background-color: #cc0000;
}

/*------------------------------------
  CONTATO CTA
------------------------------------*/
.contato-cta {
  background-color: #fff;
  text-align: center;
  padding: 2em 1em;
}
.contato-cta h2 {
  font-size: 1.2em;
  margin-bottom: 1em;
  color: #00315f;
}
.btn-whatsapp {
  text-decoration: none; /* remove sublinhado */
  display: inline-block; /* permite aplicar margens, etc. */
  background-color: #00e676; /* cor do botão */
  color: #fff; /* cor do texto */
  padding: 0.8em 1.2em;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  /* qualquer outro estilo do seu botão */
}

.btn-whatsapp:hover {
  background-color: #00b248; /* cor de hover */
}

/*------------------------------------
  RODAPÉ
------------------------------------*/
.footer {
  background-color: #0d1d2a;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em 1em;
  text-align: center;
}
.footer .transparencia,
.footer .contato-final {
  margin-bottom: 1.5em;
}
.footer h3 {
  margin-bottom: 0.5em;
}
.footer p {
  font-size: 0.9em;
  line-height: 1.4;
}
.copy {
  font-size: 0.8em;
  opacity: 0.7;
}

/*------------------------------------
  RESPONSIVIDADE
------------------------------------*/
@media screen and (min-width: 768px) {
  .menu-icon {
    display: none; /* esconde o hamburger no desktop */
  }
  .mobile-nav {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    transition: none;
    padding-top: 0;
    display: flex;
    justify-content: flex-end;
    margin-right: 1em;
  }
  .mobile-nav ul {
    display: flex;
    gap: 1em;
  }
  .mobile-nav li {
    margin: 0;
  }
  .mobile-nav a {
    color: #00315f;
    font-weight: bold;
  }

  /* Passos em linha (Como Funciona) */
  .passo {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1em;
  }
  .passo-numero {
    margin-bottom: 0;
  }
  .passo-img {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  /* Centraliza header no mobile */
  .header {
    justify-content: center;
  }
  /* O menu-icon fica no canto direito */
  .menu-icon {
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
  }
}
