
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;
  }
}

