body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb;
  color: #0f172a;
  scroll-behavior: smooth;
}

.gradient {
  background: linear-gradient(90deg, #0f4c81, #3bb4c1);
}

.text-gradient {
  background: linear-gradient(90deg, #0f4c81, #3bb4c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.line-connector {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #0f4c81, #3bb4c1);
  animation: pulseLine 3s ease-in-out infinite;
}

@keyframes pulseLine {
  0%, 100% {
    opacity: .7;
  }
  50% {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.9;
  }
}

.float {
  animation: float 4s ease-in-out infinite;
}

.breathe {
  animation: breathe 2.5s ease-in-out infinite;
}

.glow:hover {
  filter: drop-shadow(0 0 6px rgba(15, 76, 129, 0.35));
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
}

h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
}

.plan-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.pricing-section {
  background: linear-gradient(180deg, #f9fbfc 0%, #f3f8fb 100%);
}

.plan-card button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.plan-card button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.plan-card button:hover::after {
  left: 120%;
}

.glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Animação de flutuação */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-card {
  animation: float 4s ease-in-out infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.animate-fadeIn {
  animation: fadeIn 1.2s ease-in-out forwards;
}

.animate-float {
  animation: float 3.5s ease-in-out infinite, fadeIn 1.5s ease-in-out forwards;
}

@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-down {
  animation: fade-in-down 0.4s ease-out;
}
