/* ===== Secci¨®n Servicios ===== */
.servicios-section {
  position: relative;
  background-color: #071520;
  padding: 80px 20px;
  color: #fff;
  overflow: hidden;
}

/* Marca de agua */
.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.09;
  z-index: 0;
}
.watermark img {
  max-width: 1000px;
}

/* T¨ªtulos */
.servicios-title {
  text-align: center;
  color: #f9b233;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  z-index: 1;
  position: relative;

  /* Estado inicial invisible para scroll */
  opacity: 0;
}

.servicios-subtitle {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
  z-index: 1;
  position: relative;

  /* Estado inicial invisible para scroll */
  opacity: 0;
}

/* Grid */
.servicios-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.servicios-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Cards */
.servicio-card {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 12px;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* Estado inicial invisible para scroll */
  opacity: 0;
}

.servicio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.servicio-card img {
  width: 100px;
  flex-shrink: 0;
}

.servicio-card-content {
  flex: 1;
}

.servicio-card-content h3 {
  color: #f9b233;
  font-size: 20px;
  margin-bottom: 8px;
}

.servicio-card-content p {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ===== Animaciones ===== */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Clases que se agregan al hacer scroll */
.animate-left {
  animation: slideInLeft 0.8s forwards;
}

.animate-right {
  animation: slideInRight 0.8s forwards;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .servicios-grid {
    flex-direction: column;
    align-items: center;
  }
  .servicios-col {
    width: 100%;
  }
}

