@import "https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --md-sys-color-primary: #ea580c;
  --md-sys-color-on-primary: #fff;
  --md-sys-color-primary-container: #ffedd5;
  --md-sys-color-on-primary-container: #7c2d12;
  --md-sys-color-secondary: #d97706;
  --md-sys-color-secondary-container: #fef3c7;
  --md-sys-color-surface: #fffaf5;
  --md-sys-color-on-surface: #0f172a;
  --md-sys-color-surface-variant: #f1f5f9;
  --md-sys-color-on-surface-variant: #475569;
  --md-sys-color-outline: #cbd5e1;
  --md-sys-color-outline-variant: #e2e8f0;
  --md-sys-elevation-1: 0px 1px 3px 1px #00000026, 0px 1px 2px 0px #0000004d;
  --md-sys-elevation-3: 0px 4px 8px 3px #00000026, 0px 1px 3px 0px #0000004d;
  --md-sys-shape-corner-large: 28px;
  --md-sys-shape-corner-extra-large: 48px;
  --md-sys-shape-corner-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--md-sys-color-surface);
  color: var(--md-sys-color-on-surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-family: Google Sans, Roboto, system-ui, -apple-system, sans-serif !important;
}

h1, h2, h3, h4, h5, h6, p, a, li, td, th, div, span, strong, b {
  font-family: Google Sans, Roboto, system-ui, -apple-system, sans-serif;
}

input, button, textarea, select, option, label {
  font-family: Google Sans, Roboto, system-ui, -apple-system, sans-serif !important;
}

a {
  color: inherit;
  text-decoration: none;
}

.opacity-0 {
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: perspective(1000px)rotateX(12deg)translateY(50px)scale(.95);
  }

  to {
    opacity: 1;
    transform: perspective(1000px)rotateX(0)translateY(0)scale(1);
  }
}

.animate-in {
  animation: .8s cubic-bezier(.2, .8, .2, 1) forwards fadeInUp;
}

.delay-100 {
  animation-delay: .1s;
}

.delay-200 {
  animation-delay: .2s;
}

.delay-300 {
  animation-delay: .3s;
}

.delay-400 {
  animation-delay: .4s;
}

.delay-500 {
  animation-delay: .5s;
}

.delay-600 {
  animation-delay: .6s;
}

/* [project]/src/components/header/Header.module.css [app-client] (css) */
.Header-module__zCemKG__headerWrapper {
  z-index: 100;
  pointer-events: none;
  padding: 1rem;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.Header-module__zCemKG__headerWrapper.Header-module__zCemKG__scrolled {
  padding: 1rem;
}

.Header-module__zCemKG__nav {
  pointer-events: auto;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 24px;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  display: flex;
}

.Header-module__zCemKG__headerWrapper.Header-module__zCemKG__scrolled .Header-module__zCemKG__nav {
  -webkit-backdrop-filter: blur(20px);
  background-color: #fffaf5d9;
  border: 1px solid #ea580c26;
  border-radius: 50px;
  max-width: 1100px;
  padding: .6rem 1.5rem;
  box-shadow: 0 10px 40px -10px #ea580c14;
}

.Header-module__zCemKG__logo {
  color: #0f172a;
  letter-spacing: -.5px;
  align-items: center;
  gap: .75rem;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
}

.Header-module__zCemKG__logo:hover {
  transform: scale(1.05);
}

.Header-module__zCemKG__desktopNav {
  gap: .5rem;
  list-style: none;
  display: none;
}

.Header-module__zCemKG__desktopNav a {
  color: #475569;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  position: relative;
}

.Header-module__zCemKG__desktopNav a:hover {
  color: #ea580c;
  background-color: #ea580c14;
}

.Header-module__zCemKG__desktopActions {
  align-items: center;
  gap: 1rem;
  display: none;
}

.Header-module__zCemKG__loginBtn {
  color: #ea580c;
  border: 2px solid #0000;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}

.Header-module__zCemKG__loginBtn:hover {
  background-color: #ea580c14;
  border-color: #ea580c26;
  transform: translateY(-1px);
}

.Header-module__zCemKG__registerBtn {
  color: #fff;
  background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
  border: 1px solid #fff3;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: 0 4px 15px #ea580c40;
}

.Header-module__zCemKG__registerBtn:hover {
  background: linear-gradient(135deg, #d64a05 0%, #ea580c 100%);
  transform: translateY(-2px)scale(1.02);
  box-shadow: 0 8px 25px #ea580c66;
}

.Header-module__zCemKG__mobileMenuButton {
  cursor: pointer;
  color: #0f172a;
  background: none;
  border: none;
  border-radius: 50%;
  padding: 4px;
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1);
  display: block;
}

.Header-module__zCemKG__mobileMenuButton:active {
  background: #0f172a0d;
  transform: scale(.85);
}

.Header-module__zCemKG__mobileMenuButton:hover {
  color: #ea580c;
}

.Header-module__zCemKG__mobileMenu {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  pointer-events: auto;
  transform-origin: top;
  background-color: #fffffffa;
  border: 1px solid #ea580c1a;
  border-radius: 28px;
  padding: 2rem 1.5rem;
  animation: .4s cubic-bezier(.16, 1, .3, 1) forwards Header-module__zCemKG__slideDown;
  position: absolute;
  top: 100%;
  left: 1rem;
  right: 1rem;
  box-shadow: 0 20px 50px #0000001a;
}

@keyframes Header-module__zCemKG__slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px)scale(.95)rotateX(-10deg);
  }

  to {
    opacity: 1;
    transform: translateY(10px)scale(1)rotateX(0);
  }
}

