.color-text-title {
    color: #8A5B87;
}

.color-text-title-30 {
    color: #8A5B874D;
}


.bg-primary {
    color: #89A6A2;

}

.bg-secondary {
    color: #BFBFBF;

}

.bg-gradient-custom {
    background: linear-gradient(to bottom, #787179, #003A34);
}

.color-primary {
    color: black;
}

.color-primary:hover {
    color: #8A5B87;
}

body {
    font-family: "castoro", serif;
  }

.font-serif {
    font-family: "castoro", serif;
}

h1, h2, h3, p, ul, li {
    font-family: "castoro", sans-serif;
    font-weight: 400;
}



.animated-line {
  transform-origin: center;
  transform: scaleX(0); /* linea nascosta inizialmente */
}

.animated-line.animate {
  animation: expand-line 1.2s ease-out forwards;
}

@keyframes expand-line {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.dots-bg {
   width: 100%;
  height: 120%; /* leggermente più alto per coprire tutto */
  background-image: radial-gradient(circle, rgba(134,32,126,0.05) 2px, transparent 2px);
  background-size: 40px 40px;
  background-position: top left;
  background-repeat: repeat;
}


@keyframes floatDots {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200px 200px;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-slide-in-right {
  animation: slideInRight 1s ease-out forwards;
}

.process {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.06);
}



