.works-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.works-section h2 {
  color: #d47a7a;
  font-size: 28px;
  margin-bottom: 10px;
}

.section-description {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}


/* Carrusel */
.carousel-container {
  margin-left: 10%;
  position: relative;
  width: 100%;
  max-width: 850px;
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(212,122,122,0.8);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-btn:hover {
  background-color: #c06666;
}

.prev { left: 10px; }
.next { right: 10px; }


/* ===== Responsive ===== */
@media (max-width: 768px) {
  .fixed-images img,
  .carousel img {
    max-width: 90%;
  }
}

.logos-section {
  text-align: center;
  padding: 50px 20px 60px;
  background-color: #fff;
}

.logos-section h3 {
  color: #d47a7a;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 600;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

.logos-grid img {
  width: 100px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
  margin: 0 auto;
}

.logos-grid img:hover {
  opacity: 1;
  transform: scale(1.05);
}