:root{
    --primaryColor:#082A99;
    --middleColor:#325c9b;
    --helperColor:#66D2CE;
    --lightHelper:#EBF4F6;
    --transparentColor:#66d2cf88;
    --shadow:rgba(189, 188, 188, 0.514);
   /* --------------------------------- */
    --whatsappColor:#25D366;
    --white:#ffff;
    --blue: #1877F2;
    --green: #25D366; 
    --gray:  #f8f8f8;
}

.containerServices {
   width: 98%;
    margin: 50px auto 0px auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
  }

  .images-column {
    width:  40%;
    height: 400px;
    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;
  }

  .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) {
    bottom: 0;
    right: 30px;
    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) {
    bottom: 0px;
    right: 200px;
    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(--helperColor);
    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: #575757;
  }
  
  ul.features-list {
    list-style: inside disc;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #444;
    padding-right: 10px;
  }
  
  ul.features-list li {
    margin-bottom: 12px;
  }
  
  .text-column a{
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    gap: 20px;
    width: 50%;
    margin: auto;
    padding: 10px ;
    background: var(--shadow);
    color: var(--primaryColor);
    font-weight: 400;
    font-size: medium;
    text-decoration: none;
    border-radius: 25px;
    border: none;
    transition: border-radius 0.5s ease-in-out;
}

.text-column a:hover{
    border-radius: 0px 25px;
}

.icon{
width: 20%;
max-height: 50px;

background-color: rgba(255, 255, 255, 0);
}
  /* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

  @media (max-width:800px) {
    .containerServices {
      width: 98%;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
    }

    .images-column {
      width:  90%;
      margin: auto;
    }

    .text-column {
      width:  98%;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .text-column a{
      width: 90%;
      margin: auto;
    }

    .images-column {
      display: grid;
      grid-template-columns: repeat(1, minmax(160px, 1fr));
      gap: 12px;
      position: static !important;
      height: auto !important;
     
    }
  
    .images-column img {
      position: static !important;
      width: 70%;
      margin: auto;
      height: auto;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      transition: transform 0.3s ease;
    }
  }