.Header-module__zCemKG__mobileMenu ul {
  text-align: center;
  flex-direction: column;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.Header-module__zCemKG__mobileMenu a {
  color: #1e293b;
  border-radius: 16px;
  padding: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.Header-module__zCemKG__mobileMenu a:hover {
  color: #ea580c;
  background: #ea580c14;
  transform: translateX(5px);
}

.Header-module__zCemKG__mobileActions {
  border-top: 1px solid #ea580c1a;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  display: flex;
}

.Header-module__zCemKG__mobileActions .Header-module__zCemKG__loginBtn {
  text-align: center;
  border: 1px solid #ea580c33;
  padding: 12px;
}

.Header-module__zCemKG__mobileActions .Header-module__zCemKG__registerBtn {
  text-align: center;
  padding: 14px;
}

@media (min-width: 900px) {
  .Header-module__zCemKG__desktopNav, .Header-module__zCemKG__desktopActions {
    display: flex;
  }

  .Header-module__zCemKG__mobileMenuButton, .Header-module__zCemKG__mobileMenu {
    display: none;
  }
}

/* [project]/src/components/footer/Footer.module.css [app-client] (css) */
.Footer-module__q7ZRWa__footer {
  color: #1e293b;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 5rem 0 2rem;
}

.Footer-module__q7ZRWa__container {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
}

.Footer-module__q7ZRWa__brandColumn {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.Footer-module__q7ZRWa__logo {
  color: var(--md-sys-color-primary);
  align-items: center;
  gap: .5rem;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}

.Footer-module__q7ZRWa__seoText {
  color: #64748b;
  text-align: justify;
  max-width: 90%;
  font-size: .85rem;
  line-height: 1.6;
}

.Footer-module__q7ZRWa__socialRow {
  gap: .75rem;
  margin-top: .5rem;
  display: flex;
}

.Footer-module__q7ZRWa__socialIcon {
  color: #64748b;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.Footer-module__q7ZRWa__socialIcon:hover {
  background: var(--md-sys-color-primary);
  color: #fff;
  border-color: var(--md-sys-color-primary);
  transform: translateY(-3px);
}

.Footer-module__q7ZRWa__column h4 {
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.Footer-module__q7ZRWa__linkList {
  flex-direction: column;
  gap: .8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.Footer-module__q7ZRWa__linkList a, .Footer-module__q7ZRWa__linkList span {
  color: #64748b;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.Footer-module__q7ZRWa__linkList a:hover {
  color: var(--md-sys-color-primary);
}

.Footer-module__q7ZRWa__whatsappFloat {
  color: #166534;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  padding: .6rem 1.2rem;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.Footer-module__q7ZRWa__whatsappFloat:hover {
  background: #bbf7d0;
  transform: scale(1.05);
}

.Footer-module__q7ZRWa__bottomBar {
  color: #94a3b8;
  border-top: 1px solid #e2e8f0;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 4rem auto 0;
  padding: 2rem 2rem 0;
  font-size: .8rem;
  display: flex;
}

.Footer-module__q7ZRWa__legalLinks {
  gap: 2rem;
  display: flex;
}

.Footer-module__q7ZRWa__legalLinks a {
  color: #94a3b8;
  text-decoration: none;
  transition: color .2s;
}

.Footer-module__q7ZRWa__legalLinks a:hover {
  color: var(--md-sys-color-primary);
}

@media (max-width: 900px) {
  .Footer-module__q7ZRWa__container {
    text-align: center;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .Footer-module__q7ZRWa__seoText {
    text-align: center;
    margin: 0 auto;
  }

  .Footer-module__q7ZRWa__socialRow, .Footer-module__q7ZRWa__linkList a, .Footer-module__q7ZRWa__linkList span {
    justify-content: center;
  }

  .Footer-module__q7ZRWa__bottomBar {
    text-align: center;
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* [project]/src/components/FloatingWhatsApp.module.css [app-client] (css) */
.FloatingWhatsApp-module__QndPVW__floatingWrapper {
  z-index: 9999;
  pointer-events: none;
  align-items: center;
  gap: 16px;
  display: flex;
  position: fixed;
  bottom: 30px;
  right: 30px;
}

.FloatingWhatsApp-module__QndPVW__tooltip {
  color: #1e293b;
  opacity: 0;
  pointer-events: auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 800;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  transform: translateX(10px);
  box-shadow: 0 10px 25px #0000001a;
}

.FloatingWhatsApp-module__QndPVW__floatingWrapper:hover .FloatingWhatsApp-module__QndPVW__tooltip {
  opacity: 1;
  transform: translateX(0);
}

.FloatingWhatsApp-module__QndPVW__whatsappBtn {
  color: #fff;
  pointer-events: auto;
  background-color: #25d366;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  font-size: 2.2rem;
  text-decoration: none;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
  position: relative;
  box-shadow: 0 10px 20px #25d36666;
}

.FloatingWhatsApp-module__QndPVW__whatsappBtn:before {
  content: "";
  z-index: -1;
  background-color: #25d366;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: 2s cubic-bezier(0, 0, .2, 1) infinite FloatingWhatsApp-module__QndPVW__pulsePing;
  position: absolute;
  top: 0;
  left: 0;
}

.FloatingWhatsApp-module__QndPVW__whatsappBtn:hover {
  background-color: #128c7e;
  transform: scale(1.1)rotate(-10deg);
  box-shadow: 0 15px 30px #25d36699;
}

@keyframes FloatingWhatsApp-module__QndPVW__pulsePing {
  0% {
    opacity: .8;
    transform: scale(1);
  }

  75%, 100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@media (max-width: 768px) {
  .FloatingWhatsApp-module__QndPVW__floatingWrapper {
    bottom: 20px;
    right: 20px;
  }

  .FloatingWhatsApp-module__QndPVW__tooltip {
    display: none;
  }

  .FloatingWhatsApp-module__QndPVW__whatsappBtn {
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
  }
}

/* [project]/src/components/GlobalParallax.module.css [app-client] (css) */
.GlobalParallax-module__52uTgG__parallaxWrapper {
  pointer-events: none;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.GlobalParallax-module__52uTgG__parallaxIcon {
  opacity: .03;
  will-change: transform;
  transition: transform .1s cubic-bezier(.33, 1, .68, 1);
  position: absolute;
}

.GlobalParallax-module__52uTgG__icon1 {
  color: #3b82f6;
  filter: blur(4px);
  top: 10%;
  left: 5%;
}

.GlobalParallax-module__52uTgG__icon2 {
  color: #ea580c;
  filter: blur(2px);
  top: 40%;
  right: 10%;
}

.GlobalParallax-module__52uTgG__icon3 {
  color: #10b981;
  filter: blur(6px);
  top: 70%;
  left: 15%;
}

.GlobalParallax-module__52uTgG__icon4 {
  color: #8b5cf6;
  filter: blur(3px);
  top: 20%;
  right: 25%;
}

.GlobalParallax-module__52uTgG__icon5 {
  color: #f59e0b;
  filter: blur(5px);
  top: 80%;
  right: 20%;
}

@media (max-width: 768px) {
  .GlobalParallax-module__52uTgG__parallaxWrapper {
    display: none;
  }
}

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