







/* Banner Komodo */
.komodo-banner {
  background: #ffffff;
  border-top: 4px solid #00B5C0;
  overflow: hidden;
  position: relative;
}

.komodo-banner .komodo-title {
  font-family: 'Asap', sans-serif;
  font-size: 2rem;
  color: #18252C;
  letter-spacing: 1px;
}

.komodo-banner .highlight {
  color: #00B5C0;
}

.komodo-banner p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.komodo-carousel-wrapper {
  position: relative;
  margin-top: 2rem;
}

/* Dragon Komo */
.komodo-banner .komo-dragon {
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  opacity: 0.9;
  pointer-events: none;
}

/* Carousel */
.komodo-carousel {
  overflow: hidden;
  width: 100%;
}

.komodo-carousel .track {
  display: flex;
  gap: 1.5rem;
  animation: komodoScroll 20s linear infinite;
}

.komodo-carousel .slide {
  flex: 0 0 auto;
  width: 220px;
  height: 220px;
  border-radius: 1rem;
  background: #fff;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.komodo-carousel .slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Animación infinita */
@keyframes komodoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
