:root {
  /* Cores principais */
  --azul-principal: #051D40;
  --azul-profundo: #001F3F;
  --azul-secundario: #0E2B46;

  /* Tons turquesa / verde água (identidade da marca) */
  --verde-agua: #00BFA5;
  --turquesa: #0097A7;
  --turquesa-claro: #08A3AC;
  --turquesa-brilhante: #0ACEC9;

  /* Apoio */
  --cinza: #F5F5F5;
  --branco: #FFFFFF;
  --preto: #1C1C1C;

  /* Destaque / ação */
  --accent: #00FFF8;

  /* Gradiente padrão */
  --gradient-principal: linear-gradient(135deg, #051D40, #0097A7);

  /* Tipografia */
  --font-titulo: 'Montserrat', sans-serif;
  --font-texto: 'Open Sans', sans-serif;
}

/* HERO COM IMAGEM DE FUNDO ESCURECIDA */


.hero-bg-regulacao {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('assets/img/regulacao.jpg') center center/cover no-repeat; 
  filter: blur(2px) brightness(0.6); 
  z-index: 0;
  pointer-events: none;
}

.hero-content-centered {
  position: relative;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 24, 0.65); /* ESCURECIMENTO DA IMAGEM */
  z-index: 1;
  pointer-events: none;
}


.hero-bg-effect {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(24,24,24,0.65); 
  z-index: 0;
  pointer-events: none;

}


.hero-bg-blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* O blur é aplicado na div transparente, não na imagem diretamente */
  backdrop-filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}


.hero-center-wrapper {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  color: white;
}

.hero-content-centered h1,
.hero-center-wrapper h1 {
  
  color: #fff;
  font-family: 'Montserrat', serif;
  font-weight: 500;
  margin-bottom: 2.2rem;
  letter-spacing: 1px;
  line-height: 1.4;
  text-shadow: 0 2px 14px rgba(24,24,24,0.17);
}

.btn-cta.btn-fale {
  background: #00bfa5;
  color: #fff;
  border-radius: 4px;
  padding: 1.2rem 2.5rem;
  font-size: 1.13rem;
  font-weight: bold;
  box-shadow: 0 2px 16px rgba(203,157,58,0.10);
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.22s;
  text-decoration: none;
  display: inline-block;
}

.btn-cta.btn-fale:hover {
  background: #fff;
  color: #00bfa5;
  box-shadow: 0 4px 24px rgba(203,157,58,0.18);
  border: 1.5px solid #00bfa5;
}

/* Responsivo HERO */
@media (max-width: 700px) {
  .hero-bg-escritorio { min-height: 340px; }
  .hero-content-centered { min-height: 220px; }
  .hero-content-centered h1,
  .hero-center-wrapper h1 { font-size: 1.08rem; }
  .btn-cta.btn-especialista { padding: 0.85rem 1.2rem; font-size: 0.99rem; }
}


/* EVITA SCROLL HORIZONTAL GLOBAL */
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Garante box-sizing border-box em tudo */
*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--cinza);
  color: var(--preto);
  margin: 0;
}

/* CONTAINER AJUSTADO */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: #001636;
  color: var(--branco);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 12px rgba(24,24,24,0.07);
  overflow: visible; 
}

body {
  padding-top: 88px; 
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  position: relative;
  z-index: 2;
  height: 80px; 
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.logo img {
  height: 30rem;          
  width: auto;
  position: absolute;
  top: 50%;
  left: -60%;
  transform: translateY(-50%);
  pointer-events: auto;
}

/* NAV */
.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--branco);
  font-weight: bold;
  position: relative;
  padding: 0.3rem 0;
  font-size: 20px;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-list a.active,
.nav-list a:hover {
  color: #00bfa5;
}

.nav-list a.active::after,
.nav-list a:hover::after {
  
  display: block;
  width: 60%;
  margin: 2px auto 0 auto;
  border-radius: 1px;
}

/* REMOVE O HAMBURGER */
.hamburger {
  display: none !important;
}

