/* GERAL */
* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}
body {
  font-size: 16px;
  line-height: 140%;
  font-family: Arial, Helvetica, sans-serif;
}

.container-local {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 5%;
  justify-content: center;
  margin-top: 10%;
}

/* MENU */
.menu {
  padding: 5% 10%;
  background-color: black;
}
.menu-logo {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.logo {
  height: 40px;
}

nav a{
  width: 20px;
}

/* BUTTON */
.btn-position {
  display: flex;
  flex-direction: row;
  justify-content: right;
}

/* CHECKBOX E RADIO BUTTON */
input[type="checkbox"],
input[type="radio"] {
  float: left;
  margin-left: -1.5em;
  margin-top: 2.5px;
}
input[type="checkbox"] + label,
input[type="radio"] + label {
  margin-bottom: 5px;
}
input[type="checkbox"],
input[type="radio"] {
  width: 1.1em;
  height: 1.1em;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}
input[type="checkbox"] {
  border-radius: 0.25em;
}

input[type="radio"] {
  border-radius: 50%;
}
input[type="checkbox"]:active,
input[type="radio"]:active {
  filter: brightness(90%);
}
input[type="checkbox"]:focus,
input[type="radio"]:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

input[type="radio"]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

input[type="checkbox"]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

input[type="checkbox"]:disabled,
input[type="radio"]:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}

.margin-checkbox-radiobutton {
  margin-left: 1.5em;
}

.form-position {
  width: 100%;
}

/* DROP LIST AO LADO DO LABEL */
.question-drop {
  display: flex;
  flex-direction: column;
}

.question-drop-span {
  width: 100%;
}
.question-drop-form-position {
  width: 100%;
}

.font-pequena{
  font-size: 12px;
}

/* IMG */

.img-marca {
  width: 100%;
  max-width: 130px;
}

.img-logos-seguros {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  
}
.img-conceito {
    width: 100%;
    max-width: 700px;
}
.img-logos-seguros img {
width: 20%;
margin: 2%;
}

/*MEDIA*/

@media only screen and (max-width: 480px) {
  .img-logos-seguros img{
    display: none;
  }
}

@media only screen and (min-width: 601px) {
  body {
    background-size: 40%;
  }
  .container-local {
    margin-top: 5%;
  }
  .menu-logo {
    justify-content: left;
    align-items: center;
  }
  .logo {
    height: 50px;
  }

  .logo-02 {
    margin-left: 5px;
    height: 30px;
  }

  .btn-position {
    justify-content: left;
  }

  .form-position {
    width: 50%;
  }
  .question-drop-form-position {
    width: 30%;
  }

  .question-drop {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .question-drop-span {
    width: 30%;
  }
}

@media only screen and (min-width: 993px) {
  body {
    background-size: 30%;
  }

  .form-position {
    width: 30%;
  }

  .question-drop-span {
    width: 20%;
  }

  .img-logos-seguros img {
    width: 10%;
    margin: 2%;
    }

    .menu {
      padding: 3% 10%;
      
    }
}
