/*--------------------------------------------------------------
# Price Plan
--------------------------------------------------------------*/

 
html[dir="rtl"] #price-plan-section .base-btn-card-price-plan img {
transform: rotate(180deg);
}
 
#price-plan-section .wrapper-card-price-plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 55px;
  margin-top: 90px;

}

#price-plan-section .card-price-plan {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
  padding: 30px;
  border: 1px solid var(--color-gray-dark);
  background: var(--bg-card-price-plan);
  border-radius: 8px;
}

#price-plan-section .title-card-price-plan {
  font-family: Gabarito;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 28px;
  color: var(--white);
  line-height: 100%;
  letter-spacing: 0%;

}

#price-plan-section .short-description-card-plan {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  color: var(--color-gray-light);
  line-height: 120%;
  margin-top: 10px;

}

#price-plan-section .price {
  font-family: Gabarito;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 40px;
  color: var(--white);
  line-height: 100%;
  letter-spacing: 0%;

}

#price-plan-section .action-text {
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 18px;
  color: var(--white);
  line-height: 100%;
  margin-bottom: 20px;
}

#price-plan-section .details-price-plan {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#price-plan-section .data-details {
  display: flex;
  align-items: center;
  gap: 10px;
}

#price-plan-section .description-plan {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  color: var(--white);
  line-height: 100%;
  letter-spacing: 0%;

}

#price-plan-section .base-btn-card-price-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 50px;
  border-radius: 8px;
}

#price-plan-section .btn-card-price-plan {
  background: linear-gradient(90deg,
      rgba(237, 109, 95, 1),
      rgba(235, 94, 113, 1),
      rgba(231, 80, 138, 1));
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-first-btn-hero);
  line-height: 100%;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


#price-plan-section .btn-card-price-plan span,
#price-plan-section .btn-card-price-plan img {
  display: inline-block;
  transition: transform 0.3s ease;
}

#price-plan-section .btn-card-price-plan:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

#price-plan-section .btn-card-price-plan:hover span {
  transform: translateX(5px);
}

#price-plan-section .btn-card-price-plan:hover img {
  transform: translateX(10px);
}


@media(max-width :1100px) {
  #price-plan-section .wrapper-card-price-plan {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width :786px) {
  #price-plan-section .wrapper-card-price-plan {
    grid-template-columns: repeat(1, 1fr);
  }
}
