.banner {
  background: linear-gradient(to bottom, rgba(0, 228, 245, 0.12) 0%, rgba(0, 228, 245, 0.00) 100%);
}

nav {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.line-highlight {
  position: absolute;
  bottom: -1px;
  width: 100%;
  left: 0;
}

.texto-cinza {
  color: #676F7E;
}

.texto-petroleo {
  color: #1A404D;
}

.badge {
  display: inline-flex;
  padding: 0.8rem 1rem;
  align-items: center;
  gap: 0.8rem;

  border-radius: 9999px;
  border: 1px solid rgba(0, 228, 245, 0.50);
  background: rgba(0, 228, 245, 0.30);
  backdrop-filter: blur(2px);

  .badge--icon {
    width: 16px;
    height: 16px;
  }

  .badge--text {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
  }
}

.badge__light {
  background-color: #00E4F51A;
  border: none;
}

.scroll__item {
  align-content: center;

  img {
    width: 80px;
    height: 40px;
  }
}

.clients-item {
  &::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: rgba(0, 228, 245, 0.40);
    bottom: 40%;
    left: 0.5rem;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  80% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 1s alternate ease-in-out;
}

#email-input {
  height: 56px;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #FFF;
}

#email-input:focus {
  border-color: #00e4f5;
}

#email-input:focus-visible {
  border-width: 1px;
  border-color: #00e4f5;
  box-shadow: 0 0 0 2px hsl(210 20% 98%), 0 0 0 calc(2px + 2px) hsl(184 100% 48%), 0 0 #0000, 0 0 #0000;
  outline: none;
}

.metrics {
  .metrics--icon {
    width: 24px;
    height: 24px;
  }

  .metrics--text-highlight {
    color: #1A404D;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
  }

  .metrics--description {
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }
}

.bg-azul-light {
  background-color: #00E4F566;
}

.baseboard {
  position: sticky;
  bottom: 0;
  padding: 1rem 0;

  .baseboard--text {
    color: #FFFFFFB2;
    font-size: 14px;
  }

  .baseboard--divider {
    background-color: #676F7E;
    width: 0.2rem;
    height: 50%;
    margin: auto 1rem;
  }
}

@keyframes border-color {
  to {
    border: 1px solid var(--border-color);
  }
}

@keyframes show-extra-info {
  to {
    opacity: 0.2;
  }
}

@keyframes show-text {
  to {
    opacity: 1;
  }
}

.text-blue {
  color: #0066CC;
}

.text-red {
  color: #E53935;
}

.text-green {
  color: #8CC63F;
}

.text-cyan {
  color: #00BFB7;
}

.card-tempo {
  --border-color-blue: rgba(0, 102, 204, 0.376);
  --border-color-red: rgba(229, 57, 53, 0.376);
  --border-color-green: rgba(140, 198, 63, 0.376);
  --border-color-cyan: rgba(0, 191, 183, 0.376);

  --radial-gradient-blue: rgb(0, 102, 204);
  --radial-gradient-red: rgb(229, 57, 53);
  --radial-gradient-green: rgb(140, 198, 63);
  --radial-gradient-cyan: rgb(0, 191, 183);

  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 20px;
  border: 1px solid rgba(224, 230, 235, 0.60);
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(2px);
  transition: transform 500ms;
  transform: none;
  animation: none;
  position: relative;
  overflow: hidden;


  h3 {
    color: #131720;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
  }

  p {
    color: #676F7E;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.75px;
    min-height: 4rem;
  }

  .card-tempo--extra {
    opacity: 0;
    position: absolute;
    background: transparent;
    animation: none;
    top: -2rem;
    right: 0;
    width: 60%;
    height: 50%;
    background: radial-gradient(var(--gradient), #FFFFFF);
    border-bottom-left-radius: 400px;
    display: none;
  }

  .show-text {
    opacity: 0;
    display: flex;
    flex-direction: column;
    z-index: 1;

    p {
      margin: 0;
      padding: 0;
    }

    strong {
      text-align: right;
    }
  }

  &:hover {
    transform: translateY(-1rem);
    animation: border-color 100ms 1s forwards;

    .card-tempo--extra {
      animation: show-extra-info 3s forwards;
      display: block;
    }

    .show-text {
      animation: show-text 1s forwards;
    }
  }
}

.cta {
  svg {
    width: 16px;
    height: 16px;
  }
}

.bg-light {
  background: #F9FAFB;
}

.bg-neutral {
  background: #E8EBEE33;
}

.depoiments--card {
  background: #FFFFFF;
}

.stars {
  margin-right: 0.5rem;

  &:last-child {
    margin-right: 0;
  }
}

.cards-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;

  .cards-content--title {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
  }

  .cards-content--description {
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.75px;
  }
}

nav {
  position: sticky;
  top: 0;
  z-index: 999;
}

@keyframes cta {
  to {
    transform: translate(100%, -50%) rotate(130deg)
  }
}

.animate-cta {
  position: relative;
  overflow: hidden;
  padding: 0.6rem 1rem;

  &::before {
    content: '';
    top: 17px;
    left: 0;
    width: 100%;
    height: 60%;
    position: absolute;
    filter: blur(4px);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.65) 0%, transparent 70%);
    transform: translate(-100%, -50%) rotate(130deg);
    animation: cta 2s alternate infinite;
  }
}

@media (max-width: 425px) {

  .merlin-button-message-close,
  .merlin-popup-message {
    display: none;
  }
}