/* === Reset y base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Oswald', sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* === Navbar & Footer (Mismos estilos del ecosistema) === */
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nav-container .navbar { padding: 10px 0; background: transparent; }
.navbar-logo { max-width: 280px; height: auto; }
.navbar-light .navbar-nav .nav-link { font-family: 'Oswald', sans-serif; font-size: 1rem; color: #000; padding: 8px 14px; transition: color 0.3s ease, transform 0.2s ease; }
.navbar-light .navbar-nav .nav-link:hover { color: #00ff00; transform: translateY(-2px); }
.dropdown-menu { border: 1px solid #eee; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-radius: 8px; margin-top: 10px; }
.dropdown-item { font-family: 'Oswald', sans-serif; padding: 8px 20px; color: #333; transition: all 0.2s ease; }
.dropdown-item:hover { background-color: #f0fff0; color: #00ff00; }
.nav-container .dropdown-menu .dropdown-item:hover,
.nav-container .dropdown-menu .dropdown-item:focus { color: #00ff00 !important; background-color: #f0fff0; text-decoration: none; }
@media (max-width: 991px) {
  .nav-container .navbar-collapse { background: #fff; margin-top: 10px; padding: 10px 0; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
  .navbar-nav { gap: 5px; } .nav-item { width: 100%; }
  .dropdown-menu { border: none; box-shadow: none; background: #f8f8f8; margin-left: 15px; border-left: 3px solid #00ff00; }
}

/* === Contenedor de Términos === */
.terms-container {
  max-width: 850px;
  margin: 40px auto;
  padding: 35px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.terms-container h1 {
  text-align: center;
  font-family: 'Mohave', sans-serif;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #000;
  border-bottom: 2px solid #00ff00;
  padding-bottom: 15px;
}

.terms-intro {
  text-align: justify;
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.7;
}

.terms-section { margin-bottom: 30px; }
.terms-section h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: #000;
  margin-bottom: 12px;
  border-left: 4px solid #00ff00;
  padding-left: 12px;
}

.terms-section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
  text-align: justify;
  color: #333;
}

/* Listas */
.terms-list {
  list-style: none;
  padding-left: 10px;
  margin: 10px 0 15px;
}
.terms-list li {
  font-size: 1rem;
  padding: 6px 0 6px 25px;
  position: relative;
  line-height: 1.6;
  color: #444;
  margin-bottom: 4px;
}
.terms-list li::before {
  content: "•";
  color: #00ff00;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* Enlaces */
.terms-container a {
  color: #00ff00;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.terms-container a:hover { color: #00cc00; text-decoration: underline; }

/* Caja de contacto destacada */
.contact-box {
  background: #f8f9fa;
  border-left: 4px solid #00ff00;
  padding: 25px;
  border-radius: 0 8px 8px 0;
  margin-top: 10px;
}

.terms-footer-note {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #666;
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

/* === Footer Full-Width === */
footer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: #333;
  color: #fff;
  padding: 20px 15px;
  text-align: center;
  box-sizing: border-box;
}
footer nav { width: 100%; max-width: none; margin: 0; padding: 0; }
.menu2 { list-style: none; display: flex; justify-content: center; gap: 12px; margin: 0 0 5px 0; padding: 0; flex-wrap: wrap; }
.menu2 li { margin: 0; }
.menu2 li a { color: #fff; font-size: 1rem; text-decoration: none; transition: color 0.3s, transform 0.2s; display: inline-flex; align-items: center; justify-content: center; }
.menu2 li a:hover { color: #00ff00; transform: scale(1.15); }
.caja3 { margin: 5px 0 10px; }
.neo { max-width: 300px; height: auto; display: block; margin: 0 auto; }
.textos p { margin: 3px 0; font-size: 0.85rem; opacity: 0.9; text-align: center; }

/* === Responsive === */
@media (max-width: 768px) {
  .terms-container { margin: 20px 15px; padding: 25px 20px; }
  .terms-container h1 { font-size: 1.6rem; }
  .terms-section h3 { font-size: 1.2rem; }
  .terms-section p, .terms-list li { font-size: 0.95rem; }
  .menu2 { gap: 10px; }
  .neo { max-width: 240px; }
}
@media (max-width: 375px) {
  .terms-container { padding: 20px 15px; }
  .terms-section h3 { padding-left: 10px; }
  .terms-list li { padding-left: 20px; }
}