/*!*****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./app/components/chatbot.module.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************/
/* ===========================================================
   EVEREST ASSISTANT — CHATBOT PRO MAX ULTRA LARGE V2
   Autor: Chronos & Vadin 🔥
=========================================================== */

.chatbot_chatWindow__TJ3sl {
  position: fixed;
  bottom: 95px;
  right: 30px;
  width: 480px;
  height: 660px;

  background: rgba(15, 15, 20, 0.92);
  -webkit-backdrop-filter: blur(26px);
          backdrop-filter: blur(26px);
  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 28px;
  display: flex;
  flex-direction: column;

  z-index: 999999;
  box-shadow: 0 0 50px rgba(110, 35, 255, 0.45),
              0 0 80px rgba(20, 20, 20, 0.9);

  animation: chatbot_fadeIn__geEJa 0.25s ease;
}

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

/* ===========================================================
    HEADER
=========================================================== */

.chatbot_header__rDGQL {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(25, 25, 32, 0.45);
  border-radius: 28px 28px 0 0;
}

.chatbot_headerLeft__fCRs_ {
  display: flex;
  align-items: center;
  gap: 14px;
}

.chatbot_title__5ieou {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.chatbot_subtitle__CVGhx {
  font-size: 0.75rem;
  color: #a7a7ab;
}

.chatbot_closeBtn__tFZgW {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: #ccc;
  transition: 0.2s;
}

.chatbot_closeBtn__tFZgW:hover {
  color: white;
  transform: scale(1.15);
}

/* ===========================================================
   AVATAR PRO MAX V2
=========================================================== */

.chatbot_avatar__Zls2c {
  width: 55px;
  height: 55px;
  border-radius: 18px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Estados del avatar */
.chatbot_idle__yW4Qi {
  filter: drop-shadow(0 0 12px rgba(140, 80, 255, 0.4));
}

.chatbot_happy__WvQDh {
  transform: scale(1.07) rotate(2deg);
  filter: drop-shadow(0 0 20px rgba(140, 255, 160, 0.8));
}

.chatbot_idea__SpL_j {
  transform: scale(1.05);
  filter: drop-shadow(0 0 18px rgba(255, 230, 130, 0.8));
}

.chatbot_alert__rN_Du {
  transform: scale(1.08);
  filter: drop-shadow(0 0 20px rgba(255, 110, 110, 0.85));
}

.chatbot_calendar__PKBS1 {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(110, 180, 255, 0.8));
}

.chatbot_money__0DeBM {
  transform: scale(1.05);
  filter: drop-shadow(0 0 18px rgba(90, 255, 140, 0.9));
}

.chatbot_thinking__ts9oR {
  animation: chatbot_thinkingPulse__AvgRQ 1.2s infinite ease-in-out;
  filter: drop-shadow(0 0 16px rgba(200, 100, 255, 0.8));
}

@keyframes chatbot_thinkingPulse__AvgRQ {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}


/* ===========================================================
    QUICK SUGGESTIONS
=========================================================== */

.chatbot_suggestions__rzIRO {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 18px;
}

.chatbot_suggestionBtn__hgsMu {
  padding: 6px 14px;
  font-size: 0.82rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e9e9ee;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: 0.2s;
}

.chatbot_suggestionBtn__hgsMu:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}


/* ===========================================================
    MESSAGE AREA
=========================================================== */

.chatbot_messages__j_GNr {
  flex: 1 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: #7f5eff transparent;
}

.chatbot_messages__j_GNr::-webkit-scrollbar {
  width: 7px;
}

.chatbot_messages__j_GNr::-webkit-scrollbar-thumb {
  background: #7f5eff;
  border-radius: 6px;
}

.chatbot_botMessage__E81Tl {
  max-width: 85%;
  padding: 16px 20px;
  background: linear-gradient(
    155deg,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.06)
  );
  border-radius: 20px;
  color: white;
  font-size: 0.97rem;
  line-height: 1.45;
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}

.chatbot_userMessage___KEI6 {
  max-width: 80%;
  padding: 14px 18px;
  background: #7f2dff;
  border-radius: 20px;
  color: #fff;
  font-size: 0.96rem;
  margin-left: auto;
  box-shadow: 0 0 18px rgba(127,45,255,0.5);
}


