@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=League+Spartan:wght@100..900&display=swap');
:root {
  --logoclr: 100%;
  --bg: #090c12;
  --bgop: #090c12a5;
  --bgsec: #0e121c;
  --secbtn: #1a1f2a;
  --secclr: #1c212d;
  --secclrhover: #2a3140;
  --accent: #F9FAFB;
  --border: #1f2530;
  --borderhover: #2b3344;
  --overlayclr: rgba(3, 3, 5, 0.65);
  --btn: #f8fafc;
  --btnhover: #e2e8f0;
  --btnclr: #0f172a;
  --text: #F1F5F9;
  --loadingclr-1: #1f2530;
  --loadingclr-2: #2b3344;
  --secloading-1: #cecece;
  --secloading-2: #ffffff;

  --shimmer: rgba(255, 255, 255, 0.07);

  --glass-bg: rgba(40,40,40,0.32);
  --glass-border: rgba(255,255,255,0.12);
  --glass-inner: rgba(255,255,255,0.18);
  --glass-shadow: rgba(0, 0, 0, 0.204);
  --glass-blur: blur(32px) saturate(140%);

  .bgradient::after{
    opacity: 0.25;
  }
}

.material-symbols-outlined {
    vertical-align: middle;
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    font-variation-settings:
        'FILL' 1,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: var(--bg);
  -webkit-tap-highlight-color: transparent;
}

body.blockoverflow {
  overflow: hidden;
}

*{
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background .5s ease, color .5s ease, border-color .5s ease;
    user-select: none;
}

html{
    scroll-behavior: smooth;
}

section{
    scroll-margin-top: 100px;
}

img{
    user-select: none !important;
}

.content{
    max-width: 1100px;
    width: 100%;
    padding: 20px;
    margin: 0 auto;
}

.leaguespartan {
    font-family: "League Spartan", sans-serif;
    font-optical-sizing: auto;
}

.navbar{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    padding: 15px 25px;
    border-bottom: 1px solid var(--glass-border);
    background: var(--glass-bg);

    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);

    box-shadow:
        0 10px 24px var(--glass-shadow),
        inset 0 0 1px var(--glass-inner);
}

.navbar-content {
    margin: 0 auto;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    color: var(--text);
}

.navbar .logo {
  display: flex;
  flex-direction: wrap;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  
  gap: 5px;
  img{
    width: 100%;
    max-height: 28px;
    filter: invert(var(--logoclr));
  }
}

.navbar .logo span{
    margin-left: 5px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--bg);
    font-weight: bold;
    text-transform: uppercase;
    background: var(--accent);
    padding: 5px 8px;
    font-size: .8rem;
    border-radius: 10px;
}

.invertwlogo{
    filter: invert(var(--logoclr));
}

.gradient{
    color: white !important;
    background: linear-gradient(135deg, #7C3AED, #6366F1, #06B6D4, #10B981) !important
}

.gradient-text {
    background-image: linear-gradient(155deg, #7C3AED, #6366F1, #06B6D4, #10B981);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bg-animate {
    background-size: 300% 500%;
    animation: move 2s infinite alternate ease;
}


@keyframes move {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--text);
  align-items: center;
  justify-content: center;

  span{
    font-size: 1.5rem;
  }
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}

.nav-links a.dest{
    background: var(--accent) !important;
    padding: 5px 15px;
    color: var(--bg);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--accent);
    border-radius: 20px;
    background: transparent;
    transition: opacity .15s ease, color .15s ease;
}

.nav-links a.destborder{
    background: transparent !important;
    color: var(--accent);
}

.nav-links a.dest:hover{
    opacity: .8;
}

.nav-links a.dest:active{
    opacity: .5;
}

.nav-links a.dest span{
    font-size: 1rem !important;
}

.nav-links a {
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text);
    transition: color 0.3s;
    margin: 5px;
    transition: opacity .2s ease;
    border-radius: 5px;
    font-size: .95rem;
    cursor: pointer;
    padding: 0;
}

.nav-links .icon{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--bg);
    background: var(--accent);
    padding: 5px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.nav-links li {
  transition: opacity .2s ease;
}

