/* Reset e estrutura global */
.menu-flutuante {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background-color: transparent;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.menu-container {
  background: linear-gradient(to right, #f0f2f5, #dbe4f1);
  border-radius: 16px;
  padding: 0.6rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.logo-header {
  height: 50px;
  margin-right: 1.5rem;
}

.logo-nav {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin: 0 0.8rem;
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #d2691e;
}

.menu-acoes {
  display: flex;
  gap: 0.6rem;
}

.btn-acao {
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: white;
  transition: background 0.3s ease;
}

.azul {
  background-color: #d2691e;
}

.azul:hover {
  background-color: #b85b1a;
}

.azul-claro {
  background-color: #d2691e;
}

.azul-claro:hover {
  background-color: #b85b1a;
}
.confianca {
  background-color: #f9fbff;
  padding: 4rem 2rem;
  text-align: center;
}

.confianca h2 {
  color: #222;
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.conquistas-confianca {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.bloco {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bloco img {
  height: 48px;
  margin-bottom: 1rem;
}

.bloco p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.4;
}

.bloco strong {
  display: block;
  font-size: 1.5rem;
  color: #d2691e;
  margin-bottom: 0.2rem;
}

/* Estilo do botão */
.modo-dark {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #d2691e;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1100;
}

/* Modo escuro geral */
body.dark-mode {
  background-color: #121212;
  color: #f1f1f1;
}

body.dark-mode .nav-links a {
  color: #000000;
}

body.dark-mode .nav-links a:hover {
  color: #d2691e; /* cor de destaque ao passar o mouse */
}

body.dark-mode .menu-acoes a {
  color: #fff;
}


body.dark-mode section,
body.dark-mode .cadastro-container,
body.dark-mode .card,
body.dark-mode header,
body.dark-mode footer {
  background-color: #1e1e1e !important;
  color: #f1f1f1;
}

body.dark-mode a {
  color: #f1f1f1;
}
body.dark-mode {
  background-color: #121212;
  color: #f1f1f1;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode p,
body.dark-mode label,
body.dark-mode li,
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
  color: #f1f1f1;
}

body.dark-mode .card,
body.dark-mode .form-box,
body.dark-mode .form-texto,
body.dark-mode .cadastro-container,
body.dark-mode section,
body.dark-mode .plano,
body.dark-mode footer,
body.dark-mode header,
body.dark-mode .menu-container {
  background-color: #1e1e1e !important;
  color: #f1f1f1;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
  background-color: #2b2b2b;
  border: 1px solid #555;
}

body.dark-mode .btn-acao,
body.dark-mode .btn-plano,
body.dark-mode button {
  background-color: #d2691e;
  color: #fff;
}

body.dark-mode .btn-acao:hover,
body.dark-mode .btn-plano:hover,
body.dark-mode button:hover {
  background-color: #b85b1a;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .menu-acoes a {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Header fixo */
header {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header div {
  font-weight: bold;
  font-size: 1.4rem;
  color: #d2691e;
}

nav a {
  margin: 0 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #d2691e;
}

/* Seções */
section {
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #222;
  text-align: center;
}

/* HERO */
.hero {
  background: #fff;
  padding: 5rem 5%;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: nowrap;
  max-width: 1200px;
  width: 100%;
}

.hero-texto {
  flex: 1;
  min-width: 300px;
}

.hero-texto h1 {
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 1.2rem;
}

.hero-texto p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-texto button {
  background: #d2691e;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-texto button:hover {
  background: #b85b1a;
}

.hero-imagem {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.duas-imagens {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.duas-imagens img {
  width: 320px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card h3 {
  color: #d2691e;
  margin-bottom: 1rem;
}

.card p {
  color: #555;
  font-size: 0.95rem;
}

.funcionalidade {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.funcionalidade img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-top: 5px;
}

.funcionalidade h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #333;
}

.funcionalidade p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

/* Agendamento */
#agendamento {
  background-color: #f1f1f9;
  padding: 4rem 5%;
  display: flex;
  justify-content: center;
}

.form-container {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  max-width: 1100px;
  width: 100%;
}

.form-texto {
  flex: 1;
  padding: 2rem 3rem;
}

.form-texto h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.form-texto p {
  margin-bottom: 1.2rem;
  color: #555;
}

.form-texto ul {
  list-style: none;
  padding-left: 0;
}

.form-texto li {
  margin-bottom: 0.5rem;
  color: #444;
}

.form-box {
  flex: 1;
  padding: 2rem 3rem;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-box label {
  font-weight: 500;
  color: #333;
}

.form-box input,
.form-box textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.form-box textarea {
  resize: vertical;
  min-height: 100px;
}

.form-box button {
  background-color: #d2691e;
  color: white;
  border: none;
  padding: 1rem;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-box button:hover {
  background-color: #b85b1a;
}

.whatsapp-float-min {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  border: none;
  box-shadow: none;
}

.whatsapp-float-min i {
  color: white;
  font-size: 22px;
}

.whatsapp-float-min:hover {
  background-color: #1da851;
  transform: scale(1.05);
}
/* Contato */
#contato p {
  text-align: center;
  font-size: 1rem;
}

#contato a {
  color: #d2691e;
  text-decoration: none;
}

#contato a:hover {
  text-decoration: underline;
}
.footer-novo {
  background-color: #3c3e4a;
  color: #fff;
  padding: 3rem 5%;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-esquerda {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 100px;
  width: auto;
  max-width: 45%;
  margin-right: 1.9rem;
  justify-content: center;
}

.footer-direita {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.footer-direita ul {
  list-style: none;
  padding: 0;
  text-align: right;
}

.footer-direita ul li {
  margin-bottom: 0.3rem;
}

.footer-direita ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
}

.footer-direita ul li a:hover {
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-icons a {
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
}

.social-icons img {
  height: 18px;
  width: 18px;
}

.planos {
  background: #f9fbff;
  padding: 5rem 2rem;
  text-align: center;
}

.planos h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.planos .subtitulo {
  color: #666;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.cards-planos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.plano {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  position: relative;
}

.plano h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.plano .preco {
  font-size: 1.8rem;
  color: #d2691e;
  margin-bottom: 0.2rem;
}

.plano .info {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.plano ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left;
}

.plano ul li {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.5rem;
}

.btn-plano {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #ffa500;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn-plano:hover {
  background: #e28a00;
}

.destaque {
  border: 2px solid #00bfa5;
}

.destaque .tag {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #00bfa5;
  color: white;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 12px;
}


/* Responsivo */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  header {
    justify-content: center;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .duas-imagens {
    flex-direction: column;
    align-items: center;
  }

  .duas-imagens img {
    width: 100%;
    max-width: 320px;
  }

  .hero-texto h1 {
    font-size: 2rem;
  }

  .hero-texto p {
    font-size: 1rem;
  }

  .form-container {
    flex-direction: column;
  }

  .form-texto,
  .form-box {
    padding: 2rem;
  }
 
  
}
