@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --font-1: "Roboto", "Poppins", sans-serif;
  --red: #ca1c2a;
  --green: #1fb91f;
  --blue-transparent: rgba(25, 46, 233, 0.613);
  --blue: #0066b3;
}
* {
  margin: 0;
  padding: 0;
  font-family: var(--font-1);
}
body {
  font-family: var(--font-1);
  font-weight: 300;
  background-color: #f1f1f1 !important;
  background-image: url(images/background.png);
  background-attachment: fixed;
}
h1 {
  font-size: 1.5rem;
  font-weight: 300;
}
h2 {
  font-size: 1.3rem;
  font-weight: 300;
}
main {
  background-color: #ffffff;

  padding: 2rem;
  width: 40vw;
  margin: auto;
  margin-top: 1rem;
  box-sizing: border-box;
  margin-bottom: 2rem;
  border-radius: 2px;
}
main h1 {
  margin-bottom: 2rem;
}
.logo img {
  width: 100%;
  margin: auto;
}
.logo {
  width: 200px;
  margin: auto;
  margin-top: 3rem;
}
.campo > label span {
  font-size: 0.7rem;
  color: var(--red);
}
.campo > label span.false {
  color: var(--red);
}
.campo > label span.true {
  color: green;
}
.campo input,
select {
  display: block;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  border: 1px solid #ccc;
}

.multiplaOpcao {
  margin-bottom: 0.5rem;
}
.multiplaOpcao input[type="radio"] {
  width: auto;
  display: inline-block !important;
  margin-right: 0.5rem;
}
.multiplaOpcao .campo {
  display: block;
}
.endereco {
  width: 100%;
}

.grupoCampos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
  box-sizing: border-box;
}
.endereco .title {
  width: 100%;
  margin-bottom: 0.5rem;
}
.item2 {
  grid-column: 2 / span 3;
}
.item1 {
  grid-column: 1 / span 1;
}
.item3 {
  grid-column: 1 / span 2;
}

.item4 {
  grid-column: 3 / span 2;
}
.item5 {
  grid-column: 1 / span 2;
}
.item6 {
  grid-column: 3 / span 2;
}
input[type="submit"] {
  background-color: var(--green);
  padding: 1rem;
  border: none;
  color: #ffffff;
  text-transform: uppercase;
  display: flex;
  margin: auto;
  width: 40%;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.novoCad {
  text-decoration: none;
  color: #000;
  text-align: center;
  display: block;
}
.novoCad:hover {
  color: var(--red);
}
.grid {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr ;
  gap: 1rem;
}
.alerta {
  grid-row: 1 / span 1;
  grid-column: 1 / span 2;
  height: auto;
}

@media (max-width: 600px) {
  main {
    width: 90vw;
  }
  .opt{
    display: none;
  }
  .grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr ;
  }
  .flex-area {
    flex-direction: column-reverse;
  }
  .cardProduto {
    margin: auto;
  }
}
@media (min-width: 600px) and (max-width: 1200px) {
  main {
    width: 70vw;
  }
  .flex-area {
    flex-direction: column-reverse;
  }
  .cardProduto {
    margin: auto;
  }
}

/* menu e Sub menu */
header {
  width: 100vw;
  box-sizing: border-box;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#bg-home {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 25%;
  background-color: red;
  width: 100%;
  height: 250px;
}
section {
  border-bottom: 2px solid var(--green);
  background-color: #fff;
}
.title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #fff;
  height: 100%;
  background-color: var(--blue-transparent);
}
.logoMenu img {
  width: 200px;
}
.profileImg {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.content-area {
  width: 80%;
  margin: auto;
  padding-top: 2rem;
}
.content-area h1 {
  color: var(--blue);
  padding: 0.5rem 0;
}
.rounded {
  border-radius: 20px;
}
.text-area {
  flex: 2;
}
.flex-area {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.flex-area img {
  width: 100%;
  overflow: hidden;
  background-size: cover;
  object-fit: cover;
  max-height: 400px;
}
.img-left {
  flex: 1;
}
/* footer */
.bgFundo {
  background-color: var(--blue-transparent);
}