.nav-links li:hover {
  opacity: .7;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .navbar{
        z-index: 1000;
    }

    .nav-links {
        position: absolute;
        top: 0;
        left: 8px;
        right: 8px;
        bottom: 0;
        flex-direction: column;
        height: 91vh;
        padding: 20px;
        border-radius: 35px 35px 0 0;
        pointer-events: none;
        opacity: 0;
        transform: translateY(100vh);
        border: 1px solid var(--glass-border);
        background: var(--bg);

        box-shadow:
            0 10px 24px var(--glass-shadow),
            inset 0 0 1px var(--glass-inner);
        transition: transform .4s ease, opacity .2s ease;
    }

    .nav-links li{
        border-top: 1px solid #55555536;
        display: flex;
        width: 100%;
        align-items: center;
        text-align: center;
        flex-direction: column;
        padding-top: 10px;
    }

    .nav-links li:first-child{
        border-top: none;
    }

    .nav-links a{
        margin: 0;
        padding: 8px;
        width: 100%;
        justify-content: space-between !important;
        background: transparent;
    }

    .nav-links.open {
        display: flex;
        pointer-events: all;
        opacity: 1;
        z-index: 1999;
        transform: translateY(10vh);
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }
}

.bgradient {
    position: relative;
    z-index: 0;
}

.bgradient::after{
    content: "";
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    bottom: 0;
    filter: blur(70px);
    z-index: -1;
    background: linear-gradient(
        320deg,
        rgb(124, 58, 237),
        rgb(99, 102, 241),
        rgb(6, 182, 212),
        rgb(16, 185, 129)
    );
    border-radius: 18px;
}

.cool-image{
    align-items: center;
    display: flex;
    justify-content: center;
    img{
        width: 100%;
        max-width: 800px;
    }
}

.ymargin{
    margin: 20px 0;
}

.flexcenter{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    gap: 10px;
}

button{
    font-size: 1rem;
    opacity: .9;
    transition: opacity .2s;
}

button:hover{
    opacity: 1;
}

button:active{
    opacity: .8;
}

/* HERO SECTION */
.hero {
  padding: 5rem 2rem;
  background: linear-gradient(to top, var(--bg), var(--border));
  color: var(--text);
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.hero-column{
    flex-direction: column !important;
}

.hero.nopad{
    padding: 2rem 0;
}

.fade-img img {
  width: 100%;
  display: block;

  /* fade transparente */
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  /* para safari */
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-visual-wrapper {
  position: relative;
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
  max-width: 100vw;
}

.hero-visual img {
  max-width: 800px;
  width: 90%;
  border-radius: 15px 15px 0 0;
  border: 2px solid var(--border);
  opacity: .8;
  transform: rotateX(30deg) translateY(40px);
  transition: transform .8s ease, box-shadow .4s ease, opacity .2s ease;
}

.hero-visual img:hover {
  opacity: 1;
  transform: rotateX(15deg) translateY(20px) scale(1.1);
}

.bgtransparent{
    background: transparent;
}

.hero h1{
    font-weight: 900;
}

h1{
    font-size: 2rem;
}

.faq-section {
    padding: 60px 20px;
    color: var(--text);
}

.faq-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.faq-subtitle {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.5;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text);
    border: 1px solid var(--border);
    background: linear-gradient(135deg, transparent, #6365f134, #06b5d462, #10B981);
    padding: 10px 20px;
    border-radius: 25px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    color: var(--text);
}

.faq-list .faq-item:last-child{
    border: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 5px 0;
  font-size: 1.1rem;
  display: flex;
  gap: 10px;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  transition: opacity .2s ease;
}

.faq-question span {
    opacity: .5;
    transition: transform .4s ease, opacity .2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .2s ease;
  opacity: 0;
}

.faq-answer p {
  padding: 0;
  margin: 0;
}

/* quando abrir */
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 5px 0;
  opacity: .5;
}

.faq-item.open .faq-question span {
    opacity: 1;
    transform: rotate(90deg);
}

.benefits-section {
  color: var(--text);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.darksection{
    background: #07090d;
}

.timeline-section {
    padding: 100px 5px;
    padding-right: 25px;
    color: var(--text);
    background: #07090d;
}

.timeline-img{
    width: 100%;
    max-width: 700px;
    margin: 20px 0;
    border-radius: 25px;
}

.timeline-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
}

.timeline-subtitle {
    text-align: center;
    opacity: .5;
    margin-top: 10px;
    margin-bottom: 60px;
    font-size: 1rem;
}

.timeline {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding-left: 20px;
    color: var(--text);
}

.timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #969696, transparent);
    opacity: 1;
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 60px;
}

