/* === Aviso Legal - Estilo CSS === */

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fuente base */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
}

/* Cabecera con imagen de fondo y overlay oscuro */
.header {
  background: url('../../assets/img/b01.webp') no-repeat center center/cover;
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header h1 {
  position: relative;
  font-size: 3rem;
  color: #fff;
  text-align: center;
}

/* Contenido principal */
.contenido {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Secciones */
.contenido section {
  margin-bottom: 40px;
}

/* Títulos */
.contenido h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #FA48C9;
  border-bottom: 2px solid #FA48C9;
  padding-bottom: 5px;
}

/* Párrafos */
.contenido p {
  margin-bottom: 10px;
}

/* Listas */
.contenido ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-top: 10px;
}

.contenido li {
  margin-bottom: 6px;
}

/* Enlaces (si los usas en política de privacidad, etc.) */
a {
  color: #FA48C9;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