/* NAV RESPONSIVO */
@media (max-width: 800px) {
  .nav-list {
    flex-direction: row;
    background: none;
    position: static;
    width: auto;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    padding: 0;
    gap: 1rem;
  }
}

/* SOBRE */
.sobre-classico {
  background: var(--cinza);
  padding: 4rem 0;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 2fr 1.3fr;
  gap: 2.5rem;
  align-items: center;
}

.sobre-nos-label {
  color: #146056;
  font-size: 35px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
  display: block;
}

.sobre-texto h2 {
  color: var(--preto);
  font-size: 2.6rem;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 1.5px;
}

.sobre-texto p {
  color: #2c2c2c;
  font-size: 1.11rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.sobre-img img {
  width: 100%;
  max-width: 390px;
  border-radius: 10px;
  box-shadow: 0 3px 32px rgba(0,0,0,0.08);
  background: #e9e5df;
  display: block;
  margin: 0 auto;
}

/* SOLUÇÕES  */
.solucoes {
  background: var(--cinza);
  padding: 0.5rem 0 2rem 0;
}
.solucoes h2 {
  color: var(--dourado);
  text-align: center;
  font-size: 35px;
  margin-bottom: 2rem;
}
.solucoes-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

.solucoes-card {

  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(24, 24, 24, 0.07);
  transition: box-shadow 0.3s, transform 0.3s;
  flex: 1 1 30%;
  max-width: 32%;
  min-width: 250px;
  padding: 2rem 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
  transition: box-shadow 0.3s cubic-bezier(.25,.8,.25,1), transform 0.3s cubic-       bezier(.25,.8,.25,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  will-change: box-shadow, transform;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
.solucoes-card:hover {
  box-shadow: 0 10px 32px 0 rgba(24, 24, 24, 0.18), 0 2px 10px rgba(0,0,0,0.10);
  transform: scale(1.015); 
  z-index: 3;
}
.solucoes-card i, .solucoes-card svg {
  color: #00bfa5;
  margin-bottom: 1rem;
}
.solucoes-card h3 {
  color: var(--dourado);
  margin-bottom: 0.5rem;
}

/* DIFERENCIAS  */

.diferenciais {
  background:#0f172a;
  color: #fff;
  padding: 80px 20px;
}

.diferenciais h2 {
  text-align: center;
  margin-bottom: 50px;
  font-family: 'Montserrat';
  font-size: 32px;
}

/* container */
.diferenciais-lista {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

/* item */
.diferencial-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  
  width: 100%;
  padding: 25px 30px;
  
  border-radius: 12px;
  border: 1px solid transparent;

  transition: all 0.3s ease;
  cursor: pointer;
}

/* ===== HOVER PREMIUM ===== */
.diferencial-item:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0, 191, 165, 0.4);
}

/* número */
.numero {
  font-size: 28px;
  font-weight: bold;
  color: #00BFA5;
  font-family: 'Montserrat';
  min-width: 50px; /* garante alinhamento */
  transition: 0.3s;
}

/* número no hover */
.diferencial-item:hover .numero {
  color: #0ACEC9;
}

/* conteúdo */
.diferencial-item h3 {
  margin: 0;
  font-size: 20px;
  transition: 0.3s;
}

/* título no hover */
.diferencial-item:hover h3 {
  color: #00BFA5;
}

/* descrição */
.diferencial-item p {
  margin-top: 5px;
  color: #ccc;
  font-size: 15px;
  transition: 0.3s;
}


/* descrição no hover */
.diferencial-item:hover p {
  color: #fff;
}

@media (max-width: 950px) {
  .servico-card {
    max-width: 48%;
    flex: 1 1 48%;
  }
}
@media (max-width: 600px) {
  .servico-card {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

/* DESTAQUE ADVOCACIA + MÉTRICAS + HORÁRIO */
.destaque-advocacia {
  background: linear-gradient(135deg, var(--preto) 80%, var(--dourado) 120%);
  color: var(--branco);
  padding: 3.5rem 0 0.5rem 0;
}

.destaque-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
}

.destaque-titulo h2 {
  font-size: 35px;
  font-weight: 700;
  color: var(--branco);
  margin: 0 0 1rem 0;
  letter-spacing: 1px;
}

.destaque-metricas {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.metrica-card {
  background: rgba(30,30,30,0.7);
  border-radius: 12px;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 170px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.09);
}
.metrica-numero {
  font-size: 2.6rem;
  color: var(--dourado);
  font-weight: bold;
  margin-bottom: 0.4rem;
  letter-spacing: 2px;
}
.metrica-desc {
  font-size: 1.15rem;
  color: var(--cinza);
  font-weight: 500;
}

.horario-bloco {
  background: linear-gradient(120deg, #d9b75d 0%, #cb9d3a 100%);
  color: var(--branco);
  border-radius: 18px;
  margin-top: 1rem;
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  width: 100%;
  box-shadow: 0 6px 32px rgba(24,24,24,0.09), 0 1.5px 8px rgba(203,157,58,0.12);
  max-width: 540px;
  position: relative;
  overflow: hidden;
}

.horario-bloco h3 {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 1.7rem;
  text-align: center;
  color: var(--branco);
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.horarios-lista {
  list-style: none;
  margin: 0;
  padding: 0;
}

.horarios-lista li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.1rem;
  margin-bottom: 0.5rem;
  border-radius: 12px;
  font-size: 1.11rem;
  font-weight: 500;
  background: var(--branco);
  color: var(--preto);
  box-shadow: 0 1.5px 7px rgba(24,24,24,0.04);
  transition: transform 0.22s cubic-bezier(.4,1.5,.7,1), box-shadow 0.22s cubic-bezier(.4,1.5,.7,1), background 0.22s, color 0.22s;
  cursor: pointer;
  border: none;
}

.horarios-lista li:hover:not(.fechado) {
  transform: translateY(-3px) scale(1.018);
  box-shadow: 0 4px 18px 0 rgba(203,157,58,0.10), 0 2px 10px rgba(24,24,24,0.10);
  background: linear-gradient(90deg, #fffbe6 0%, #fff 100%);
}

.horarios-lista li.fechado {
  background: rgba(203,157,58,0.16);
  color: var(--branco);
  font-style: italic;
  border: 1.3px solid rgba(203,157,58,0.46);
  box-shadow: none;
  cursor: default;
  transition: color 0.18s;
}
.horarios-lista li.fechado span:first-child {
  color: var(--branco);
}
.horarios-lista li.fechado .fechado-texto {
  color: #c14444;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(193,68,68,0.09);
  letter-spacing: 1px;
  font-style: normal;
}
.horarios-lista li.fechado:hover {
  color: var(--branco);
  background: rgba(203,157,58,0.22);
  transform: none;
  box-shadow: none;
}

/* OPINIÕES DE NOSSOS CLIENTES */
.opinioes-clientes {
  background: var(--cinza);
  padding: 4rem 0 3rem 0;
}
.opinioes-titulo {
  color: #cb9d3a;
  text-align: center;
  font-size: 35px;
  margin-bottom: 2.8rem;
  font-family: 'Montserrat', serif;
  font-weight: 600;
}
.opinioes-carousel {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.opiniao-card {
  background: var(--preto);
  color: var(--dourado);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(203,157,58,0.11);
  padding: 2.2rem 2rem 1.7rem 2rem;
  max-width: 370px;
  min-width: 260px;
  text-align: center;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.opiniao-texto {
  font-size: 1.08rem;
  font-style: italic;
  color: var(--dourado);
  margin-bottom: 2rem;
}
.opiniao-autor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.opiniao-foto {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  object-fit: cover;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 8px rgba(24,24,24,0.10);
  margin-bottom: 0.2rem;
}
.opiniao-nome {
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--dourado);
  letter-spacing: 0.5px;
}
@media (max-width: 900px) {
  .opinioes-carousel { flex-direction: column; align-items: center; }
}

/* NOSSA EQUIPE */
.nossa-equipe {
  background: var(--cinza);
  padding: 4rem 0 3rem 0;
}

.titulo-equipe {
  font-family: 'Montserrat', serif;
  font-size: 35px;
  color: var(--dourado);
  text-align: center;
  font-weight: 600;
  margin-bottom: 2.8rem;
  letter-spacing: 1px;
}

.equipe-grid {
  width: 100%;
}

.equipe-lista {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD DOS MEMBROS */
.equipe-membro {
  position: relative;
  transition: 0.3s;
}

/* EFEITO SIMPLES NO HOVER */
.equipe-membro:hover {
  transform: translateY(-5px);
}

.equipe-membro.principal {
  background: #fff;
  text-align: center;
  border: 2.5px solid #051d4012;
  padding: 2rem 1.3rem 1.2rem 1.3rem;
  box-shadow: 0 2px 22px rgba(203,157,58,0.11);
  min-width: 320px;
  max-width: 410px;
  margin-bottom: 1.1rem;
}

.equipe-foto-wrapper {
  position: relative;
  width: 100%;
  max-width: 340px;
  border-radius: 4px;
  overflow: hidden;
}

.equipe-foto-wrapper img {
  display: block;
  width: 100%;
  border-radius: 4px;
  transition: filter 0.4s cubic-bezier(.4,1.5,.7,1);
}

.equipe-overlay {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(.4,1.5,.7,1);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(24,24,24,0.07) 0%, rgba(203,157,58,0.37) 100%);
  border-radius: 4px;
}

.equipe-social-link {
  pointer-events: auto;
  background: #051d40;
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  padding: 0.65em 0.75em;
  display: inline-flex;
  border-radius: 50%;
  margin: 0 0.2em;
  box-shadow: 0 2px 8px rgba(24,24,24,0.04);
  transition: background 0.18s, color 0.18s, transform 0.18s;
  opacity: 0;
  transform: translateY(12px) scale(0.93);
}

.equipe-social-link:hover {
  background: #ffff;
  color: #051d40;
  transform: scale(1.11);
}

.equipe-foto-wrapper:hover img,
.equipe-foto-wrapper:focus-within img {
  filter: brightness(0.70) blur(1.2px);
}

.equipe-foto-wrapper:hover .equipe-overlay,
.equipe-foto-wrapper:focus-within .equipe-overlay {
  opacity: 1;
  pointer-events: auto;
}

.equipe-foto-wrapper:hover .equipe-social-link,
.equipe-foto-wrapper:focus-within .equipe-social-link {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.08s;
}

.equipe-social-link i {
  font-size: 2rem;
  color: inherit;
  line-height: 1;
}

.equipe-membro h3 {
  font-family: 'Montserrat', serif;
  font-size: 1.24rem;
  color: var(--preto);
  text-align: center;
  margin-bottom: 0.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.equipe-membro .funcao {
  color: #014f5a;
  font-size: 1.06rem;
  text-align: center;
  font-weight: 550;
  letter-spacing: 0.2px;
}

@media (max-width: 950px) {
  .equipe-lista {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .equipe-membro.principal {
    max-width: 50vw;
  }
  .equipe-foto-wrapper,
  .equipe-foto-wrapper img {
    max-width: 100%;
  }
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 540px;
  margin: 0 auto;
}
.carousel-track {
  display: flex;
  width: 100%;
  position: relative;
  min-height: 320px;
  justify-content: center;
  align-items: center;
}
.opiniao-card {
  background: var(--preto);
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(203,157,58,0.25);
  padding: 2.2rem 1.7rem 1.7rem 1.7rem;
  margin: 0 16px;
  min-width: 100%;
  opacity: 0;
  transform: scale(0.96);
  transition: box-shadow 0.3s, opacity 0.4s, transform 0.4s;
  position: absolute;
  left: 0; top: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.opiniao-card.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  position: relative;
  z-index: 1;
}
.opiniao-card:hover {
   box-shadow: 0 8px 40px 0 rgba(203,157,58,0.55), 0 1.5px 4px rgba(0,0,0,0.07);
}
.opiniao-foto {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: none;
  border-radius: 50%;
  margin-bottom: 1.1rem;
}
.opiniao-texto {
  font-size: 1.05rem;
  text-align: center;
  margin-bottom: 1.2rem;
  color: var(--branco);
  font-family: 'Montserrat', sans-serif;
}
.opiniao-nome {
  font-weight: bold;
  letter-spacing: 1px;
  color: var(--branco);
  font-size: 1rem;
}
.carousel-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  outline: none;
  z-index: 2;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.carousel-arrow svg {
  stroke: #a27e2f;
  transition: stroke 0.2s;
}
.carousel-arrow:hover svg {
  stroke: var(--preto);
}
.carousel-arrow svg {
  display: block;
}
.carousel-arrow:hover {
  opacity: 1;
}
.carousel-arrow:focus {
  outline: none;
}
.carousel-dots {
  text-align: center;
  margin-top: 1.2rem;
}
.carousel-dots .dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #cb9d3a;  
  margin: 0 5px;
  transition: background 0.2s, opacity 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.carousel-dots .dot.active {
  background: #222;
  border: none;
}

@media (max-width: 600px) {
  .opiniao-card { padding: 1.3rem 0.5rem 1rem 0.5rem; }
  .carousel { max-width: 99vw; }
}

/* Garante que imagens e iframes nunca causem overflow */
img, iframe {
  max-width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}
/* CONTATO */
.contato-profissional {
  padding: 70px 0;
  background: #0f172a; /* azul escuro elegante */
  color: #fff;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXTO */
.contato-titulo {
  font-size: 32px;
  margin-bottom: 15px;
}

.contato-descricao {
  color: #cbd5e1;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* ITENS */
.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}


 .contato-item i {
    color: #00fff8;
    font-size: 1.8rem;
    min-width: 32px;
   
    margin-top: 20px;
}
.fa-solid, .fas {
    font-weight: 900;
}


.contato-item a {
  color: #fff;
  text-decoration: none;
}

.contato-item a:hover {
  color: #00bfa5;
}

/* SOCIAL */
.contato-social {
  margin-top: 25px;
}

.contato-social a {
  color: #fff;
  margin-right: 25px;
  font-size: 35px;
  transition: 0.3s;
}

.contato-social-titulo {
  font-size: 20px;
  color: #ffff;
  
}

.contato-social a:hover {
  color: #00fff8;
}

/* FORM */
.contato-formulario {
  background: #111827;
  padding: 30px;
  border-radius: 12px;
}

.form-group,
.form-full {
  margin-bottom: 15px;
}

.contato-formulario input,
.contato-formulario textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #1f2937;
  color: #fff;
  outline: none;
}

.contato-formulario input::placeholder,
.contato-formulario textarea::placeholder {
  color: #9ca3af;
}

/* BOTÃO */
.contato-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #22c55e;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contato-btn:hover {
  background: #fff;
  
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;

  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  z-index: 9999;

  text-decoration: none;
  transition: 0.3s;
}

/* HOVER */
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* Adaptativo */
@media (max-width: 950px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sobre-img img {
    max-width: 320px;
  }
  .contato-grid { flex-direction: column; gap: 2rem; }
  .contato-info-bloco, .contato-formulario { min-width: 100%; }
  .contato-profissional { padding: 2rem 0.6rem 0 0.6rem; }
}

@media (max-width: 950px) {
  .container { padding: 0 1rem; }
  .hero-content, .sobre-flex, .servicos-flex, .contato-flex {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .hero-img img, .sobre-img img {
    width: 95vw;
    max-width: 370px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .servico-card {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .contato-formulario { padding: 1rem 0.2rem 1rem 0.2rem; }
  .contato-titulo { font-size: 1.5rem; }
  .nav-list { gap: 1rem; font-size: 0.98rem; }
  .logo img { height: 42px; }
  .btn-cta { font-size: 0.97rem; padding: 0.6rem 1.3rem; }
  .container { padding: 0 0.5rem; }
  .footer { font-size: 0.95rem; }
  .hero-text h1 { font-size: 2rem; }
  .horario-bloco { padding: 1.2rem 0.5rem; }
  .horario-bloco h3 { font-size: 1.08rem; }
  .horarios-lista li { font-size: 0.97rem; padding: 0.7rem 0.5rem; }
}

.contato-mapa {
  width: 100vw;
  max-width: 100%;
  background: #fff;
  text-align: center;
}


CSS
/* FORMULÁRIO DE CONTATO  */
#contato-form,
.contato-formulario {
  background: #faf9f7;
  border: 2.5px solid #0acec9;
  border-radius: 10px;
  padding: 2.2rem 2rem 2rem 2rem;
  box-shadow: 0 2px 12px rgba(203,157,58,0.11);
  max-width: 520px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem 2%;
}

.form-group {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.8rem;
}
.form-full {
  flex: 1 1 100%;
}

#contato-form label,
.contato-formulario label {
  font-size: 1rem;
  color: #0acec9;
  margin-bottom: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

#contato-form input,
#contato-form textarea,
.contato-formulario input,
.contato-formulario textarea {
  border: 1.5px solid #00fff8;
  border-radius: 5px;
  padding: 0.85rem;
  font-size: 1rem;
  background: #fff;
  color: #181818;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: border 0.2s, box-shadow 0.2s;
  margin-bottom: 0.3rem;
  resize: none;
  box-sizing: border-box;
}

#contato-form input:focus,
#contato-form textarea:focus,
.contato-formulario input:focus,
.contato-formulario textarea:focus {
  border-color: #08a3ac;
  outline: none;
  box-shadow: 0 2px 8px rgba(203,157,58,0.13);
}

.contato-formulario {
 margin-top: 0;
    display: flex;
    flex-direction: column;
}


.contato-info-bloco {
  margin-top: 20px;
}

#contato-form button,
.contato-formulario button,
.contato-btn {
  width: 100%;
  background: #00bfa5;
  color: #fff;
  font-weight: 700;
  font-size: 1.11rem;
  border: none;
  border-radius: 5px;
  padding: 1rem 0;
  letter-spacing: 1px;
  box-shadow: 0 2px 12px rgba(203,157,58,0.10);
  margin-top: 0.8rem;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
#contato-form button:hover,
.contato-formulario button:hover,
.contato-btn:hover {
  background: #ffff;
  color: #00bfa5;
}

.contato-formulario textarea,
#contato-form textarea {
  min-height: 180px;
  width: 100%;
}

/* Mensagem de sucesso personalizada */
#mensagem-sucesso {
  margin-top: 1.6rem;
  padding: 1rem 1.2rem;
  border-radius: 7px;
  background: #f3eddc;
  color: #237800;
  font-weight: 600;
  text-align: center;
  font-size: 1.09rem;
  border: 1.5px solid #00fff8;
  box-shadow: 0 2px 12px rgba(203,157,58,0.08);
}

/* Responsividade */
@media (max-width: 600px) {
  #contato-form,
  .contato-formulario {
    padding: 1.2rem 0.4rem 1.2rem 0.4rem;
    max-width: 99vw;
    gap: 1rem 0;
  }
  .form-group,
  .form-full {
    flex: 1 1 100%;
  }
  #contato-form button,
  .contato-formulario button,
  .contato-btn {
    font-size: 1rem;
    padding: 0.85rem 0;
  }
  #mensagem-sucesso {
    font-size: 1rem;
    margin-top: 1.2rem;
  }
}
.mapa-grupos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.mapa-endereco {
  width: 100%;
  max-width: 420px;
  margin: 0 1rem;
}
.mapa-endereco h3 {
  margin-bottom: 0.8rem;
  color: #00fff8;
  font-size: 1.2rem;
  font-weight: bold;
}
.mapa-wrapper {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px 0 rgba(203,157,58,0.18);
  margin-bottom: .5rem;
}
.mapa-wrapper iframe {
  width: 100%;
  min-height: 220px;
  height: 35vw;
  max-height: 350px;
  border: none;
  display: block;
}
@media (max-width: 900px) {
  .mapa-grupos {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .mapa-endereco {
    max-width: 100%;
  }
}

/* FOOTER */
.footer {
  
  color: var(--azul-principal);
  text-align: center;
  padding: 1.2rem 0;
  margin-top: 2rem;
  font-size: 20px;
  letter-spacing: 1px;
}