/* =========================================================
   JUNTAÍ - SITE OFICIAL
   ========================================================= */


/* =========================================================
   RESET
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    Helvetica,
    sans-serif;

  background:
    linear-gradient(
      145deg,
      #080a18 0%,
      #0c1025 45%,
      #111027 100%
    );

  color: #ffffff;

  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}



/* =========================================================
   FUNDO
   ========================================================= */

.background-effects {
  position: fixed;
  inset: 0;

  overflow: hidden;

  pointer-events: none;

  z-index: -1;
}

.glow {
  position: absolute;

  width: 600px;
  height: 600px;

  border-radius: 50%;

  filter: blur(110px);

  opacity: 0.17;
}

.glow-blue {
  background: #315dff;

  left: -300px;
  top: -180px;
}

.glow-pink {
  background: #ff298e;

  right: -270px;
  top: 100px;
}

.glow-orange {
  background: #ff8a25;

  right: 20%;
  bottom: -400px;

  opacity: 0.08;
}



/* =========================================================
   HEADER
   ========================================================= */

.header {
  width: 100%;

  position: relative;

  z-index: 20;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
  width: min(1180px, calc(100% - 48px));

  min-height: 92px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 35px;
}

.brand {
  display: flex;

  align-items: center;

  text-decoration: none;
}

.brand-logo {
  width: 160px;

  height: auto;

  display: block;

  object-fit: contain;
}

.nav {
  display: flex;

  align-items: center;

  gap: 29px;

  margin-left: auto;
}

.nav a {
  color: #c8cadb;

  text-decoration: none;

  font-size: 14px;

  font-weight: 500;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav a:hover {
  color: #ffffff;

  transform: translateY(-1px);
}

.header-button {
  min-height: 44px;

  padding: 0 19px;

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  border-radius: 12px;

  background:
    linear-gradient(
      100deg,
      #536fff,
      #9f50fa,
      #f94391
    );

  font-size: 14px;

  font-weight: 700;

  box-shadow:
    0 9px 28px rgba(115, 75, 255, 0.26);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.header-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 15px 35px rgba(115, 75, 255, 0.35);
}



/* =========================================================
   HERO
   ========================================================= */

.hero {
  width: 100%;

  min-height: 690px;

  display: flex;

  align-items: center;
}

.hero-container {
  width: min(1180px, calc(100% - 48px));

  margin: 0 auto;

  padding: 75px 0 85px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(380px, 0.95fr);

  align-items: center;

  gap: 70px;
}

.hero-content {
  position: relative;

  z-index: 5;
}

.hero-badge {
  width: fit-content;

  min-height: 40px;

  padding: 0 16px;

  display: flex;

  align-items: center;

  gap: 9px;

  border:
    1px solid rgba(255, 255, 255, 0.13);

  border-radius: 100px;

  background:
    rgba(255, 255, 255, 0.055);

  color: #d9dbea;

  font-size: 13px;

  margin-bottom: 28px;

  backdrop-filter: blur(12px);
}

.badge-icon {
  width: 20px;
  height: 20px;

  flex-shrink: 0;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  color: #9d80ff;
}

.badge-icon svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.9;

  stroke-linecap: round;

  stroke-linejoin: round;
}

.hero-title {
  max-width: 690px;

  font-size:
    clamp(55px, 6.2vw, 89px);

  line-height: 0.96;

  letter-spacing: -5px;

  font-weight: 850;

  margin-bottom: 28px;
}

