body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
}

.logoTopo {
  width: 100%;
  height: auto;
  background-color: white;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.bottomLeft,
.topRight,
.topLeft,
.bottomRight {
  position: fixed;
  width: 170px;
  height: auto;
}

.bottomLeft {
  bottom: 10px;
  left: 0;
  z-index: 1;
}

.topRight {
  top: 55px;
  right: 0;
  z-index: 2;
}

.topLeft {
  top: 55px;
  left: 0;
  z-index: 3;
}

.bottomRight {
  bottom: 10px;
  right: 0;
  z-index: 4;
}

.form-control {
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #2c60ad;
  font-size: 16px;
  padding: 10px;
  border: 1px solid #2c60ad;
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.2);
  color: #2c60ad;
  border-color: #2c60ad;
  box-shadow: 0 0 0 0.2rem rgba(44, 96, 173, 0.25);
}

.form-control::placeholder {
  color: rgba(44, 96, 173, 0.7);
}

.button:hover {
  background-color: #1e4c8a !important;
}

.form-wrapper input[type="radio"] {
  margin-right: 10px;
}

/* Adições para a página de coberturas */
.form-wrapper {
  max-width: calc(90% - 30px);
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 20px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.categoria .item {
  margin-bottom: 10px;
}

.categoria .item label {
  display: flex;
  align-items: center;
}

.categoria .item span {
  color: #2c60ad;
}

.categoria .descricao {
  color: #2c60ad;
  font-size: 0.9em;
  margin-left: 25px;
}

.button {
  background-color: #2c60ad;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media screen and (max-width: 768px) {
  .bottomRight {
    bottom: 5px;
    right: 5px;
  }
}

@media (max-width: 767px) {
  .slider-caption h2 {
    font-size: 24px !important;
  }

  .form-wrapper {
    padding: 15px !important;
  }

  .item label,
  .form-control {
    font-size: 16px !important;
    /* Previne zoom em iOS */
  }
}