@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #f2f2f8;
  overflow-x: hidden;
}

header {
  width: 100%;
  position: relative;
  background-image: url("../images/lines/header.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  padding: 40px 20px 0;
  justify-content: center;
  z-index: 1000;
}
header .back {
  position: absolute;
  right: 0;
  top: 10px;
  z-index: 1000;
}
header .back a img {
  width: 32px;
}
header .logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  text-align: center;
}
header .logo img {
  width: 265px;
  height: auto;
}
header .perfil {
  position: absolute;
  right: 20px;
  top: 20px;
}
header .perfil img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.15) 5px 6px 4px;
}

.contenedor__textos {
  max-width: 1100px;
  width: 100%;
  display: block;
  margin: 30px auto;
  background-color: white;
  padding: 20px;
}
.contenedor__textos h1 {
  color: #e1261c;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.contenedor__textos h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.contenedor__textos p {
  font-size: 0.8rem;
  margin-bottom: 20px;
}
.contenedor__textos ul {
  padding-left: 3rem;
  margin-bottom: 20px;
}
.contenedor__textos ul li {
  font-size: 0.8rem;
  margin-bottom: 5px;
}

@media (max-width: 620px) {
  .contenedor__textos h1 {
    font-size: 1.2rem;
  }
  .contenedor__textos h3 {
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=terminos.css.map */