.hero-title span {
  display: block;

  width: fit-content;

  padding-right: 8px;

  background:
    linear-gradient(
      90deg,
      #42a7ff 0%,
      #5d71ff 24%,
      #9f4eff 48%,
      #ff3e91 72%,
      #ff9d32 100%
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;
}

.hero-description {
  max-width: 650px;

  color: #b7bbce;

  font-size: 18px;

  line-height: 1.75;

  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 13px;
}

.button {
  min-height: 54px;

  padding: 0 24px;

  border-radius: 14px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 13px;

  text-decoration: none;

  font-size: 15px;

  font-weight: 750;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.button-primary {
  color: white;

  background:
    linear-gradient(
      100deg,
      #506cff 0%,
      #9852ff 50%,
      #fa428e 100%
    );

  box-shadow:
    0 15px 40px rgba(114, 76, 255, 0.28);
}

.button-primary:hover {
  transform: translateY(-3px);

  box-shadow:
    0 20px 48px rgba(114, 76, 255, 0.38);
}

.button-secondary {
  color: #ffffff;

  background:
    rgba(255, 255, 255, 0.055);

  border:
    1px solid rgba(255, 255, 255, 0.15);
}

.button-secondary:hover {
  transform: translateY(-3px);

  border-color:
    rgba(255, 255, 255, 0.28);

  background:
    rgba(255, 255, 255, 0.08);
}

.button-arrow {
  font-size: 21px;

  line-height: 1;
}

.hero-features {
  display: flex;

  flex-wrap: wrap;

  gap: 20px;

  margin-top: 27px;
}

.mini-feature {
  display: flex;

  align-items: center;

  gap: 7px;

  color: #8e94aa;

  font-size: 12px;

  white-space: nowrap;
}

.mini-icon {
  width: 19px;
  height: 19px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      rgba(81, 110, 255, 0.38),
      rgba(162, 73, 255, 0.28)
    );

  border:
    1px solid rgba(255,255,255,.08);

  font-size: 10px;
}



/* =========================================================
   HERO IMAGE
   ========================================================= */

.hero-visual {
  width: 100%;

  min-height: 500px;

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;
}

.hero-image {
  width: 100%;

  max-width: 540px;

  max-height: 590px;

  object-fit: contain;

  position: relative;

  z-index: 3;

  filter:
    drop-shadow(
      0 35px 42px rgba(41, 32, 128, 0.35)
    );
}

.hero-image-glow {
  position: absolute;

  width: 390px;
  height: 390px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      rgba(74, 92, 255, 0.34),
      rgba(238, 56, 173, 0.26),
      rgba(255, 160, 36, 0.13)
    );

  filter: blur(70px);

  opacity: 0.65;
}



/* =========================================================
   SEÇÕES
   ========================================================= */

.section {
  padding: 110px 0;
}

.section-container {
  width: min(1180px, calc(100% - 48px));

  margin: 0 auto;
}

.section-heading {
  max-width: 720px;

  margin: 0 auto 55px;

  text-align: center;
}

.section-label {
  display: block;

  color: #949cff;

  font-size: 12px;

  font-weight: 850;

  letter-spacing: 2px;

  margin-bottom: 18px;
}

.section-heading h2 {
  font-size:
    clamp(37px, 5vw, 58px);

  line-height: 1.06;

  letter-spacing: -2.5px;

  margin-bottom: 20px;
}

.section-heading h2 span {
  background:
    linear-gradient(
      90deg,
      #6688ff,
      #b452fb,
      #fd5092
    );

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;
}

.section-heading p {
  max-width: 660px;

  margin: 0 auto;

  color: #a5a9bd;

  font-size: 17px;

  line-height: 1.7;
}



/* =========================================================
   SISTEMA DE ÍCONES JUNTAÍ
   ========================================================= */

.juntai-icon {
  width: 62px;
  height: 62px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  position: relative;

  overflow: hidden;

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(73, 104, 255, 0.22),
      rgba(151, 70, 255, 0.18),
      rgba(255, 59, 145, 0.12)
    );

  border:
    1px solid rgba(255, 255, 255, 0.09);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 32px rgba(76, 61, 190, 0.12);

  color: #a887ff;
}

.juntai-icon::before {
  content: "";

  position: absolute;

  width: 40px;
  height: 40px;

  left: -15px;
  top: -18px;

  border-radius: 50%;

  background: rgba(65, 160, 255, 0.20);

  filter: blur(13px);
}

.juntai-icon::after {
  content: "";

  position: absolute;

  width: 40px;
  height: 40px;

  right: -15px;
  bottom: -18px;

  border-radius: 50%;

  background: rgba(255, 61, 148, 0.17);

  filter: blur(13px);
}

.juntai-icon svg {
  width: 29px;
  height: 29px;

  position: relative;

  z-index: 2;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.8;

  stroke-linecap: round;

  stroke-linejoin: round;

  filter:
    drop-shadow(
      0 3px 7px rgba(115, 75, 255, 0.20)
    );
}

.juntai-icon.small {
  width: 48px;
  height: 48px;

  border-radius: 14px;
}

.juntai-icon.small svg {
  width: 23px;
  height: 23px;
}

.juntai-icon.medium {
  width: 55px;
  height: 55px;

  border-radius: 17px;
}

.juntai-icon.medium svg {
  width: 26px;
  height: 26px;
}

/* VARIAÇÕES DE COR */

.icon-blue {
  color: #63a9ff;
}

.icon-purple {
  color: #a47cff;
}

.icon-pink {
  color: #ff6aa9;
}

