@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow: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=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.btn {
  display: block;
  padding: .75rem 1.5rem;
  font-weight: 600;
  border-radius: .5rem;
  width: fit-content;
  transition: .6s;
}

.btn:hover {
  opacity: .5;
}

.btn-main {
  background-color: #207ba1;
  color: #FFF;
}

html {
  overflow-x: hidden;
}

body {
  background-color: #FFF;
  color: #0e0c12;
  overflow-x: hidden;
}

.container-detalhes {
  width: 100vw;
  position: relative;
}

.blurred-box {
  font-size: .75rem;
  font-family: sans-serif;
  --framer-aspect-ratio-supported: auto;
  box-sizing: border-box;
  -webkit-font-smoothing: inherit;
  background-color: #207ba180;
  border-radius: 216px;
  filter: blur(46px);
  flex: none;
  height: 203px;
  opacity: .6;
  position: absolute;
  width: 420px;
  z-index: 1;
  transform: rotate(-21deg);
}

.blurred-box-1 {
  left: calc(49.33333333333336% - 420px / 2);
  top: -49px;
}

.blurred-box-2 {
  right: -14rem;
  bottom: -80vh;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background-color: #f7f7f7;
  padding: .5rem 2rem;
  border-radius: .5rem;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  margin: 1rem 0;
}

.btn-logo img {
  width: 14rem;
  display: block;
}

header .btn-main {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .75rem 1.5rem;
  font-size: .8rem;
}

header .btn-main img {
  width: 1rem;
}

.title-termos-de-uso {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  margin-top: 8rem;
}

.content-item {
  margin: 2.5rem 0;
}

.content-item h4 {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.content-item p, .content-item li {
  font-size: 1rem;
  font-weight: 300;
  color: #898989;
  line-height: 1.5rem;
  font-weight: 300;
}

.content-item p.p-contato {
  margin: .5rem 0;
}

.content-item li {
  margin: .5rem 0;
  margin-left: 3rem;
}


/* FOOTER */
footer > * {
  font-family: 'Public Sans', sans-serif;
}

.footer-info {
  color: #637381;
  padding: 4rem 2rem;
}

.logo-footer {
  width: 16rem;
}

.footer-info h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1C252E;
  font-family: 'Public Sans', sans-serif;
}

.footer-info p {
  color: #637381;
  font-size: .9rem;
  margin: 1rem 0;
  font-family: 'Public Sans', sans-serif;
}

.footer-info a {
  display: block;
  width: fit-content;
  color: #637381;
  margin: 1rem 0;
  font-weight: 700;
  font-family: 'Public Sans', sans-serif;
}

.section-rodape {
  padding: 1.5rem;
  text-align: center;
  background-color: #207BA1;
  color: #FFF;
  font-size: .9rem;
}


@media (max-width: 1200px) {
  .container {
    width: 70%;
  }
}

@media (max-width: 900px) {
  .footer-info {
    width: 100%;
    gap: 1rem;
  }
}

@media (max-width: 800px) {
  .container {
    width: 80%;
  }
  header {
    width: calc(100% - 2rem);
    margin: 1rem auto;
    box-sizing: border-box;
    flex-wrap: wrap;
  }
  .footer-info {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }
  .footer-info {
      grid-template-columns: 1fr 1fr;
  }
  .div-footer-logo {
      grid-column: 1/-1;
      text-align: center;
  }
}

@media (max-width: 600px) {
  .blurred-box-1 {
    top: -20vh;
  }
  header {
    justify-content: center;
  }
  .container {
    width: 100%;
    padding: 0 2rem;
  }
  .title-termos-de-uso {
    margin-top: 10rem;
    font-size: 2rem;
  }
  .footer-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 0 1rem;
  }
  .blurred-box-2 {
    right: -80vw;
  }
}


@media (min-width: 7000px) {
  .img-celular {
      right: 15rem;
      left: auto;
  }
}



