/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 1rem 2rem;
  border-bottom: 1px solid #222;
}

.logo {
  font-size: 1.8rem;
  color: #00ffff;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00ffff;
}

.theme-toggle {
  background: none;
  border: none;
  color: #ccc;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: url('pirarucu-tefe.jpg') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

.hero-content p {
  margin: 1rem 0;
  font-size: 1.2rem;
  color: #ccc;
}

.hero-buttons .btn,
.hero-buttons .btn-outline {
  padding: 0.8rem 1.5rem;
  border: 2px solid #00ffff;
  margin: 0 0.5rem;
  text-decoration: none;
  color: #00ffff;
  transition: 0.3s;
}

.btn {
  background: #00ffff;
  color: #000;
}

.btn:hover,
.btn-outline:hover {
  background: #00ffff55;
}

/* Highlights */
.highlights {
  padding: 3rem 2rem;
  background: #111;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #1a1a1a;
  padding: 2rem;
  border: 1px solid #00ffff33;
  border-radius: 12px;
  width: 200px;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00ffff66;
}

.gallery {
  padding: 3rem 2rem;
  background: #0f0f0f;
  text-align: center;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 90%;
  margin: 2rem auto;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
  gap: 1rem;
}

.carousel-item {
  flex: 0 0 300px;
  border: 1px solid #00ffff44;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.carousel-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}

.carousel-item img:hover {
  transform: scale(1.05);
}

/* Botões do carrossel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00ffff33;
  border: none;
  padding: 0.5rem 1rem;
  color: #00ffff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
}

.carousel-btn.left {
  left: 0;
}
.carousel-btn.right {
  right: 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10;
}

.lightbox img {
  max-width: 80%;
  max-height: 70vh;
  border: 4px solid #00ffff99;
  border-radius: 10px;
}

.lightbox-actions {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.lightbox a,
.lightbox button {
  background: #00ffff33;
  border: none;
  padding: 0.5rem 1rem;
  color: #00ffff;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
}


/* About */
.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  background: #111;
  gap: 2rem;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  background: #1a1a1a;
  height: 200px;
  border: 1px dashed #00ffff44;
}

/* Footer */
footer {
  background: #000;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #222;
  color: #666;
}
body.light-mode {
  background: #f5f5f5;
  color: #111;
}