.icon-orange {
  color: #ffad57;
}



/* =========================================================
   PASSOS
   ========================================================= */

.steps-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}

.step-card {
  min-height: 310px;

  padding: 31px;

  position: relative;

  overflow: hidden;

  border:
    1px solid rgba(255, 255, 255, 0.075);

  border-radius: 23px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.025)
    );

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-7px);

  border-color:
    rgba(126, 101, 255, 0.33);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.085),
      rgba(255, 255, 255, 0.03)
    );

  box-shadow:
    0 22px 55px rgba(33, 24, 92, 0.22);
}

.step-number {
  position: absolute;

  right: 25px;
  top: 22px;

  color:
    rgba(255, 255, 255, 0.08);

  font-size: 47px;

  font-weight: 900;
}

.step-icon {
  width: auto;
  height: auto;

  display: flex;

  align-items: center;

  justify-content: flex-start;

  margin-bottom: 32px;

  border-radius: 0;

  background: none;

  font-size: 0;
}

.step-card h3 {
  font-size: 23px;

  margin-bottom: 13px;
}

.step-card p {
  color: #a6aabd;

  font-size: 15px;

  line-height: 1.75;
}



/* =========================================================
   SOBRE
   ========================================================= */

.about-section {
  padding-top: 55px;
}

.about-container {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}

.about-card {
  min-height: 170px;

  padding: 27px;

  display: flex;

  gap: 19px;

  align-items: flex-start;

  border-radius: 19px;

  border:
    1px solid rgba(255, 255, 255, 0.065);

  background:
    rgba(255, 255, 255, 0.027);

  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.about-card:hover {
  transform: translateY(-4px);

  border-color:
    rgba(128, 104, 255, 0.20);

  background:
    rgba(255, 255, 255, 0.038);
}

.about-icon {
  width: auto;
  height: auto;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 0;

  background: none;

  font-size: 0;
}

.about-card h3 {
  margin-bottom: 8px;

  font-size: 18px;
}

.about-card p {
  color: #969bae;

  font-size: 14px;

  line-height: 1.65;
}



/* =========================================================
   SUPORTE - ÍCONES
   ========================================================= */

.support-icon {
  width: auto !important;
  height: auto !important;

  display: flex !important;

  align-items: center !important;

  justify-content: flex-start !important;

  margin-bottom: 23px !important;

  border-radius: 0 !important;

  background: none !important;

  font-size: 0 !important;
}



/* =========================================================
   EXCLUSÃO DE CONTA - ÍCONE
   ========================================================= */

.delete-icon {
  width: auto !important;
  height: auto !important;

  display: flex !important;

  align-items: center !important;

  justify-content: center !important;

  margin: 0 auto 25px !important;

  border-radius: 0 !important;

  background: none !important;

  border: none !important;

  font-size: 0 !important;
}



/* =========================================================
   DOWNLOAD
   ========================================================= */

.download-section {
  width: min(1180px, calc(100% - 48px));

  margin: 0 auto;

  padding: 80px 0 120px;
}

.download-card {
  min-height: 450px;

  position: relative;

  overflow: hidden;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  padding: 70px 30px;

  border-radius: 31px;

  border:
    1px solid rgba(255, 255, 255, 0.10);

  background:
    linear-gradient(
      135deg,
      rgba(76, 91, 255, 0.17),
      rgba(201, 56, 218, 0.12),
      rgba(255, 111, 62, 0.10)
    );
}

.download-glow {
  width: 500px;
  height: 500px;

  position: absolute;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(122, 84, 255, 0.30),
      rgba(247, 62, 160, 0.08),
      transparent 68%
    );

  filter: blur(20px);
}

.download-content {
  max-width: 700px;

  position: relative;

  z-index: 3;
}

.download-content h2 {
  max-width: 650px;

  margin: 0 auto 20px;

  font-size:
    clamp(40px, 5.5vw, 66px);

  line-height: 1;

  letter-spacing: -3px;
}

.download-content p {
  max-width: 590px;

  margin: 0 auto;

  color: #b2b5c7;

  font-size: 17px;

  line-height: 1.7;
}

.download-buttons {
  margin-top: 32px;

  display: flex;

  justify-content: center;
}

.store-button {
  min-width: 205px;

  min-height: 64px;

  padding: 10px 18px;

  display: inline-flex;

  align-items: center;

  gap: 13px;

  border-radius: 15px;

  background: #ffffff;

  color: #0c0d18;

  text-decoration: none;

  text-align: left;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.store-button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 17px 40px rgba(0, 0, 0, 0.24);
}

