/* style-terminos.css */

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  padding: 20px;
}

/* Contenedor principal */
.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background-color: #111;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Encabezados */
h1, h2 {
  color: #00ffe1;
  margin-bottom: 15px;
}

h1 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 25px;
}

h2 {
  font-size: 1.6rem;
  margin-top: 25px;
  border-bottom: 2px solid #00ffe1;
  padding-bottom: 5px;
}

/* Párrafos */
p {
  margin-bottom: 18px;
  font-size: 1rem;
  color: #ddd;
}

/* Listas */
ul {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 18px;
}

/* Enlaces */
a {
  color: #00ffe1;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: all 0.3s ease;
}

a:hover {
  border-bottom: 1px dashed #00ffe1;
  color: #00fff1;
}

/* Efecto hover para contenedor */
.container:hover {
  box-shadow: 0 6px 25px rgba(0, 255, 225, 0.3);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}