/* ===========================================================
    TYPING INDICATOR
=========================================================== */

.chatbot_typingIndicator__KtAoh {
  display: flex;
  gap: 6px;
  padding: 10px;
}

.chatbot_typingIndicator__KtAoh span {
  width: 9px;
  height: 9px;
  background: #bbb;
  border-radius: 50%;
  animation: chatbot_blink__b3Sr5 1.4s infinite both;
}

.chatbot_typingIndicator__KtAoh span:nth-child(2) {
  animation-delay: 0.2s;
}

.chatbot_typingIndicator__KtAoh span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes chatbot_blink__b3Sr5 {
  0% { opacity: .2; transform: translateY(0); }
  20% { opacity: 1; transform: translateY(-2px); }
  100% { opacity: .2; transform: translateY(0); }
}


/* ===========================================================
    INPUT AREA
=========================================================== */

.chatbot_inputBox__qYiSl {
  padding: 18px;
  display: flex;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(20,20,28,0.85);
  border-radius: 0 0 28px 28px;
}

.chatbot_inputBox__qYiSl input {
  flex: 1 1;
  padding: 14px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  outline: none;
  border: none;
  color: white;
  font-size: 0.95rem;
}

.chatbot_sendBtn__nxajS {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, #a020f0, #7f2dff);
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(127,45,255,0.5);
  transition: 0.2s;
}

.chatbot_sendBtn__nxajS:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(127,45,255,0.8);
}


/* ===========================================================
   MOBILE RESPONSIVE
=========================================================== */

@media (max-width: 600px) {
  .chatbot_chatWindow__TJ3sl {
    width: 96%;
    right: 2%;
    bottom: 90px;
    height: 82vh;
  }

  .chatbot_messages__j_GNr {
    padding: 14px;
  }
}

/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./app/components/footer.module.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************/
.footer_footer__wCyt8 {
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.25);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: 100%;
}