.timeline-data{
    opacity: .5;
    border-right: 2px solid var(--border);
    padding-right: 10px;
    margin-right: 10px;
}

.timeline-dot {
    position: absolute;
    left: -6px;
    top: 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(155deg, #7C3AED, #6366F1, #06B6D4, #10B981);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
}

.biztimeline .timeline-dot{
    background: #2563EB;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin: 0 0 6px 0;
}

.timeline-content p {
    opacity: .5;
    line-height: 1.6;
}

/* Responsivo para telas menores */
@media (max-width: 600px) {
  .timeline {
    padding-left: 0;
  }
  .timeline::before {
    left: 12px;
  }
  .timeline-item {
    padding-left: 40px;
  }
  .timeline-dot {
    left: 6px;
  }
}

.changelog-toggle {
    all: unset;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 700;
}

.changelog-arrow {
    transform: rotate(90deg) scale(.8);
    margin-left: auto;
    opacity: .5;
    transition: transform .3s ease, opacity .2s ease;
}

.changelog-toggle.open .changelog-arrow {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.changelog-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s ease;
}

.changelog-body.open {
  max-height: 3000px; /* grande o suficiente */
}

.changelog-body li{
    border-radius: 999px;
}

.changelog-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 20px 0;
}

.summary-pill {
  font-size: .75rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
}

.changelog-badge {
  font-size: .7rem !important;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-right: 8px;
}

