/* ================================
   SERVICIOS SECTION
================================ */

.servicios {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  padding: 140px 8%;
  background: #f2f3f1;
  color: #111;
}


/* ================================
   LADO IZQUIERDO
================================ */

.servicios-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 16px;
  display: block;
}

.servicios-left h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 76px;
  font-weight: 400;
  margin: 10px 0 24px;
  line-height: 1;
  letter-spacing: 0.01em;
}

.servicios-left p {
  max-width: 440px;
  line-height: 1.8;
  font-size: 16px;
  color: #555;
}


/* ================================
   LADO DERECHO - ACORDEÓN
================================ */

.servicios-right {
  display: flex;
  flex-direction: column;
}


/* Líneas más finas */

.servicio-item {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.servicio-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}


/* Header */

.servicio-header {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;

  color: #111;            
  text-align: left;        
  outline: none;            
}

.servicio-header:hover {
  opacity: 0.65;
}


/* Icono */

.servicio-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #666;
  transition: transform 0.3s ease;
}


/* Contenido */

.servicio-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.servicio-content p {
  padding-bottom: 32px;
  max-width: 520px;
  line-height: 1.75;
  font-size: 15px;
  color: #666;
}


/* Estado activo */

.servicio-item.active .servicio-content {
  max-height: 280px;
}

.servicio-item.active .servicio-icon {
  transform: rotate(45deg);
}

.servicios-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.servicios-left.show {
  opacity: 1;
  transform: translateX(0);
}

.servicio-item {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s ease;
}

.servicio-item.show {
  opacity: 1;
  transform: translateX(0);
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {

  .servicios {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 120px 8%;
  }

  .servicios-left h2 {
    font-size: 56px;
  }

  .servicio-header {
    font-size: 26px;
    -webkit-tap-highlight-color: transparent;
  }

}
