body {
  font-family: 'Sora', sans-serif;
  background-color: #0D0D0D;
  color: #F8F8F8;
  margin: 0;
  padding: 0;
}

.portfolio-container {
  width: 90%;
  max-width: 1000px;
  margin: 60px auto;
  text-align: center;
}

.portfolio-container h1 {
  font-size: 2.2rem;
  color: #BEBEBE;
  border-bottom: 2px solid #8B0000;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.intro-text {
  color: #F8F8F8;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.portfolio-section {
  margin: 80px 0;
}

.portfolio-section h2 {
  color: #BEBEBE;
  font-size: 1.6rem;
  border-left: 5px solid #8B0000;
  padding-left: 15px;
  text-align: left;
  display: inline-block;
  margin-bottom: 25px;
}

/* === CARROSSEL === */
.carousel {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 420px;
  margin: 0 auto;
  overflow: hidden;
  background: #111;
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}

.carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  flex-shrink: 0;
  background: #0D0D0D;
  display: block;
}

/* === BOTÕES - MAIS AFASTADOS === */
.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  z-index: 2;
  transition: background 0.3s;
}

.carousel button:hover {
  background: rgba(139, 0, 0, 0.9);
}

.prev {
  left: 25px; /* Aumentado de 15px para 25px */
}

.next {
  right: 25px; /* Aumentado de 15px para 25px */
}

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
  .carousel {
    height: 350px;
    max-width: 95%;
  }
  
  .carousel button {
    padding: 8px 12px;
    font-size: 1.5rem;
  }
  
  .prev {
    left: 15px; /* Menos afastado em mobile */
  }
  
  .next {
    right: 15px; /* Menos afastado em mobile */
  }
  
  .portfolio-container h1 {
    font-size: 1.8rem;
  }
  
  .portfolio-section h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .carousel {
    height: 280px;
  }
  
  .carousel button {
    padding: 6px 10px;
    font-size: 1.2rem;
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }
}

/* === INDICADORES === */
.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-indicator.active {
  background: #8B0000;
}