.footer_container__S0an7 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer_grid__MwQSX {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 3rem;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer_col__vFiOK {
  color: var(--text-muted);
}

/* BRAND */
.footer_logo__OQqcy {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.footer_text__5QRQs {
  max-width: 280px;
  line-height: 1.6;
}

/* TITLES */
.footer_colTitle__h7iiy {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #fff;
  letter-spacing: 0.4px;
}

/* LISTS */
.footer_list__JrvhR {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer_list__JrvhR li {
  margin-bottom: 0.6rem;
}

.footer_list__JrvhR li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: 0.25s;
}

.footer_list__JrvhR li a:hover {
  color: var(--primary);
}

/* SOCIAL ICONS */
.footer_socials__wQ0AV {
  display: flex;
  gap: 1rem;
  margin-top: 1.4rem;
}

.footer_socials__wQ0AV a {
  color: var(--text-muted);
  font-size: 1.3rem;
  transition: 0.25s;
}

.footer_socials__wQ0AV a:hover {
  color: var(--primary);
}

/* COPY */
.footer_bottom__WP9rO {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  opacity: 0.75;
  margin-top: 2rem;
}

/* RESPONSIVE */
@media (max-width: 1150px) {
  .footer_grid__MwQSX {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 850px) {
  .footer_grid__MwQSX {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .footer_grid__MwQSX {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer_socials__wQ0AV {
    justify-content: center;
  }
}

/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./app/components/navbar.module.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************/
/* ============================================
   NAVBAR BASE (DESKTOP)
============================================ */
.navbar_nav__CMMQV {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;

  background: rgba(10, 10, 12, 0.50);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.85rem 0;
  transition: all 0.25s ease;
}

/* Shrink on scroll */
.navbar_scrolled__WW7SD {
  background: rgba(10, 10, 12, 0.75) !important;
  padding: 0.55rem 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
  -webkit-backdrop-filter: blur(22px);
          backdrop-filter: blur(22px);
}

/* ============================================
   CONTAINER
============================================ */
.navbar_container__mvkMD {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ============================================
   LOGO + GLOSSY PREMIUM
============================================ */
.navbar_logoBox__5HSOq {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 180px;
  height: 48px;
  overflow: hidden;
}

.navbar_logo__1_5ug {
  height: 48px !important;
  width: auto;
  object-fit: contain;
}

/* Glossy streak */
.navbar_logoBox__5HSOq::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -150%;
  width: 200%;

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0) 60%
  );

  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.5s ease, transform 1.1s ease;
}

.navbar_logoBox__5HSOq:hover::after {
  opacity: 1;
  transform: translateX(150%);
}

/* ============================================
   DESKTOP LINKS
============================================ */
.navbar_links___knuD {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.navbar_links___knuD li a {
  color: #d6d6dc;
  font-size: 1rem;
  transition: 0.25s ease;
  font-weight: 400;
}

.navbar_links___knuD li a:hover {
  color: #ffffff;
}

/* Active (scrollspy + url) */
.navbar_active__a6FEK {
  color: var(--primary) !important;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(90, 79, 255, 0.45);
}

/* ============================================
   DESKTOP CTA BUTTON
============================================ */
.navbar_cta__rFs8F {
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;

  padding: 10px 22px;
  border-radius: 14px;
  font-weight: 600;

  transition: 0.25s ease;
}

.navbar_cta__rFs8F:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 26px rgba(90, 79, 255, 0.40);
}

/* ============================================
   MOBILE BURGER BUTTON
============================================ */
.navbar_burger__55XDE {
  background: none;
  border: none;
  cursor: pointer;

  display: none;
  font-size: 2rem;
  color: #ffffff;
  opacity: 0.85;
  transition: 0.2s ease;
}

.navbar_burger__55XDE:hover {
  opacity: 1;
}

/* Show burger on mobile */
@media (max-width: 950px) {
  .navbar_links___knuD {
    display: none !important;
  }

  .navbar_cta__rFs8F {
    display: none !important;
  }

  .navbar_burger__55XDE {
    display: block;
  }
}

/* ============================================
   MOBILE MENU PREMIUM
============================================ */
.navbar_backdrop__jTxRy {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 9997;
}

/* Drawer */
.navbar_mobileMenu__qyJrZ {
  position: fixed;
  top: 0;
  right: 0;

  width: 82%;
  max-width: 340px;
  height: 100vh;

  background: rgba(10, 10, 12, 0.92);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 2.4rem 1.6rem;

  z-index: 9999;
  box-shadow: -8px 0 28px rgba(0, 0, 0, 0.55);
}

/* Close button */
.navbar_closeBtn__ytEqD {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.9rem;
  color: #e5e5ea;
  cursor: pointer;
  opacity: 0.75;
}

.navbar_closeBtn__ytEqD:hover {
  opacity: 1;
}

/* Mobile nav links */
.navbar_mobileNav__6J7wV {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 2.2rem;
}

.navbar_mobileNav__6J7wV a {
  color: #d4d4d8;
  font-size: 1.25rem;
  font-weight: 400;
  text-decoration: none;
  transition: 0.25s ease;
}

.navbar_mobileNav__6J7wV a:hover {
  color: #ffffff;
}

/* Active Mobile */
.navbar_activeMobile__e4pZM {
  color: var(--primary) !important;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(90, 79, 255, 0.5);
}

/* Mobile CTA Button */
.navbar_mobileCTA__7ttQ1 {
  background: var(--primary);
  color: white;
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 3rem;
  width: 100%;

  box-shadow: 0 0 16px rgba(90, 79, 255, 0.35);
  transition: 0.25s ease;
}

.navbar_mobileCTA__7ttQ1:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 24px rgba(90, 79, 255, 0.55);
}

/*!*************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./app/components/productMegaMenu.module.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************/
/* =============================== */
/*   MEGA MENU PREMIUM ENTERPRISE  */
/* =============================== */

.productMegaMenu_menu__ICZjm {
  position: absolute;
  top: 65px; /* Justo bajo el navbar */
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  width: 92%;
  max-width: 1320px;

  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.32s ease,
    transform 0.32s cubic-bezier(0.3, 0.1, 0.15, 1);

  z-index: 999999 !important;
}

.productMegaMenu_open__ykt_8 {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* =============================== */
/*   WRAPPER PREMIUM ENTERPRISE    */
/* =============================== */

.productMegaMenu_wrapper__yMCKl {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 2.4rem;
  gap: 2.4rem;

  padding: 2.4rem;

  background: rgba(10, 10, 12, 0.78);
  backdrop-filter: blur(9px) saturate(140%);
  -webkit-backdrop-filter: blur(9px) saturate(140%);

  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);

  box-shadow:
    0 35px 60px rgba(0, 0, 0, 0.35),
    inset 0 0 22px rgba(255, 255, 255, 0.02);

  animation: productMegaMenu_floatFade__h_IrD 0.4s ease both;
}

/* Anti-texto para evitar ver el hero */
.productMegaMenu_wrapper__yMCKl::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  border-radius: inherit;
  z-index: -1;
}

/* Animación */
@keyframes productMegaMenu_floatFade__h_IrD {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =============================== */
/*  COLUMNAS — ALINEACIÓN TOTAL    */
/* =============================== */

/* Sistema grid de dos filas en cada columna:
   - Fila 1: título (altura fija)
   - Fila 2: lista (ocupa el resto)
*/
.productMegaMenu_column__jbGuM {
  display: grid;
  grid-template-rows: 40px 1fr;
  min-height: 170px;

  padding-top: 0.3rem;
  padding-left: 0.2rem;

  border-radius: 14px;
  transition: all 0.28s ease;
}

/* Hover premium */
.productMegaMenu_column__jbGuM:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

/* =============================== */
/*    TITULOS + ICONOS (ALINEADOS) */
/* =============================== */

.productMegaMenu_column__jbGuM h4 {
  height: 40px; /* ALTURA FIJA EXACTA */
  display: flex;
  align-items: center;
  gap: 12px;

  margin: 0;
  padding: 0;

  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;

  letter-spacing: 0.3px;
  text-shadow: 0 0 12px rgba(255,255,255,0.12);
}

.productMegaMenu_icon__mGoF2 {
  width: 20px;          /* 🧩 ancho fijo = alineación PERFECTA */
  display: flex;
  justify-content: center;
}

.productMegaMenu_icon__mGoF2 svg {
  width: 18px;
  height: 18px;
  opacity: 0.75;
  transition: opacity 0.25s ease;
}

.productMegaMenu_column__jbGuM:hover .productMegaMenu_icon__mGoF2 svg {
  opacity: 1;
}

.productMegaMenu_column__jbGuM:hover h4 {
  text-shadow: 0 0 10px rgba(255,255,255,0.18);
}

/* =============================== */
/*        LISTA DE LINKS           */
/* =============================== */

.productMegaMenu_column__jbGuM ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 4px;
}

/* Alineación de items PERFECTA */
.productMegaMenu_column__jbGuM li {
  margin-bottom: 0.7rem;
  line-height: 1.4;

  /* IMPIDE saltos de línea → 100% alineado */
  white-space: nowrap;
}

.productMegaMenu_column__jbGuM a {
  color: #c6c6cf;
  font-size: 0.97rem;

  text-decoration: none;
  padding: 4px 0;

  display: inline-block;
  transition: all 0.25s ease;
  opacity: 0.85;
}

.productMegaMenu_column__jbGuM a:hover {
  color: #ffffff;
  opacity: 1;

  padding-left: 10px;
  text-shadow: 0 0 12px rgba(255,255,255,0.25);
}

/* =============================== */
/*      RESPONSIVE (TABLET)        */
/* =============================== */

@media (max-width: 1100px) {
  .productMegaMenu_wrapper__yMCKl {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
}

/* =============================== */
/*      RESPONSIVE (MOBILE)        */
/* =============================== */

@media (max-width: 750px) {
  .productMegaMenu_wrapper__yMCKl {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.8rem;
    gap: 1.6rem;
  }
}

@media (max-width: 550px) {
  .productMegaMenu_wrapper__yMCKl {
    grid-template-columns: 1fr;
  }
}

/*!*************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./app/components/supportlauncher.module.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************/
/* ===================================================
   BOTÓN FLOTANTE — GLASS + GLOW ANIMADO PREMIUM
=================================================== */
.supportlauncher_floatingBtn__1RV9Q {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;

  background: rgba(15, 15, 18, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: 0.25s ease;
  z-index: 9999;

  /* Glow animado */
  box-shadow:
    0 0 22px rgba(90,79,255,0.38),
    0 0 55px rgba(90,79,255,0.15);

  animation: supportlauncher_pulseGlow__jCD_a 2s ease-in-out infinite;
}

.supportlauncher_floatingBtn__1RV9Q:hover {
  background: rgba(25, 25, 32, 0.75);
  transform: translateY(-4px);

  box-shadow:
    0 0 32px rgba(90,79,255,0.55),
    0 0 65px rgba(90,79,255,0.30);
}

/* Glow suave tipo “latido” */
@keyframes supportlauncher_pulseGlow__jCD_a {
  0% {
    box-shadow:
      0 0 18px rgba(90,79,255,0.28),
      0 0 42px rgba(90,79,255,0.12);
  }
  50% {
    box-shadow:
      0 0 28px rgba(90,79,255,0.48),
      0 0 60px rgba(90,79,255,0.22);
  }
  100% {
    box-shadow:
      0 0 18px rgba(90,79,255,0.28),
      0 0 42px rgba(90,79,255,0.12);
  }
}

/* ===================================================
   TOOLTIP GLASS
=================================================== */
.supportlauncher_tooltip__bvori {
  position: fixed;
  bottom: 98px;
  right: 40px;

  background: rgba(18, 18, 22, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  padding: 6px 12px;
  border-radius: 10px;

  color: #fff;
  font-size: 0.8rem;

  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;

  border: 1px solid rgba(255,255,255,0.22);

  /* Glow interior sutil */
  box-shadow: inset 0 0 12px rgba(255,255,255,0.05),
              0 0 16px rgba(90,79,255,0.25);
}

.supportlauncher_floatingBtn__1RV9Q:hover ~ .supportlauncher_tooltip__bvori {
  opacity: 1;
  transform: translateY(-6px);
}

/* ===================================================
   PANEL GLASS PREMIUM
=================================================== */
.supportlauncher_panel__NREz3 {
  position: fixed;
  bottom: 105px;
  right: 30px;

  width: 280px;
  padding: 20px;

  background: rgba(15, 15, 18, 0.55);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border-radius: 22px;

  border: 1px solid rgba(255,255,255,0.18);

  /* Bordes internos glowing */
  box-shadow:
    inset 0 0 22px rgba(255,255,255,0.06),
    0 0 45px rgba(0,0,0,0.55);

  z-index: 9999;

  animation: supportlauncher_glassIn__hXl9M 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes supportlauncher_glassIn__hXl9M {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    box-shadow:
      inset 0 0 0 rgba(255,255,255,0),
      0 0 5px rgba(0,0,0,0.35);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===================================================
   ITEMS GLASS
=================================================== */
.supportlauncher_item__IOztY {
  width: 100%;
  background: rgba(26, 26, 30, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;

  padding: 12px 14px;
  margin-bottom: 12px;

  display: flex;
  align-items: center;
  gap: 12px;

  color: #e5e5ea;
  cursor: pointer;
  transition: 0.22s ease;

  box-shadow: inset 0 0 12px rgba(255,255,255,0.03);
}

.supportlauncher_item__IOztY:hover {
  background: rgba(32, 32, 36, 0.60);
  border-color: rgba(255,255,255,0.28);
  box-shadow:
    inset 0 0 14px rgba(255,255,255,0.05),
    0 0 12px rgba(90,79,255,0.22);
}

.supportlauncher_item__IOztY span {
  font-size: 0.95rem;
}

/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
/* ============================
   GLOBAL VARIABLES
   ============================ */

:root {
  --bg: #09090b;
  --text: #ffffff;
  --text-muted: #a1a1aa;
  --primary: #5a4fff;
  --primary-dark: #3c33c7;

  /* SPACING */
  --section-padding: 8rem 0;

  /* RADIUS */
  --radius-lg: 20px;
  --radius-md: 14px;
}

/* ============================
   RESET & BASE
   ============================ */

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

html,
body {
  height: 100%;
}

body {
  background-color: var(--bg);
  font-family: Inter, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ============================
   TEXT DEFAULTS
   ============================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

p {
  line-height: 1.6;
  color: var(--text-muted);
}

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

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

/* ============================
   SECTIONS
   ============================ */

section {
  padding: var(--section-padding);
}

/* ============================
   CONTAINER (OPCIONAL GLOBAL)
   ============================ */

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================
   SCROLLBAR (BONUS, MODERNO)
   ============================ */

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

::-webkit-scrollbar-thumb {
  background: #2a2a2d;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3b3b3f;
}

