* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


body {
  background: #000003;
  overflow-x: hidden;
}

.logo {
  display: flex;
  align-items: center;
}

.container {
  width: 100%;
  width: 1440px;
}

.wrap{
  margin: 0px 0.1rem;
}

/* Button */

.button_link {
  display: flex;
  height: 48px;
  padding: 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #c1c1c1;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.225px;
  cursor: pointer;
  font-family: IBM Plex Sans, sans-serif !important;
  transition: all 0.3s ease;
}

.button_link--primary {
  background: var(--color-gray-400);
  color: var(--color-blue-100);
}

.button_link--primary:hover{
  background: #414141
}

/* Button secondary */


.button_link--secondary {
  color: var(--color-white-100);
  z-index: 1;
  overflow: hidden;
  background: transparent;
  position: relative;
}

/* Pseudo-elements cobrindo o botão todo */
.button_link--secondary {
  position: relative;
  color: var(--color-white-100);
  z-index: 1;
  overflow: hidden;
  background: transparent;
}

.button_link--secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    97.5deg,
    var(--color-blue-100) 2.39%,
    var(--color-purple-100) 97.61%
  );
  z-index: -1;
  transform-origin: center;   /* O segredo! recolhe de fora pra dentro */
  transform: scaleY(1);       /* Começa cheio */
  transition: transform 0.4s ease;
}

.button_link--secondary:hover::before {
  transform: scaleY(0);       /* Recolhe para o centro → fica transparente */
}


/* ######################### */


.button_link--outline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white-100);
  border-radius: 8px;
  padding: 10px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 0;
  overflow: hidden; /* importante para conter a bolha */
  transition: color 0.3s ease;
}

.button_link--outline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 2px; /* espessura da borda */
  background: linear-gradient(
    97deg,
    var(--Brand-Primary-900, #00c8ff) 0%,
    var(--Brand-Secondary-900, #e0f) 102.55%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.button_link--outline:hover::before {
  opacity: 0; /* some a borda no hover */
}

.button_link--outline::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    97deg,
    var(--Brand-Primary-900, #00c8ff),
    var(--Brand-Secondary-900, #e0f)
  );
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  opacity: 0;
  z-index: -2;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.button_link--outline:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.button_link--outline:hover {
  color: var(--color-white-100);
}


/* Titles */

.title--highlight {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Castoro, sans-serif;
  font-style: italic;
  font-weight: 400;
}


.smooth-wrapper {
  height: 100%;
  overflow: hidden; /* importante para o ScrollSmoother */
}

.smooth-content {
  will-change: transform;
}

/* Width GradientText */ 

.content-optimization-title__letter--A{
  width: 60px;
}

.content-optimization-title__letter--R{
  width: 40PX;
}

.content-optimization-title__letter--G{
  width: 45px;
}