/* GERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #121212;
  color: #f0f0f0;
  line-height: 1.6;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* HEADER */
header {
  background: #000;
  color: #fff;
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  max-height: 100px;
  width: auto;
  display: block;
}

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

nav a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fbfaff; /* cor da linha */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

nav a:hover {
  color: #ffffff;
}

nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* HERO */
.hero-full {
  position: relative;
  height: 100vh;
  background: url('imagem_2025-06-25_163318437.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-full .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 1rem;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 20px;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ddd;
}

.cta-btn {
  background: #fff;
  color: #000;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  margin: 0.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #ddd;
}

/* SEÇÕES */
.sobre, .servicos, .contato {
  background-color: #181818;
  padding: 4rem 0;
}

.sobre h3, .servicos h3, .contato h3 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sobre p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #ccc;
}

.contato p {
  text-align: center;
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

/* CARDS */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  background: #1f1f1f;
  padding: 2rem;
  border-radius: 16px;
  flex: 1 1 300px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.card img {
  height: 160px;
  margin-bottom: 1rem;
  object-fit: contain;
  border-radius: 8px;
}

.card h4 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
}

.card p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* FORMULÁRIO */
form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input, form textarea {
  padding: 1rem;
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  font-size: 1rem;
  color: #fff;
  transition: border 0.3s ease;
  width: 100%;
}

form input:focus, form textarea:focus {
  border-color: #6a5acd;
  outline: none;
}

form input::placeholder, form textarea::placeholder {
  color: #888;
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

form .btn {
  width: fit-content;
  align-self: flex-start;
  background-color: #000000;
  color: #fff;
  font-weight: bold;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 8px;
  transition: background 0.3s ease;
  cursor: pointer;
}

form .btn:hover {
  background-color: #7b7a80;
}

/* RODAPÉ */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.whatsapp-flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #000000; /* cor verde oficial */
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-flutuante:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

body.light-mode .whatsapp-flutuante {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
/* TEMA */
#theme-toggle {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 1.4rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1100;
  transition: background 0.3s ease;
}

#theme-toggle:hover {
  background: #333;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero-full {
    height: 60vh;
    background-position: center top;
    background-size: cover;
  }

  .hero-content h1 {
    font-size: 2rem;
    padding: 0 1rem;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .cards {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    max-height: 60px;
  }

nav ul {
  flex-direction: column;
  background: #000;
  padding: 0.5rem 1rem;
  position: absolute;
  top: 60px;
  right: 10px;
  width: 160px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  z-index: 1001;
  display: none;
}

nav.active ul {
  display: flex;
}

nav ul li {
  margin-bottom: 0.5rem;
}

nav ul li:last-child {
  margin-bottom: 0;
}

nav ul li a {
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem; /* menor fonte */
  padding: 6px 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

nav ul li a:hover {
  color: #fcfcfc;
}

nav ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    color: #fff;
    user-select: none;
  }
}
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  #theme-toggle {
    position: static;
    margin-left: 1rem;
    background: none;
    padding: 0;
    font-size: 1.5rem;
    cursor: pointer;
    user-select: none;
  }
}

/* MODO CLARO */
body.light-mode {
  background-color:  #b6b4b4;
  color: #131313;
}

