/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: white;
  transform: scale(1.1);
}

.whatsapp-float i {
  margin-top: 0;
}

/* Color scheme updates */
.btn-primary {
  background-color: #0066cc !important;
  border-color: #0066cc !important;
}

.btn-primary:hover {
  background-color: #0052a3 !important;
  border-color: #0052a3 !important;
}

.btn-cadastro {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0066cc;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-cadastro:hover {
  background-color: #0052a3;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

.masthead {
  background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
}

.call-to-action {
  background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
}

/* Benefits container */
.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  margin-bottom: 15px;
}

.benefit-item img {
  margin-bottom: 10px;
}

.benefit-item p {
  margin: 0;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .benefit-item {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}