:root{
  --primaryColor:black;
  --middleColor:#826C5F;
  --helperColor:#BD8256;
  --lightHelper:#EFE6DD;
  --hrColor:rgba(255, 235, 205, 0.671);
  --transparentColor:rgba(255, 235, 205, 0.548);
  --shadow:rgba(189, 188, 188, 0.514);
 /* --------------------------------- */
  --whatsappColor:#25D366;
  --white:#ffff;
  --blue: #1877F2;
  --green: #25D366;
  --gray:  #f8f8f8;
}


.containerServices {
   width: 98%;
    margin: 20px 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%;
    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: 400px;
    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: 400px;
    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: var(--middleColor);
  }
  
  ul.features-list {
    list-style: inside disc;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--middleColor);

    padding-right: 10px;
  }
  
  ul.features-list li {
    margin-bottom: 12px;
  }
  
  .text-column a{
    text-align: center;
    width: 50%;
    margin: auto;
    padding: 5px;
    background-color: var(--helperColor);
    color: var(--white);
    font-weight: 400;
    font-size: medium;
    text-decoration: none;
    border-radius: 20px;
    border: none;
    transition: transform 0.5s ease-in-out, background-color 0.5s ease-in-out;

}



.text-column a:hover{
  background-color: #ca9063;
   transform: translateY(-10px);
}

.icon{
width: 15%;
max-height: 45px;
}
  /* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

  @media (max-width:800px) {
    
    .containerServices {
      width: 98%;
      margin: 40px auto;
      display: flex;
      flex-direction: column;
    }

    .text-column {
      width:  98%;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .text-column a{
      width: 90%;
      margin: auto;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .images-column {
      width:  90%;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 12px;
      position: static !important;
      height: auto !important;
     
    }
  
    .images-column img {
      position: static !important;
      width: 100%;
      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;
    }
  }