/* -------------------------------
   RESET & CONFIGURACIÓN GLOBAL
------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Arial', sans-serif;
  background: #071635;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  user-select: none;
  margin: 0;
}
img {
  user-select: none;
  -webkit-user-drag: none;
}
/* -------------------------------
   CONTENEDORES GENERALES
------------------------------- */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px;
  text-align: center;
}
.home-container {
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
/* -------------------------------
   ELEMENTOS PRINCIPALES
------------------------------- */
.logo {
  width: 100%;
  max-width: 550px;
  height: auto;
  animation: fadeIn 1s ease-in-out;
}
.link-text {
  margin-top: 20px;
  font-size: 1.2rem;
  animation: fadeIn 1.5s ease-in-out;
}
.link-text a {
  background-color: #1d4370;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: inline-block;
  max-width: 90vw;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  line-height: 1.3;
}
.link-text a:hover {
  background-color: #16304f;
  transform: translateY(-2px);
}
/* -------------------------------
   FOOTER
------------------------------- */
.footer {
  text-align: center;
  padding: 15px 10px;
  background: linear-gradient(to right, #8cc63f, #00b2e3, #214a78);
  color: #fff;
  font-size: 0.9rem;
}
/* -------------------------------
   TÉRMINOS Y CONDICIONES
------------------------------- */
.terms-content {
  text-align: justify;
  max-width: 1500px;
  width: 100%;
  margin: 20px auto;
  line-height: 1.6;
  color: #333;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.header-logo {
  display: flex;
  align-items: center;
  padding: 10px 30px 0;
  margin-left: 30px;
}
.header-logo img {
  width: 150px;
  height: auto;
}
/* -------------------------------
   ANIMACIONES
------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* -------------------------------
   RESPONSIVE DESIGN
------------------------------- */
@media (max-width: 768px) {
  .logo {
    max-width: 250px;
  }
  .header-logo img {
    width: 120px;
  }
  .link-text {
    font-size: 1.1rem;
  }
  .terms-content {
    padding: 0 15px;
  }
  .container {
    padding: 30px 15px;
  }
}
@media (max-width: 480px) {
  .logo {
    max-width: 200px;
  }
  .header-logo img {
    width: 100px;
  }
  .link-text {
    font-size: 1rem;
  }
  .footer {
    font-size: 0.8rem;
    padding: 12px 10px;
  }
  .container {
    padding: 20px 10px;
  }
}
.logo {
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}
.link-text a {
  box-shadow: 0 4px 12px rgba(153, 71, 71, 0.1);
}
a {
  user-select: text;
}
html {
  scroll-behavior: smooth;
}
.titulo-gradient {
  font-size: 2.2rem;
  font-weight: bold;
  background: linear-gradient(to right, #8cc63f, #32c6a6, #00b2e3, #1d4370);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.terms-content ul li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  color: #333;
}
.terms-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1e3e6f;
  font-size: 1.2em;
  line-height: 1;
}
body {
  user-select: none;
}
.tabla-promocion {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  margin: 30px 0;
}
.tabla-promocion th,
.tabla-promocion td {
  border: 1px solid #000;
  padding: 8px 12px;
  text-align: left;
  vertical-align: top;
}
.encabezado-region {
  background-color: #0070C0;
  color: white;
  font-weight: bold;
}
.encabezado-columnas {
  background-color: #D9E1F2;
  font-weight: bold;
}
.titulo-seccion {
  color: #1e3e6f;
  font-weight: bold;
  margin-top: 20px;
}
ol {
  margin-left: 30px;
  padding-left: 10px;
}
ol li {
  margin-bottom: 12px;
  text-align: justify;
}
.link-text {
  margin-bottom: 20px; /* o el espacio que tú quieras */
}
.terms-content p {
  margin-bottom: 1.2em; /* o el valor que se vea bien */
}
@media (max-width: 360px) {
  .link-text {
    font-size: 0.9rem;
  }
  .link-text a {
    padding: 10px 15px;
  }
}
.terms-content {
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}
@media (max-width: 480px) {
  .terms-content {
    text-align: left;
  }
}
