
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #072346;
  color: white;
}

.topbar {
  background: #072346;
  padding: 15px 0;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

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

.logo-img {
  max-width: 180px;
  height: auto;
}

.menu a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
}

.hero {
  position: relative;
  height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.parallax-circles .circle {
  position: absolute;
  width: 250px;
  height: 250px;
  background: white;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s ease-out;
}

.parallax-circles .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 60px 20px;
  background: #072346;
}

h1,
p,
.section,
footer,
header {
  position: relative;
  z-index: 1; /* conteúdo por cima dos círculos */
}

.section.light {
  background: #f7f7f7;
  color: #333;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background: white;
  color: #333;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
  flex: 1 1 280px;
  max-width: 350px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 30px auto 0;
}

.form input, .form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.form button {
  background: #006400;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.footer {
  background: #000;
  color: #eee;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}
 .whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}


@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}


@media (min-width: 768px) {
  .container {
    background-color: transparent; /* Só aplica o fundo escuro no celular */
    color: inherit;
  }
}




body {
  background: linear-gradient(-45deg, #0f0f0f, #1a1a2e, #16213e, #0f3460);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: #fff;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: radial-gradient(#00f1ff 1px, transparent 1px),
                    linear-gradient(#111 1px, transparent 1px),
                    linear-gradient(90deg, #111 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: -1;
  opacity: 0.1;
}



button, .btn {
  background-color: transparent;
  color: #00f1ff;
  border: 2px solid #00f1ff;
  padding: 10px 20px;
  font-size: 1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  box-shadow: 0 0 5px #00f1ff, 0 0 10px #00f1ff, 0 0 15px #00f1ff;
}

button:hover, .btn:hover {
  background-color: #00f1ff;
  color: #000;
  box-shadow: 0 0 10px #00f1ff, 0 0 20px #00f1ff, 0 0 30px #00f1ff;
}
