#servicios {
  background-color: var(--bg-light);
  font-family: var(--font-base);
}

#servicios * {
  font-family: var(--font-base) !important;
}

#servicios h1, 
#servicios p {
  color: var(--text-color);
}

#servicios-title {
  font-family: var(--font-base) !important;
  color: var(--primary-color); /* Usamos el mismo color platino */
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.6s ease;
}

#servicios-description {
  font-family: var(--font-base) !important;
  color: var(--text-color);
  text-align: center;
  font-size: 1.25rem;
  font-weight: normal;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.6s ease;
}

/* Cuando aparece */
#servicios-title.show, #servicios-description.show {
  opacity: 1;
  transform: translateY(0);
}


.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  background-color: var(--secondary-color);
  border-radius: var(--radius-base);
  height: 80px;
}

.marquee-content {
  display: flex;
  width: fit-content;
  white-space: nowrap;
  animation: marquee-scroll 15s linear infinite;
  align-items: center;
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--text-color);
  padding: 1rem 0;
}

.marquee-content span {
  margin-right: 4rem;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

#servicios-carousel img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-base);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
