@import "https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --primary: #3b46f1;
  --primary-hover: #2630d9;
  --primary-light: #eff1fe;
  --purple: #6366f1;
  --purple-light: #eef2ff;
  --green: #10b981;
  --green-hover: #059669;
  --green-light: #ecfdf5;
  --orange: #f97316;
  --orange-light: #fff7ed;
  --pink: #ec4899;
  --pink-light: #fdf2f8;
  --blue-sky: #0ea5e9;
  --blue-sky-light: #f0f9ff;
  --foreground: #0f172a;
  --foreground-muted: #475569;
  --foreground-light: #94a3b8;
  --background: #fafbfe;
  --background-alt: #f3f5fe;
  --background-dark: #0b1120;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px #0f172a0a;
  --shadow-md: 0 8px 24px #0f172a0f;
  --shadow-lg: 0 16px 40px #0f172a14;
  --shadow-xl: 0 24px 60px #0f172a1f;
  --font-sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --transition-fast: all .15s ease;
  --transition-slow: all .5s cubic-bezier(.4, 0, .2, 1);
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  min-height: 100%;
  color: var(--foreground);
  background: var(--background);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  transition: var(--transition-fast);
  text-decoration: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  font-family: inherit;
}

li {
  list-style: none;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-alt);
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.badge {
  letter-spacing: .02em;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
}

.badge-blue {
  background-color: var(--primary-light);
  color: var(--primary);
}

.badge-purple {
  background-color: var(--purple-light);
  color: var(--purple);
}

.badge-green {
  background-color: var(--green-light);
  color: var(--green);
}

.badge-orange {
  background-color: var(--orange-light);
  color: var(--orange);
}

/* [project]/src/components/FloatingContactButtons.module.css [app-client] (css) */
.FloatingContactButtons-module__2_nAXq__floatBtn {
  color: #fff;
  z-index: 9999;
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: fixed;
  box-shadow: 0 8px 24px #0f172a26, 0 16px 40px #0f172a1a;
}

.FloatingContactButtons-module__2_nAXq__whatsappBtn {
  background-color: #25d366;
  animation: 3s infinite FloatingContactButtons-module__2_nAXq__whatsappPulse;
  bottom: 30px;
  left: 30px;
}

.FloatingContactButtons-module__2_nAXq__whatsappBtn:hover {
  background-color: #20ba5a;
  transform: scale(1.08)translateY(-2px);
  box-shadow: 0 12px 30px #25d3664d, 0 20px 48px #25d36633;
}

.FloatingContactButtons-module__2_nAXq__whatsappBtn:active {
  transform: scale(.95)translateY(0);
}

.FloatingContactButtons-module__2_nAXq__phoneBtn {
  background-color: #6366f1;
  animation: 3s 1.5s infinite FloatingContactButtons-module__2_nAXq__phonePulse;
  bottom: 30px;
  right: 30px;
}

.FloatingContactButtons-module__2_nAXq__phoneBtn:hover {
  background-color: #4f46e5;
  transform: scale(1.08)translateY(-2px);
  box-shadow: 0 12px 30px #6366f14d, 0 20px 48px #6366f133;
}

.FloatingContactButtons-module__2_nAXq__phoneBtn:active {
  transform: scale(.95)translateY(0);
}

.FloatingContactButtons-module__2_nAXq__tooltip {
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--shadow-sm);
  pointer-events: none;
  background-color: #0f172a;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  position: absolute;
  bottom: 75px;
  transform: translateY(10px);
}

.FloatingContactButtons-module__2_nAXq__tooltip:after {
  content: "";
  border: 5px solid #0000;
  border-top-color: #0f172a;
  position: absolute;
  top: 100%;
}

.FloatingContactButtons-module__2_nAXq__whatsappBtn .FloatingContactButtons-module__2_nAXq__tooltip {
  left: 0;
}

.FloatingContactButtons-module__2_nAXq__whatsappBtn .FloatingContactButtons-module__2_nAXq__tooltip:after {
  left: 25px;
}

.FloatingContactButtons-module__2_nAXq__phoneBtn .FloatingContactButtons-module__2_nAXq__tooltip {
  right: 0;
}

.FloatingContactButtons-module__2_nAXq__phoneBtn .FloatingContactButtons-module__2_nAXq__tooltip:after {
  right: 25px;
}

.FloatingContactButtons-module__2_nAXq__floatBtn:hover .FloatingContactButtons-module__2_nAXq__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes FloatingContactButtons-module__2_nAXq__whatsappPulse {
  0% {
    box-shadow: 0 0 #25d36680, 0 8px 24px #0f172a26;
  }

  50% {
    box-shadow: 0 0 0 15px #25d36600, 0 8px 24px #0f172a26;
  }

  100% {
    box-shadow: 0 0 #25d36600, 0 8px 24px #0f172a26;
  }
}

@keyframes FloatingContactButtons-module__2_nAXq__phonePulse {
  0% {
    box-shadow: 0 0 #6366f180, 0 8px 24px #0f172a26;
  }

  50% {
    box-shadow: 0 0 0 15px #6366f100, 0 8px 24px #0f172a26;
  }

  100% {
    box-shadow: 0 0 #6366f100, 0 8px 24px #0f172a26;
  }
}

@media (max-width: 480px) {
  .FloatingContactButtons-module__2_nAXq__floatBtn {
    width: 50px;
    height: 50px;
  }

  .FloatingContactButtons-module__2_nAXq__whatsappBtn {
    bottom: 20px;
    left: 20px;
  }

  .FloatingContactButtons-module__2_nAXq__phoneBtn {
    bottom: 20px;
    right: 20px;
  }

  .FloatingContactButtons-module__2_nAXq__tooltip {
    bottom: 60px;
  }
}

/*# sourceMappingURL=src_0sl53db._.css.map*/