.changelog-badge-new { background: rgba(16,185,129,.15); color: #10B981; }
.changelog-badge-improved { background: rgba(99,102,241,.15); color: #6366F1; }
.changelog-badge-fixed { background: rgba(239,68,68,.15); color: #EF4444; }

.benefits-title {
  font-size: clamp(1rem, 6vw, 2rem);
  margin-bottom: 12px;
  text-align: center;
  font-weight: 700;
}

.material-symbols-thin {
    vertical-align: middle;
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    font-variation-settings:
        'FILL' 0,
        'wght' 100,
        'GRAD' 0,
        'opsz' 80
}

.benefits-subtitle {
    text-align: center;
    opacity: .5;
    margin-bottom: 50px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  justify-items: center;
  perspective: 1400px;
}

.benefit-item {
    border: 1px solid var(--glass-border);
    background: transparent;

    box-shadow:
        0 10px 24px var(--glass-shadow),
        inset 0 0 1px var(--glass-inner);
    padding: 25px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    max-width: 360px;
    cursor: default;
    text-align: center;
    transition: box-shadow .4s ease, transform .4s ease, border .2s ease;
}

.benefit-item:hover{
    transform: rotateX(15deg) scale(1.05) translateY(-20px);
    box-shadow:
        0 0 28px #6365f117,
        inset 0 0 1px var(--glass-inner);
}

.benefit-item .icon i{
    color: transparent;
    font-size: 5rem;
    background-image: linear-gradient(155deg, #7C3AED, #6366F1, #06B6D4, #10B981);
    -webkit-background-clip: text;
    background-clip: text;
}

.secbenefit-item {
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px;
    max-width: 360px;
    cursor: default;
    text-align: center;
    opacity: .8;
    transition: opacity .4s ease, border .2s ease;
}

.secbenefit-item:hover{
   opacity: 1;
}

.secbenefit-item .icon i{
    color: transparent;
    opacity: .7;
    font-size: 5rem;
    transition: opacity .2s ease,  transform .4s ease;
     background-image: linear-gradient(155deg, #7C3AED, #6366F1, #06B6D4, #10B981);
    -webkit-background-clip: text;
    background-clip: text;
}

.secbenefit-item:hover .icon i{
    transform: translateY(-10px);
    opacity: 1;
}

.secbenefit-item p {
  opacity: .5;
}

.benefit-item h3 {
  font-size: 1.2rem;
}

.benefit-item p {
  font-size: 15px;
  opacity: .5;
}

.comparison-section {
    color: var(--text);
    padding: 80px 0;
}

.comparison-title {
  text-align: center;
  font-size: clamp(1.2rem, 5vw, 2.5rem);
  font-weight: 800;
}

.comparison-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 10px auto 40px;
  opacity: .5;
}

.comparison-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.comparison-column {
    background: var(--bg);
    padding: 25px;
    border-radius: 25px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 15px;

    hr{
        opacity: .1;
    }
}

.comparison-column.highlight {
    background: linear-gradient(135deg, transparent, #6365f134, #06b5d462, #10B981) !important
}

.comparison-column.highlight i{
    background-image: linear-gradient(155deg, #7C3AED, #6366F1, #06B6D4, #10B981);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 1;
    text-shadow: #6365f160 0 0 15px;
}

.col-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.comparison-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.comparison-item i {
  font-size: 22px;
  opacity: 0.4;
}

.comparison-cta {
  margin-top: 50px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.badges{
    display: flex;
    gap: 5px;
}

.badge{
    background: var(--accent);
    color: var(--bg);
    padding: 5px 10px;
    text-transform:initial;
    font-weight: 700;
    border-radius: 25px;
    opacity: 1;
    font-size: .9rem;
}

.getpack-purple{
    color: white;
    background: linear-gradient(to right, #6e33d5, #A855F7) !important;
}

.biz-blue{
    color: white;
    background: linear-gradient(to left, #2563EB, #1E40AF) !important;
}

.hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text);
  gap: 2rem;
  max-width: 1100px;
  width: 100%;
}

.hero-image {
  flex: 1;
  min-width: 100px;
  max-width: 500px;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-image.appIcon img{
    max-height: 70px;
}

.hero-center{
    text-align: center;
    align-items: center !important;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;

  p{
    opacity: .5;
    font-size: 1.1rem;
  }
}

.flex-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

.mobile-only{
    display: none;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .desktop-only{
        display: none;
    }

    .mobile-only{
        display: flex;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-container.mob-left-align{
        text-align: left;
    }

    .hero-content {
        align-items: center;
    }

    .flex-buttons {
        justify-content: center;
    }
}

.hero .btn {
    padding: 10px 18px;
    font-size: 1rem;
    background-color: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: 25px;
    text-decoration: none;
    opacity: .9;
    font-weight: 600;
    transition: opacity .2s ease, border .2s ease, gap .2s ease;

    i{
        font-size: 1rem;
    }
}


.btn:hover{
    opacity: 1;
}

.btn:active{
    opacity: .8;
}

.getpack-btn{
    color: white !important;
    background: #7C3AED !important;
}

.biz-btn{
    color: white !important;
    background: #2563EB !important;
}

a{
    text-decoration: none;
}

.titleborder{
    font-weight: 700;
}

.btn{
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    border-radius: 25px;
    color: var(--bg);
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    span{
        font-size: 1rem;
    }
}

.btnlist{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: center;

    button{
        width: 100%;
    }
}

@media (max-width: 600px) {
    .btnlist{
        flex-direction: column;
    }
}

.btn-borderoh{
    background: var(--accent);
    border: 2px solid var(--accent) !important;
    transition: background .2s ease, border .2s ease, gap .2s ease, transform .25s cubic-bezier(0.175, 0.885, 0.265, 1.55) !important;
}

.btn-borderoh:hover{
    color: var(--accent);
    background: transparent;
}

.btn-border{
    padding: 8px 15px !important;
    color: var(--accent) !important;
    background: transparent !important;
    border: 2px solid var(--accent) !important;
}

.border2{
    border-color: var(--border) !important;
}

.btn-getpack-border{
    border-color: #7C3AED !important;
}

.btn-biz-border{
    border-color: #2563EB !important;
}

.basespacing {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--text);
    text-align: center;
}

/* PLANOS */
.planos {
    padding: 4rem 2rem;
    color: var(--text);
    text-align: center;
}

.cardlist{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    
    .card{
        width: 100%;
        max-width: 100%;
    }
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.list{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.linkcard{
    color: var(--accent);
    transition: opacity .2s ease;
}

.linkcard:hover{
    opacity: .5;
}

.static{
    transform: scale(1) !important;
}

.card {
    background-color: var(--bgsec);
    padding: min(5%, 25px);
    border-radius: 15px;
    border: 2px solid var(--border);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.104);
    max-width: 300px;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 5px;
    justify-content: space-between;
    align-items: flex-start;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.265, 1.55), background 0.2s ease, border .2s ease;
}

.card.borderoh{
    background: transparent;
    border: 2px solid var(--border);
}

.card.borderoh:hover{
    border: 2px solid var(--accent);
}

.card .title{
    margin: 5px 0;
}

.card .desc{
    font-weight: normal;
    opacity: .7;
    font-size: 1rem;
}

.card:hover {
    transform: scale(1.02);
}

.card.destaque {
    background: var(--accent);
    color: var(--bg);
    border: 2px solid var(--accent);

    button{
        background: var(--bg);
        color: var(--accent);
    }

    .checklist {
        color: var(--bg);
    }
}

.card.border {
    background: transparent;
    border: 2px solid var(--border);
}

.card .checklist {
    list-style: none;
    padding: 5px 10px;
    margin-top: 1rem;
    border-radius: 10px;
    width: 100%;
    color: var(--text);
    background: var(--bg);
    padding-top: 10px;

    p{
        margin: 5px 0;
        font-weight: 700;
    }
}

.card .checklist li {
    display: inline-block;
    border-bottom: 1px solid #55555595;
    gap: 5px;
    font-size: 0.95rem;
    opacity: 0.85;
    padding: 10px 0;
    opacity: .4;
}

.card .checklist li .material-symbols-outlined {
    font-size: 20px;
    flex-shrink: 0;
}

.card .checklist li.ok{
    span{ 
        color: green;
    }
    opacity: 1;
}


.card .checklist li.medium{
    span{ 
        color: orange;
    }
    opacity: 1;
}

.card .checklist li.bad{
    span{ 
        color: red;
    }
    opacity: 1;
}

.card .checklist li.neutral{
    opacity: 1;
}

.forcewhitebtn{
    background: white !important;
    color: black !important;
}

button{
    transition: transform .25s cubic-bezier(0.175, 0.885, 0.265, 1.55), opacity .2s ease, background .2s ease;
}

.btnwitharrow{
    display: flex;
    flex-direction: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: gap .25s cubic-bezier(0.175, 0.885, 0.265, 1.55), transform .2s cubic-bezier(0.175, 0.885, 0.265, 1.55), opacity .2s ease;

    i{
        font-size: 1.2rem;
    }
}

.btnwitharrow:hover{
    gap: 10px;
}

.card ul {
    padding: 0;
    list-style: none;
}

.card button {
    margin-top: 1rem;
    font-size: 1rem;
    padding: 10px 15px;
    background-color: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

.card .price{
    font-size: 2rem;
    margin: 5px;
    font-weight: 800;

    small{
        font-size: 1.2rem;
        font-weight: normal;
    }
}

/* FOOTER */
.footer {
    background: var(--bg);
    border-top: var(--border) 1px solid;
    color: var(--accent);
    padding: 2rem 25px;
    font-family: sans-serif;
    text-align: left;
}

.footer-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    justify-content: space-around;
    max-width: 1100px;
    margin: auto;
}

.social-badge {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.social-badge a{
    display: flex;
    align-items: center;
    justify-items: center;
}

.social-badge .icon {
  width: 14px;
  height: 14px;
  fill: var(--accent); /* fica automático no tema */
  margin-right: 6px;
  opacity: 0.5;
  transition: opacity .2s ease;
}

.social-badge a:hover .icon{
    opacity: .7;
}

.social-badge h4 {
  margin: 0;
  font-size: 0.95rem;
}

.social-badge hr {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 6px 0;
}

.social-badge a {
  font-size: 13px;
  padding: 5px 0;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  color: white;
  opacity: .6;
  transition: 0.2s ease;
}

.social-badge a:hover {
  opacity: 1;
}


.footer-cont{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    margin: auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: auto;
    gap: 10px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.footer-logo{
    max-width: 150px;
    max-height: 30px;
    filter: invert(100%);
}

.footer-tinylogo{
    max-width: 150px;
    max-height: 20px;
    filter: invert(100%);
}

.footer-col h4 {
  color: var(--accent);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
  margin: 0.3rem 0;
}

.footer-col ul li a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  opacity: .5;
  transition: opacity 0.2s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--accent);
  opacity: .4;
}

.info{
    display: flex;
    gap: 10px;
    flex-direction: column;
    text-align: left;
    border: 2px solid var(--accent);
    padding: 15px;
    border-radius: 10px;
}

.link{
    color: var(--accent);
    opacity: .7;
    text-decoration: underline;
}

hr{
    opacity: .2;
    margin: 0 5%;
}

.closeModal{
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    background: transparent;
    color: var(--text);
    border: none;
    opacity: .4;
    transition: opacity .2s ease;
}

.closeModal:hover{
    opacity: 1;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: var(--overlayclr, rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  overflow-y: auto;
  padding: 20px 10px; /* espaço para respirar */
}

.modal.mostrar {
  display: block;
  opacity: 1;
}

.modal-content {
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);

    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);

    box-shadow:
        0 10px 24px var(--glass-shadow),
        inset 0 0 1px var(--glass-inner);
        
    color: var(--text, #000);
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
    margin: auto;
    width: calc(100% - 15px);
    max-width: 800px;
    transition: transform 0.2s ease;
    transform: translateY(-200px);
    animation: modalEnter 0.4s ease forwards;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

@keyframes modalEnter {
  from {
    transform: translateY(-200px) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.capitalize{
    text-transform: capitalize;
}

.tinybtn{
    background: var(--accent);
    color: var(--bg);
    padding: 4px 7px;
    border-radius: 8px;
    font-size: .9rem;
    display: inline-block;
    cursor: pointer;
    transition: opacity .2s ease;
    margin: 5px 0;
    font-weight: 800;
}

.tinybtn:hover{
    opacity: .7;
}

.passos-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 0;
    position: relative;
}

.passo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    position: relative;
    min-height: 100vh;
}

.linha {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 40px;
}

.numero {
    z-index: 1;
    font-size: 1rem;
    font-weight: bold;
    background-color: var(--border);
    color: var(--bg);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin: 45vh 0;
    position: relative;
}

.passo.feito .numero {
    background-color: var(--accent);
}

.passo.feito .linha::before {
    background-color: var(--accent);
}

.passo.notnow .conteudo{
    pointer-events: none;
    user-select: none;
    opacity: .5;
}

.passo.feito .conteudo{
    pointer-events: none;
    user-select: none;
    opacity: .2;
}

.passo.atual .conteudo{
    opacity: 1;
}

.passo.atual .numero {
    background-color: var(--accent);
}

.conteudo {
    padding: 15px;
    margin: 10px;
    flex: 1;
    z-index: 5;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    color: var(--text);
    transition: opacity .2s ease;
}

.conteudo h2 {
    margin-top: 0;
}

footer {
    text-align: center;
    padding: 2rem 1rem 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Estende a linha de uma etapa até a próxima */
.passo:not(:last-child) .linha::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: calc(100% + 2rem);
    width: 2px;
    background-color: var(--border);
    transform: translate(-50%, 0);
    z-index: 0;
}

.passo.feito:not(:last-child) .linha::after {
    background-color: var(--accent);
}

@media (max-width: 600px) {
    .passo {
        margin: 0;
        min-height: 100vh;
        gap: 0;
    }

    .linha {
        margin: 0;
        padding: 0;
        margin-left: 20px;
    }

    .footer-container {
        flex-wrap: wrap;
    }

}

.secminitext{
    font-size: .9rem;
    opacity: .7;
}

.invert{
    filter: invert(100%);
}

.doc-container{
    text-align: left;
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;

    h1{
        text-align: center;
        font-size: 1.4rem;
    }

    h2{
        font-size: 1.2rem;
    }

    p{
        font-size: 1rem;
    }

    ul{
        padding-left: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    a{
        color: #000000;
        text-decoration: underline;
    }
}

#cookie-banner{
    position: fixed; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    background: var(--bg); 
    color: var(--text);
    padding: 15px; 
    border-top: 1px solid var(--border); 
    text-align: center; 
    z-index: 1000;

    .flex-buttons{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;

        button{
            font-size: .9rem;
        }
    }
}

#buyBox {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 280px;
    max-width: 90%;
    z-index: 9999;
    opacity: 0;
    transition: all .4s ease;
}

/* Estado visível */
#buyBox.showbox {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Logo do app */
#buyBox img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

#buyBox span{
    font-weight: bold;
}

.app-library{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.app-card{
  background: var(--bgop);
  padding: 15px;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.mini-info {
    font-size: 0.75rem;
    opacity: 0.5;
}

.micro-grants{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;

    p{
        display: flex;
        align-items: center;
        gap: 5px;
        opacity: 1;
        font-size: .9rem;
    };

    p::before{
        font-family: 'Material Symbols Outlined';
        content: 'check';
        opacity: .5;
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .micro-grants{
        flex-direction: column;
    }
}

.app-card .appcard-title{
  display: flex;
  flex-direction:row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  margin-bottom: 5px;

  p{
    font-size: 1.1rem;
  }

  img{
    background: var(--bgop);
    border: var(--glass-border) 2px solid;
    box-shadow: #00000011 0 0 15px;
    padding: 4px;
    border-radius: 8px;
    width: 34px;
    height: 34px;
  }
}

.version{
    font-weight: 300; 
    opacity: .5;
    padding-left: 8px;
    border-left: var(--text) solid 2px;
}

.app-card .appcard-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--accent);
  gap: 5px;
}

.app-card .appcard-buttons{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;

  button{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    opacity: .9;
    gap: 3px;
    transition: opacity .2s ease;
    cursor: pointer;
  }

  button:hover{
    opacity: 1;
  }

  button:active{
    opacity: .8;
  }

  button i{
    font-size: .9rem;
  }

  button.fill{
    font-size: 1rem;
    padding: 5px 15px;
    border: 2px solid var(--accent);
    border-radius: 25px;
    color: var(--bg);
    background-color: var(--accent);
  };

  button.border{
    font-size: 1rem;
    padding: 5px 15px;
    border: 2px solid var(--accent);
    border-radius: 25px;
    color: var(--accent);
    background: transparent;
  };

  button.fill-sec{
    font-size: 1rem;
    padding: 5px 15px;
    border: 2px solid var(--border);
    border-radius: 25px;
    color: var(--accent);
    background-color: var(--border);
  }
}

.library-search {
  display: flex;
  align-items: center;
  background: var(--bgop);
  border: 2px solid var(--glass-border);
  padding: 5px 10px;
  border-radius: 30px;
  gap: 8px;
  margin: 0 0 12px 0;
  transition: .2s ease;
}

.ls-btn{
    cursor: pointer;
    input{
        pointer-events: none;
    }
}

.ls-btn:hover{
    opacity: .7;
}

.ls-btn:active{
    opacity: .5;
}

.library-search:focus-within {
  border-color: var(--accent);

  span{
    opacity: 1;
    transform: scale(1.2);
  }
}

.library-search span {
  font-size: 22px;
  color: var(--text);
  opacity: .5;
  transition: opacity .2s ease, transform .2s ease;
}

.library-search input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 20px;
  color: var(--text);
  padding: 5px;
  font-size: 1rem;
}

.simplycard{
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    padding: 20px;
    border-radius: 25px;
}

.simplycard .desc{
    opacity: .7;
}

.flexspacing{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price{
    opacity: 1;
    font-size: 2rem;
}

.price small{
    font-size: 1rem;
}

.checklist{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.checklist li{
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 5px;
}

.checklist li::before{
    content: 'check';
    font-family: 'Material Symbols Outlined';
    opacity: .7;
}

.checklist li:last-child{
    border-bottom: none;
}

.general-overlay {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw !important;
  height: 100vh;
  background: var(--bgop);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  opacity: 0;
  pointer-events: none !important;
  transition: opacity .2s ease, backdrop-filter .2s ease;
  z-index: 99999;
}

.general-overlay.show{
  opacity: 1;

  .generalbox{
    transform: translateY(0);
  }
}

.generalbox{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px;
  gap: 10px;

  color: var(--text);

  border: 1px solid var(--glass-border);
  background: var(--glass-bg);

  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);

  box-shadow:
    0 10px 24px var(--glass-shadow),
    inset 0 0 1px var(--glass-inner);
  
  padding: 20px;
  border-radius: 25px;

  transform: translateY(-40px);

  transition: transform .2s ease;
}

.generalbox img{
    max-width: 400px;
    width: 100%;
}

/* GRID BASE */
.appsg-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(6, 1fr);
    max-width: 1150px;
    padding: 25px;
    margin: 0 auto;
}

@media (max-width: 768px) {
  .appsg-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
  }
}

/* CARD BASE */
.appg-card {
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: space-between;
    transition: transform .2s, box-shadow .4s;
}

.appg-card button{
    padding: 12px 18px;
    font-size: 1.05rem;
}

.appg-card .btn-border{
    padding: 10px 16px !important;
}

.appgcard-buttons{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 25px;
}

.appg-card h2{
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    font-weight: 900;
}

.appg-card p{
    opacity: .8;
}

.appg-card:hover {
    transform: translateY(-4px);
}

.appg-icon {
    display: flex;
    padding: 8px;
    border-radius: 18px;
    background: var(--accent);
    box-shadow: #ffffff41 0 0 15px;
    width: 60px;
    height: 60px;
}

.appgcard-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    padding-bottom: 0;
}

.appgcard-title{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.card-large {
    grid-column: span 4;
    grid-row: span 2;
}

.card-small {
    grid-column: span 2;
    grid-row: span 1;
}

.card-wide {
    grid-column: span 4;
    grid-row: span 1;
}

.app-biz {
    box-shadow: #2056cc41 0 0px 25px;
    background: linear-gradient(to top, #2563EB, #2563EB);
}
.app-biz:hover{
    box-shadow: #52aefe53 0 5px 25px;
}

.app-flow {
    background: linear-gradient(240deg, #2d5eff, #14B8A6);
    box-shadow: #2d5eff41 0 0px 25px;
}
.app-flow:hover{
    box-shadow: #14b8a553 0 5px 25px;
}

.app-getpack {
    background: linear-gradient(to left, #7C3AED, #965aff);
    box-shadow: #7C3AED41 0 0px 25px;
}
.app-getpack:hover{
    box-shadow: #965aff53 0 5px 25px;
}

.app-get4real {
    background: linear-gradient(150deg, #000000, #0a0a0a);
    box-shadow: #00000041 0 0px 25px;
}
.app-get4real:hover{
    box-shadow: #00000041 0 5px 25px;
}

.app-future {
    box-shadow: #47556941 0 5px 25px;
    background: linear-gradient(135deg, #475569, #64748b);
}
.app-future:hover{
    box-shadow: #64748b53 0 5px 25px;
}

.appgcard-banner{
    width: 100%;
    border-radius: 25px;
}

/* RESPONSIVIDADE */

/* Tablet */
@media (max-width: 900px) {
    .apps-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .card-large {
        grid-column: span 4;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .appgcard-buttons{
        display: flex;
        flex-direction: column;
        gap: 10px;
        
        button{
            width: 100%;
        }
    }

    .card-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .card-wide {
        grid-column: span 2;
    }

    .card-small {
        grid-column: span 1;
    }
}


.dev-note {
  background: var(--bg);
  color: var(--text);
  box-shadow: 0 5px 10px var(--shadow);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  transition: all 0.3s ease;
}

.dev-note-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.dev-note-banner{
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

.dev-note-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dev-note-header .material-symbols-outlined {
  font-size: 22px;
  color: var(--accent, #007bff);
}

.dev-note-desc{
  font-size: 1rem;
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  p{
    opacity: .7;
  }
}

.dev-note-date {
  font-size: 0.9rem;
  color: var(--muted, #777);
}

.dev-note-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;

  h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
  }

  h2 i{
    font-size: 2rem;
    background-image: linear-gradient(155deg, #7C3AED, #6366F1, #06B6D4, #10B981);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.biztimeline h2 i{
    color: #2563EB;
}


.dev-note-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.dev-note-list li span{
  font-size: 20px;
  opacity: .8;
}