.containerServices {
  width: 98%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.images-column {
  width: 40%;
  min-height: 550px;
  position: relative;
}

.images-column img {
  position: absolute;
  width: 55%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  cursor: pointer;
  border-radius: 50%;
}

.images-column img:nth-child(1) {
  top: 0;
  right: 0;
  transform: rotate(-6deg);
  -webkit-transform: rotate(-6deg);
  -moz-transform: rotate(-6deg);
  -ms-transform: rotate(-6deg);
  -o-transform: rotate(-6deg);

}

.images-column img:nth-child(2) {
  top: 60px;
  right: 200px;
  transform: rotate(4deg);
  -webkit-transform: rotate(4deg);
  -moz-transform: rotate(4deg);
  -ms-transform: rotate(4deg);
  -o-transform: rotate(4deg);

}

.images-column img:nth-child(3) {
  top: 230px;
  right: 0;
  transform: rotate(-3deg);
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
}

.images-column img:nth-child(4) {
  top: 250px;
  left: 0px;
  transform: rotate(4deg);
  -webkit-transform: rotate(4deg);
  -moz-transform: rotate(4deg);
  -ms-transform: rotate(4deg);
  -o-transform: rotate(4deg);
}

.images-column img:nth-child(5) {
  bottom: -60px;
  right: 0;
  transform: rotate(-6deg);
  -webkit-transform: rotate(-6deg);
  -moz-transform: rotate(-6deg);
  -ms-transform: rotate(-6deg);
  -o-transform: rotate(-6deg);
}

.images-column img:nth-child(6) {
  bottom: -60px;
  left: 0;
  transform: rotate(4deg);
  -webkit-transform: rotate(4deg);
  -moz-transform: rotate(4deg);
  -ms-transform: rotate(4deg);
  -o-transform: rotate(4deg);
}

.images-column img:nth-child(7) {
  bottom: -40px;
  left: 50%;
  transform: rotate(4deg);
  -webkit-transform: rotate(4deg);
  -moz-transform: rotate(4deg);
  -ms-transform: rotate(4deg);
  -o-transform: rotate(4deg);

}

.images-column img:hover {
  transform: scale(1.03) rotate(0deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 10;
  -webkit-transform: scale(1.03) rotate(0deg);
  -moz-transform: scale(1.03) rotate(0deg);
  -ms-transform: scale(1.03) rotate(0deg);
  -o-transform: scale(1.03) rotate(0deg);
}

.text-column {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.small-title {
  position: relative;
  display: inline-block;
  width: fit-content;
  background-color: var(--lightHelper);
  color: var(--text-header);
  padding: 6px 18px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 15px;
  overflow: visible;
  z-index: 1;
}


h1 {
  font-size: 2rem;

  color: var(--primaryColor);

  line-height: 1.1;
}

p.description {
  font-size: 1.1rem;
  line-height: 2rem;
  color: var(--middleColor);
}

.text-column ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.1rem;
  color: var(--middleColor);
}


ul.features-list li {
  text-align: start;

}

.text-column a {
  direction: ltr;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  gap: 3px;
  width: fit-content;
  margin: auto;
  padding: 10px 10px;
  background: var(--gray);
  color: var(--whatsappColor);
  font-weight: 400;
  font-size: medium;
  text-decoration: none;
  border-radius: 25px;
  border: 1px solid var(--whatsappColor);
  box-shadow: 0px 4px 6px var(--shadow);
  transition: transform 0.5s ease-in-out;
}

.icon i {
  font-size: large;
  font-weight: bold;
}

.text-column a:hover {
  transform: scaleX(1.02);
}


/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

@media (max-width:800px) {
  .containerServices {
    width: 98%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .text-column {
    width: 95%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .text-column a {
    width: 70%;
    margin: auto;
  }

  .images-column {
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(fit-content, 1fr));
    gap: 12px;
    position: static !important;
    height: auto !important;

  }

  .images-column img {
    position: static;
    width: 90%;
    margin: auto;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }
}