/* Reset básico */
* {
  line-height: 1.6;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f8fb;
  color: #333;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}

body.dark-mode {
  background: linear-gradient(to bottom, #1e1e2f, #041a28);
  color: #ddd;
}

header {
  background: linear-gradient(135deg, #0077cc, #19bfcc);
  color: #fff;
  padding: 40px 20px;
  position: relative;
  text-align: center;
  transition: background 0.3s;
}

header img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-bottom: 4px solid #19bfcc;
}

.header-content {
  margin-top: 20px;
}

nav {
  margin-top: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffdd57;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0077cc;
  transition: color 0.3s;
}

body.dark-mode h2 {
  color: #19bfcc;
}

ul {
  list-style: none;
}

ul li {
  background: #e0ecf5;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  font-size: 1rem;
  transition: background 0.3s;
}

body.dark-mode ul li {
  background: #111117;
}

.benefits {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.benefit {
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  width: 30%;
  min-width: 250px;
  margin: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
  transition: background 0.3s, border 0.3s;
}

body.dark-mode .benefit {
  background: #0d0d11;
  border: 1px solid #31219d;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.benefit h3 {
  color: #3362f0;
  transition: color 0.3s;
}

form {
  max-width: 600px;
  margin: auto;
}

form label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #f9f9f9;
  color: #333;
  transition: background 0.3s, color 0.3s;
}

body.dark-mode form input,
body.dark-mode form textarea {
  background: #111118;
  color: #fff;
  border: 1px solid #341adf;
}

form input:focus,
form textarea:focus {
  border-color: #0077cc;
  outline: none;
}

form button {
  background: #0077cc;
  color: #fff;
  font-size: 1rem;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #005fa3;
}

footer {
  background: #e0ecf5;
  color: #333;
  padding: 10px;
  transition: background 0.3s;
}

body.dark-mode footer {
  background: #1e1e2f;
  color: #fff;
}

/* Botão de alternância de tema */
.theme-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0077cc;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

.theme-toggle:hover {
  background: #005fa3;
}

/* Galeria de landings */
.landing-preview {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  transition: background 0.3s;
}

body.dark-mode .landing-preview {
  background: #111118;
}

.landing-preview h2 {
  margin-bottom: 20px;
}

.landing-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.landing-gallery .card {
  background: #f4f8fb;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 280px;
  transition: background 0.3s;
}

body.dark-mode .landing-gallery .card {
  background: #1c1c2b;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}

.landing-gallery img {
  width: 100%;
  height: auto;
}

.landing-gallery .card p {
  padding: 15px;
  color: #333;
  transition: color 0.3s;
}

body.dark-mode .landing-gallery .card p {
  color: #ddd;
}


/* Botão de alternância de tema */
.theme-button {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 15px;
  border: none;
  border-radius: 20px;
  background-color: #19bfcc;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s, color 0.3s;
  z-index: 1000;
}

.theme-button:hover {
  background-color: #148fa0;
}

/* Tema claro */
body.light-theme {
  background: #f0f4f8;
  color: #1a1a1a;
}

body.light-theme header {
  background: linear-gradient(135deg, #dfefff, #91e9f4);
  color: #000;
}

body.light-theme nav a {
  color: #000;
}

body.light-theme nav a:hover {
  color: #3362f0;
}

body.light-theme h2 {
  color: #148fa0;
}

body.light-theme ul li {
  background: #ffffff;
  color: #1a1a1a;
}

body.light-theme .benefit {
  background: #ffffff;
  border: 1px solid #cdddf0;
  color: #1a1a1a;
}

body.light-theme .benefit h3 {
  color: #3362f0;
}

body.light-theme form input,
body.light-theme form textarea {
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
}

body.light-theme form button {
  background: #3362f0;
}

body.light-theme footer {
  background: #e6f4f7;
  color: #1a1a1a;
}



/* new session */

/* Galeria de landing pages com tamanho padronizado */
.landing-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.landing-thumb {
  width: 300px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.landing-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.landing-thumb p {
  padding: 10px;
  font-size: 0.95rem;
  color: #333;
}

/* Modo escuro para landing pages */
body.dark-mode .landing-thumb {
  background-color: #1c1c2b;
  box-shadow: 0 2px 10px rgba(255,255,255,0.05);
}

body.dark-mode .landing-thumb p {
  color: #ddd;
}

#atendimento {
  padding: 60px 20px;
  background: #eef3f7;
}

#atendimento h2 {
  color: #0d2c3d;
  text-align: center;
  margin-bottom: 10px;
}

#atendimento p {
  text-align: center;
  margin-bottom: 20px;
  color: #444;
}

.mapa-box {
  width: 100%;
  max-width: 900px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}










