.zona-fuego {
  padding: 40px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
}

/* LINKS SUPERIORES */
.zona-fuego .nav-links {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 40px;
}
.zona-fuego .nav-links a {
  color: #003399;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}
.zona-fuego .nav-links a:hover {
  text-decoration: underline;
}

/* CONTENEDOR PRINCIPAL */
.zona-fuego .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

/* SECCIÓN DE TEXTO */
.zona-fuego .text-section {
  flex: 1;
  min-width: 300px;
}
.zona-fuego .text-section h3 {
  font-size: 14px;
  font-weight: normal;
  color: #003399;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.zona-fuego .text-section h2 {
  font-size: 28px;
  font-weight: bold;
  color: #003399;
  margin: 10px 0 20px;
  text-transform: uppercase;
}
.zona-fuego .text-section p {
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 30px;
}

/* BOTÓN */
.zona-fuego .btn {
  background-color: #ffcc00;
  border: none;
  padding: 14px 24px;
  font-weight: bold;
  cursor: pointer;
  color: #003399;
  text-transform: uppercase;
  transition: 0.3s;
}
.zona-fuego .btn:hover {
  background-color: #e6b800;
}

/* SECCIÓN DE IMÁGENES */
.zona-fuego .image-section {
  flex: 1;
  min-width: 300px;
  text-align: center;
}
.zona-fuego .main-image {
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 15px;
}
.zona-fuego .main-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.zona-fuego .thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.zona-fuego .thumbs img {
  width: 80px;
  height: auto;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: transform 0.2s;
}
.zona-fuego .thumbs img:hover {
  transform: scale(1.05);
  border-color: #003399;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .zona-fuego .container {
    flex-direction: column;
  }
}