/* ====== GENERAL ====== */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
  color: #fff;
}

h2 {
  font-size: 1.6rem;
  color: #0ff;
  text-shadow: 0 0 10px #0ff;
  margin-bottom: 1rem;
}

/* ====== HEADER ====== */
header {
  background-color: #111;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #0ff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.logo span {
  font-size: 1.4rem;
  font-weight: bold;
  color: #0ff;
  text-shadow: 0 0 8px #0ff;
}

nav {
  display: flex;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #0ff;
}

.neon-btn {
  padding: 0.5rem 1rem;
  color: #0ff;
  border: 1px solid #0ff;
  background: transparent;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
  text-shadow: 0 0 5px #0ff;
}

.neon-btn:hover,
.neon-btn.active {
  background: #0ff;
  color: #000;
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}

/* ====== MAIN SECTIONS ====== */
main {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.neon-box {
  background-color: #1c1c1c;
  border: 1px solid #0ff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 15px #0ff2;
}
.futuristic-section {
  padding: 60px 20px;
  background: linear-gradient(145deg, #0d0d1d, #1c1c3c);
  border-top: 2px solid #00ffe7;
  border-bottom: 2px solid #00ffe7;
}

.section-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
}

.neon-text {
  color: #00ffe7;
  text-shadow: 0 0 10px #00ffe7, 0 0 20px #00ffe7;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.news-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border: 1px solid #00ffe7;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #00ffe7;
}

.news-item h3 {
  font-size: 1.3em;
  color: #00ffe7;
}

.news-item p {
  color: #ddd;
  font-size: 0.95em;
  margin: 10px 0;
}

.news-item a {
  color: #00ffe7;
  font-weight: bold;
  text-decoration: none;
}

.loading-text {
  color: #ccc;
  text-align: center;
  font-size: 1.2em;
}

/* ====== PRICE LIST ====== */
.price-list {
  list-style: none;
  padding: 0;
}

.price-list li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* ====== TABLE ====== */
.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
}

thead {
  background-color: #0ff;
  color: #000;
}

th, td {
  padding: 0.8rem;
  border: 1px solid #0ff;
  text-align: left;
}

tbody tr:nth-child(even) {
  background-color: #222;
}

/* ====== FOOTER ====== */
footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #111;
  border-top: 2px solid #0ff;
  font-size: 0.9rem;
  color: #aaa;
}

footer a {
  color: #0ff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ====== RESPONSIVE ====== */
@media screen and (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    background-color: #111;
    padding: 1rem;
    position: absolute;
    top: 60px;
    right: 10px;
    z-index: 99;
  }

  nav.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}
#creditos {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  border-left: 4px solid #0ff;
  border-radius: 15px;
  color: #fff;
  box-shadow: 0 0 15px #0ff;
}
#creditos h2 {
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  margin-bottom: 1rem;
}
#creditos ul {
  list-style: none;
  padding-left: 0;
}
#creditos li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  padding-left: 1.2rem;
  position: relative;
}
#creditos li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #0ff;
}
#news-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
  padding: 10px;
}

.news-card {
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: scale(1.02);
}

.news-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-content h3 {
  font-size: 1.1rem;
  color: #00fff7;
  margin-bottom: 10px;
}

.news-content p {
  color: #ddd;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.news-link {
  color: #00ffcc;
  font-weight: bold;
  text-decoration: none;
}

.news-link:hover {
  text-decoration: underline;
}