body.light-mode .card {
  background: #1f1f1f;
  color: #faf8f8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

body.light-mode .card p {
  color: #e4dede;
}

body.light-mode .sobre,
body.light-mode .servicos,
body.light-mode .contato {
  background-color: #ece8e8;
  text-decoration: none;
}

body.light-mode form input,
body.light-mode form textarea {
  background-color: #242121;
  border: 1px solid #999595;
  color: #111;
}

body.light-mode form input::placeholder,
body.light-mode form textarea::placeholder {
  color: #faf8f8;
}

body.light-mode .hero-content h1,
body.light-mode .hero-content p {
  color:white;
}

body.light-mode .sobre p {
  color: #000;
}

body.light-mode .servicos p {
  color: rgb(255, 255, 255);
}

body.light-mode .contato p {
  color: #000;
}

body.light-mode .card h4 {
  color: #fffcfc;
}

body.light-mode footer {
  background-color: #050505;
  color: #fff;
}



.info a {
  text-decoration: none;
  color: #fff;
}

body.light-mode .info a {
  text-decoration: none;
  color: #000;
}
body.light-mode .sobre h3,
body.light-mode .servicos h3,
body.light-mode .contato h3 {
  color: #111; /* Cor escura visível no fundo claro */
}

.logo-img {
  max-height: 120px;
  width: auto;
  display: none;
}

/* Mostrar imagem branca no modo escuro */
body:not(.light-mode) .logo-dark {
  display: block;
}

/* Mostrar imagem preta no modo claro */
body.light-mode .logo-light {
  display: block;
}
.logo-section {
  padding: 30px 0;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logobot {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Estilo exclusivo para página com cards maiores */
body.pagina-cards-grandes .servicos .card {
  width: 100%;
  max-width: 420px;
  background-color: #1a1a1a;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.pagina-cards-grandes .servicos .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

body.pagina-cards-grandes .servicos .card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* Força proporção horizontal */
  object-fit: cover; /* Preenche o espaço sem distorcer */
  border-radius: 12px;
  margin-bottom: 1rem;
}

body.pagina-cards-grandes .servicos .card h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

body.pagina-cards-grandes .servicos .card p {
  font-size: 1.05rem;
  line-height: 1.6;
}

body.pagina-cards-grandes .servicos .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
}
body.pagina-cards-grandes .servicos .card img {
  width: 100%;
  max-width: 200px; /* controla o tamanho máximo */
  height: auto; /* mantém proporção */
  display: block;
  margin: 0 auto 1rem auto;
  object-fit: contain;
}
/* ================= LOGOS DE CLIENTES ================= */

.cliente-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cliente-logo img {
  max-width: 150px;
  max-height: 70px;
  opacity: 0.85;
  transition: all 0.3s ease;
}

/* Hover */
.cliente-logo:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.cliente-logo:hover img {
  opacity: 1;
}

/* Modo claro */
body.light-mode .cliente-logo {
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Container dos cards */
.oferecemos-cards {
  display: flex;
  gap: 0.5rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  flex-wrap: wrap;           /* permite quebra de linha */
  justify-content: space-between;
  width: 100%;               /* garante que não ultrapasse a largura da tela */
  box-sizing: border-box;
}

/* Cards */
.oferecemos-item {
  flex: 1 1 calc((100% / 6) - 0.5rem);
  min-width: 150px;
  background: #1c1c1c;
  padding: 1.2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.oferecemos-item:hover {
  transform: scale(1.05);
}

.oferecemos-item h4 {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  white-space: normal;
  word-break: break-word;
}
.oferecemos h2 {
  font-size: 25px;
  margin: 0.5rem 0;
  white-space: normal;
  word-break: break-word;
  text-align: center;
}
/* Responsividade */

@media (max-width: 1064px) {
  .oferecemos-item {
    flex: 1 1 calc((100% / 3) - 0.5rem);
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .oferecemos-item {
    flex: 1 1 100%;
    max-width: none;
  }
}
body.light-mode .info {
  color: #000000;
}

.info p {
  margin: 0.3rem 0;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 0.8rem 0; /* menor que antes */
  margin-top: 1.5rem;
  font-size: 0.85rem;
}
.info {
  text-align: center;
  margin-top: 0.3rem;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  line-height: 1.3;
  color: #bbb;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.info p {
  margin: 0.2rem 0;
}

.info p {
  margin: 0.2rem 0;   /* menos espaço entre os parágrafos */
}
.logo-img {
  max-height: 80px;
}
.oferecemos-item i {
  font-size: 35px;     /* aumenta o ícone */
  color: #ffffff;      /* garante contraste */
  margin-bottom: 0.5rem;
}
body.light-mode .oferecemos-item i {
  font-size: 35px;
  color: #fffefe; /* ícone escuro no fundo claro */
  margin-bottom: 0.5rem;
}

body.light-mode .oferecemos-item h4,
body.light-mode .oferecemos-item p {
  color: #ffffff; /* texto escuro no modo claro */
}
.assessoria-banner {
  position: relative;
  text-align: center;
  color: white;
  margin-bottom: 3rem;
}

.assessoria-banner img {
  width: 100%;
  height: 1000px;
  object-fit: cover;
  filter: brightness(60%);
}

.texto-sobre {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
  text-align: center;
}

.texto-sobre h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.texto-sobre p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.sobre-blocos h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.blocos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.bloco {
  flex: 1 1 250px;
  background: #1e1e1e;
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.bloco:hover {
  transform: translateY(-5px);
}

.bloco i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #facc15; /* amarelo destaque */
}

.info {
  max-width: 1200px;
  margin: 0 auto 1.5rem auto;
  padding: 0 2rem;
  text-align: center;
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.5;
}

.logo {
  max-height: 80px;
  display: block;
}


body.light-mode .texto-assessoria {
  background-color: #f4f4f4;
  color: #111;
}


body.light-mode .texto-assessoria h2 {
  color: #000000;
}

 
body.light-mode .texto-assessoria p {
  color: #222;
}
.assessoria-banner {
  width: 100%;
  max-width: 1900px;
  height: 600px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #000;
}

.assessoria-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: brightness(60%);
  z-index: 1;
}
.assessoria-banner .texto-sobre {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 0 1rem;
  max-width: 90%;
}

.assessoria-banner .texto-sobre h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.assessoria-banner .texto-sobre p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #eee;
}

.assessoria-banner .btn {
  background-color: #fff;
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
}

.assessoria-banner .btn:hover {
  background-color: #ddd;
}

/* Responsivo */
@media (max-width: 768px) {
  .assessoria-banner {
    height: 400px;
    max-width: 100%;
  }

  .assessoria-banner .texto-sobre h2 {
    font-size: 2rem;
  }

  .assessoria-banner .texto-sobre p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .assessoria-banner {
    height: 320px;
  }

  .assessoria-banner .texto-sobre h2 {
    font-size: 1.6rem;
  }

  .assessoria-banner .texto-sobre p {
    font-size: 0.95rem;
  }
}
form {
  background: #1e1e1e;
  padding: 2.5rem 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  max-width: 600px;
  margin: 3rem auto;
  color: #eee;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}

form fieldset {
  border: none;
  margin-bottom: 2rem;
}

form legend {
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 0.3rem;
}

form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  font-size: 1rem;
  color: #ddd;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select,
form textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1px solid #444;
  background: #2a2a2a;
  color: #eee;
  font-size: 1rem;
  transition: border-color 0.3s, background-color 0.3s;
  font-family: 'Poppins', sans-serif;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: #ffffff;
  background: #222;
  color: #fff;
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

form label input[type="checkbox"] {
  margin-right: 0.5rem;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

form label a {
  color: #ffffff;
  text-decoration: underline;
  transition: color 0.3s;
}

form label a:hover,
form label a:focus {
  color: #ffffff;
}

form > label {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 2rem;
  user-select: none;
}

form button.btn {
  display: block;
  background-color: #ffffff;
  color: #121212;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.85rem 0;
  width: 100%;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.7);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

form button.btn:hover,
form button.btn:focus {
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.85);
}

/* ==== SEÇÃO ENDEREÇO E MAPA ==== */

.contato-mapa-endereco {
  display: flex;
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto;
  background: #1f1f1f;
  border-radius: 16px;
  padding: 2.5rem 3rem;
  box-shadow: 0 12px 36px rgba(0,0,0,0.6);
  color: #eee;
  flex-wrap: wrap;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.card-endereco {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.8rem;
}

.card-endereco h3 {
  font-size: 2.25rem;
  margin-bottom: 1.2rem;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.15rem;
  color: #ccc;
  font-weight: 500;
  transition: color 0.3s ease;
}

.info-item i {
  font-size: 2.2rem;
  color: #ffffff;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.info-item:hover {
  color: #ffffff;
}

.info-item:hover i {
  color: #ffffff;
}

.card-mapa {
  flex: 2 1 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  min-height: 320px;
  transition: box-shadow 0.3s ease;
}

.card-mapa iframe {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  display: block;
}

/* Modo claro */

body.light-mode form {
  background: #dbdada;
  color: #222;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

body.light-mode form legend {
  color: #222;
  border-color: #ffffff;
}

body.light-mode form label,
body.light-mode form > label {
  color: #444;
}

body.light-mode form input,
body.light-mode form select,
body.light-mode form textarea {
  background: #413f3f;
  color: #ffffff;
  border: 1px solid #ccc;
}

body.light-mode form input:focus,
body.light-mode form select:focus,
body.light-mode form textarea:focus {
  border-color: #ffffff;
  background: #202020;
  color: #ffffff;
}

body.light-mode form label a {
  color: #000000;
}

body.light-mode form label a:hover,
body.light-mode form label a:focus {
  color: #ffffff;
}

body.light-mode form button.btn {
  background-color: #fafafa;
  color: #000000;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
}

body.light-mode form button.btn:hover,
body.light-mode form button.btn:focus {
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.85);
}

body.light-mode .contato-mapa-endereco {
  background: #f7f7f7;
  color: #222;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

body.light-mode .card-endereco h3 {
  color: #333;
}

body.light-mode .info-item {
  color: #555;
}

body.light-mode .info-item i {
  color: #000000;
}

body.light-mode .info-item:hover {
  color: #000000;
}

body.light-mode .info-item:hover i {
  color: #000000;
}

body.light-mode .card-mapa {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsividade */

@media (max-width: 900px) {
  form {
    max-width: 100%;
    padding: 1.5rem 2rem;
    margin: 2rem 1rem;
  }

  .contato-mapa-endereco {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .card-endereco,
  .card-mapa {
    flex: 1 1 100%;
  }

  .card-mapa {
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  form legend {
    font-size: 1.3rem;
  }
  
  form button.btn {
    font-size: 1rem;
    padding: 0.7rem 0;
  }
}
/* ================= HERO MARKETING ================= */
.hero-marketing {
  padding: 90px 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-text h1 {
  font-size: 38px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
}

.hero-image img {
  width: 100%;
  max-width: 720px; /* aumenta no desktop */
  height: auto;
  display: block;
  margin: auto;
}


/* ================= SEÇÕES EXPLICATIVAS ================= */
.explicacao,
.processo {
  padding: 70px 20px;
}

.explicacao p {
  max-width: 900px;
  margin: 15px auto;
  line-height: 1.7;
}

/* ================= PROCESSO ================= */
.processo-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.step {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
}

/* Bolinhas (base) */
.step span {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* ================= OFERECEMOS ================= */
.oferecemos-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.oferecemos-item {
  background: rgba(255,255,255,0.05);
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.oferecemos-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.oferecemos-item i {
  font-size: 32px;
  margin-bottom: 15px;
  opacity: 0.85;
}

/* ================= LIGHT MODE ================= */
body.light-mode .oferecemos-item,
body.light-mode .step {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  color: #222;
}

body.light-mode .oferecemos-item h4,
body.light-mode .step h4 {
  color: #111;
}

body.light-mode .oferecemos-item p,
body.light-mode .step p {
  color: #444;
}

body.light-mode .oferecemos-item i {
  color: #222;
}

/* Bolinhas - modo claro */
body.light-mode .step span {
  background: #222;
  color: #fff;
}

/* ================= DARK MODE ================= */
body:not(.light-mode) .step span {
  background: #fff;
  color: #111;
}

/* ================= RESPONSIVO (MOBILE) ================= */
@media (max-width: 768px) {

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* imagem em cima, texto embaixo */
  .hero-image {
    order: -1;
    margin-bottom: 25px;
    width: 100%;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }

  /* IMAGEM GRANDE NO MOBILE */
  .hero-image img {
    width: 100%;
    max-width: none;   /* 🔥 ESSENCIAL */
    height: auto;
    display: block;
  }
}

/* ================= DESKTOP GRANDE ================= */
@media (min-width: 1200px) {
  .hero-image img {
    max-width: 800px;
  }
}
/* HERO FULL */
.hero-full {
  position: relative;
  width: 100%;
  height: 100vh; /* ocupa altura total da tela */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-full img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* cobre toda a área */
  object-position: center; /* mantém o foco no centro */
  z-index: 0; /* atrás do overlay e do texto */
}

.hero-full .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* escurece a imagem */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 1rem;
}

.hero-content h1 {
  font-size: 30px;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: #ddd;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero-overlay h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-overlay p {
  color: #e0e0e0;
  font-size: 18px;
  max-width: 600px;
}
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 23px;
  }

  .hero-overlay p {
    font-size: 15px;
  }
}
.cta {
  background: #111;
  padding: 70px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #fff;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: #111;
}

/* Modo claro */
body.light-mode .cta {
  background: #f5f5f5;
}

body.light-mode .cta h2 {
  color: #111;
}

body.light-mode .cta p {
  color: #555;
}

body.light-mode .cta-btn {
  border-color: #111;
  color: #111;
}

body.light-mode .cta-btn:hover {
  background: #111;
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .cta h2 {
    font-size: 26px;
  }

  .cta p {
    font-size: 15px;
  }
}
/* CTA – botão no modo escuro */
.cta-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

/* hover modo escuro */
.cta-btn:hover {
  background: #fff;
  color: #111;
}

/* Garante que nada sobrescreva no dark */
body:not(.light-mode) .cta-btn {
  color: #fff !important;
  border-color: #fff !important;
}

/* Garante hover correto no dark */
body:not(.light-mode) .cta-btn:hover {
  background: #fff !important;
  color: #111 !important;
}

/* ================= AJUSTE CONFORTO VISUAL – MODO CLARO ================= */

/* Fundo geral do site */
body.light-mode {
  background: #b6b4b4; /* CINZA ORIGINAL DO SITE */
  color: #222;
}

/* Seções grandes não ficam brancas */
body.light-mode section {
  background: transparent;
}

/* Hero marketing */
body.light-mode .hero-marketing {
  background: transparent;
}

/* Explicação e processo */
body.light-mode .explicacao,
body.light-mode .processo {
  background: transparent;
}

/* CTA com leve contraste */
body.light-mode .cta {
  background: #c2c0c0; /* um tom acima do fundo */
}

/* Textos CTA */
body.light-mode .cta h2 {
  color: #111;
}

body.light-mode .cta p {
  color: #444;
}

/* Botão CTA */
body.light-mode .cta-btn {
  background: transparent;
  color: #111;
  border-color: #111;
}

body.light-mode .cta-btn:hover {
  background: #111;
  color: #fff;
}
/* HERO FULL – MODO CLARO */
body.light-mode .hero-full {
  background: url('imagem_2025-06-25_163318437.png') center center/cover no-repeat;
  position: relative;
  color: #ffffff; /* texto escuro para contraste */
}


body.light-mode .hero-full .hero-content h1,
body.light-mode .hero-full .hero-content p {
  color: #ffffff; /* textos legíveis no fundo claro */
}
/* ================= SEÇÃO BENEFÍCIOS ================= */
.beneficios {
  background-color: var(--bg-section, #1f1f1f); /* escuro por padrão */
  padding: 4rem 2rem;
}

.beneficios .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.beneficios h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-primary, #fff);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.beneficio {
  background: var(--card-bg, #2a2a2a);
  padding: 2rem;
  border-radius: 12px;
  margin: 1rem;
  color: var(--text-secondary, #ddd);
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s, color 0.3s;
}

.beneficio i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--icon-color, #ccc);
}

.beneficio h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary, #fff);
}

.beneficio p {
  font-size: 1rem;
  color: var(--text-secondary, #ddd);
}

.beneficio:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* ================= MODO CLARO ================= */
body.light-mode .beneficios {
  --bg-section: #f9f9f9;
}

body.light-mode .beneficio {
  --card-bg: #fff;
  --text-primary: #1f1f1f;
  --text-secondary: #555;
  --icon-color: #555;
}

/* ================= MODO ESCURO ================= */
body:not(.light-mode) .beneficios {
  --bg-section: #1f1f1f;
}

body:not(.light-mode) .beneficio {
  --card-bg: #2a2a2a;
  --text-primary: #fff;
  --text-secondary: #ddd;
  --icon-color: #ccc;
}

/* Responsividade */
@media (max-width: 768px) {
  .beneficio {
    margin: 0.5rem;
  }
}
/* Títulos da seção Assessoria */
.texto-assessoria h2 {
  font-size: 36px; /* maior que o padrão */
  margin-bottom: 1rem;
}

.texto-assessoria h3 {
  font-size: 28px; /* maior que o padrão */
  margin-bottom: 1rem;
}

/* Títulos da seção Benefícios */
.beneficios h2 {
  font-size: 36px;
  margin-bottom: 1rem;
}

.beneficios h3 {
  font-size: 30px;
  margin-bottom: 2rem;
}