.store-icon {
  width: 35px;
  height: 35px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;
}

.store-icon svg {
  width: 30px;
  height: 30px;

  display: block;
}

.store-button small {
  display: block;

  color: #6e7080;

  font-size: 9px;

  letter-spacing: 0.7px;
}

.store-button strong {
  display: block;

  font-size: 18px;

  line-height: 1.1;
}

.coming-soon {
  margin-top: 15px !important;

  color: #7e8298 !important;

  font-size: 12px !important;
}



/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  border-top:
    1px solid rgba(255, 255, 255, 0.065);

  background:
    rgba(2, 4, 13, 0.24);
}

.footer-container {
  width: min(1180px, calc(100% - 48px));

  margin: 0 auto;

  padding: 60px 0;

  display: grid;

  grid-template-columns:
    1fr auto;

  gap: 80px;
}

.footer-logo {
  width: 145px;

  height: auto;

  margin-bottom: 15px;
}

.footer-brand p {
  max-width: 300px;

  color: #7f8498;

  font-size: 14px;

  line-height: 1.6;
}

.footer-links {
  display: grid;

  grid-template-columns:
    repeat(3, auto);

  gap: 65px;
}

.footer-column {
  display: flex;

  flex-direction: column;

  gap: 11px;
}

.footer-column strong {
  margin-bottom: 5px;

  color: #ffffff;

  font-size: 13px;
}

.footer-column a {
  color: #858a9e;

  text-decoration: none;

  font-size: 13px;

  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  width: min(1180px, calc(100% - 48px));

  min-height: 72px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  border-top:
    1px solid rgba(255, 255, 255, 0.055);

  color: #606579;

  font-size: 12px;
}

.footer-bottom a {
  text-decoration: none;

  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .nav {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;

    gap: 25px;

    padding-top: 60px;

    text-align: center;
  }

  .hero-content {
    display: flex;

    flex-direction: column;

    align-items: center;
  }

  .hero-title {
    max-width: 730px;
  }

  .hero-description {
    max-width: 650px;
  }

  .hero-buttons,
  .hero-features {
    justify-content: center;
  }

  .hero-visual {
    min-height: 450px;
  }

  .hero-image {
    max-width: 470px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .footer-links {
    justify-content: start;
  }

}



/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 650px) {

  .header-container {
    width: min(100% - 30px, 1180px);

    min-height: 77px;
  }

  .brand-logo {
    width: 125px;
  }

  .header-button {
    min-height: 40px;

    padding: 0 14px;

    font-size: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-container {
    width: min(100% - 30px, 1180px);

    padding:
      52px 0 60px;

    gap: 10px;
  }

  .hero-badge {
    font-size: 11px;

    padding: 0 13px;
  }

  .hero-title {
    font-size:
      clamp(49px, 16vw, 68px);

    line-height: 0.98;

    letter-spacing: -3px;

    margin-bottom: 23px;
  }

  .hero-description {
    font-size: 16px;

    line-height: 1.65;

    margin-bottom: 28px;
  }

  .hero-buttons {
    width: 100%;

    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-features {
    gap: 10px 17px;

    justify-content: center;
  }

  .mini-feature {
    font-size: 10px;
  }

  .hero-visual {
    min-height: 390px;

    margin-top: 20px;
  }

  .hero-image {
    max-width: 380px;
  }

  .hero-image-glow {
    width: 290px;
    height: 290px;
  }

  .section {
    padding: 75px 0;
  }

  .section-container {
    width: min(100% - 30px, 1180px);
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2 {
    font-size: 38px;

    letter-spacing: -2px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .step-card {
    padding: 25px;
  }

  .about-card {
    padding: 22px;
  }

  .download-section {
    width: min(100% - 30px, 1180px);

    padding:
      50px 0 80px;
  }

  .download-card {
    min-height: 410px;

    padding: 55px 22px;

    border-radius: 25px;
  }

  .download-content h2 {
    font-size: 42px;

    letter-spacing: -2px;
  }

  .download-content p {
    font-size: 15px;
  }

  .footer-container {
    width: min(100% - 30px, 1180px);

    padding:
      45px 0;
  }

  .footer-links {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 40px 20px;
  }

  .footer-bottom {
    width: min(100% - 30px, 1180px);

    padding: 20px 0;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;
  }

}



/* =========================================================
   CELULARES PEQUENOS
   ========================================================= */

@media (max-width: 390px) {

  .header-button {
    display: none;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-image {
    max-width: 320px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

}