@import url('https://fonts.googleapis.com/css2?family=Lexend+Giga:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');

:root {
  --logoclr: 0%;
  --bg: #fff;
  --bgop: #ffffffb8;
  --bgsec: #ececec;
  --secbtn: #ebebebcb;
  --secclr: #dcdcdccb;
  --secclrhover: #bcbcbc;
  --accent: #000000;
  --border: #d1d5db;
  --borderhover: #c1c4ca;
  --overlayclr: rgba(0, 0, 0, 0.4);
  --btn: #000;
  --btnhover: #1b1b1b;
  --btnclr: #fff;
  --appbg: #F8FAFC;
  --bizbg: #F9FAFB;
  --getpackbg: #F3F4F6;
  --text: #000;
}

/* Tema escuro: só sobrescreve o que muda */
[data-theme="dark"] {
  --logoclr: 100%;
  --bg: #000;
  --bgop: #000000c1;
  --bgsec: #191919;
  --secbtn: #242424cb;
  --secclr: #212121;
  --secclrhover: #2a2a2a;
  --accent: #ffffff;
  --border: #1a1a1a;
  --borderhover: #323232;
  --overlayclr: rgba(92, 92, 92, 0.5);
  --btn: #fff;
  --btnhover: #dbdbdb;
  --btnclr: #000;
  --appbg: #090c12;
  --bizbg: #1C1C1E;
  --getpackbg: #2A2A2D;
  --text: #ffffff;
}

.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' 400,
        'GRAD' 0,
        'opsz' 24
}

body {
  margin: 0;
  font-family: "Lexend Giga", serif;
  background-color: var(--bg);
  color: #333;
  -webkit-tap-highlight-color: transparent;
}

body.blockoverflow {
  overflow: hidden;
}

*{
    font-family: "Lexend Giga", serif; 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background .5s ease, color .5s ease, border-color .5s ease;
}

img{
    user-select: none !important;
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--bg);
    color: var(--text);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.navbar .logo {
  display: flex;
  flex-direction: wrap;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 5px;
  img{
    max-height: 25px;
    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
}

.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: 8px 12px;
    color: var(--bg);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--accent);
    border-radius: 12px;
    background: transparent;
    transition: background .15s ease, color .15s ease;
}

.nav-links a.dest:hover{
    background: transparent !important;
    color: var(--accent);
    border: 2px solid var(--accent);
}

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

.nav-links a {
    position: relative;
    text-decoration: none;
    color: var(--text);
    transition: color 0.3s;
    margin: 15px;
    transition: opacity .2s ease;
    background: var(--bg);
    border-radius: 5px;
    cursor: pointer;
    padding: 0;
}

.nav-links .icon{
    position: absolute;
    top: -8px;
    left: -20px;
    font-size: 2.2rem;
    opacity: .1;
    z-index: 1;
}

.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: 50px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bgop) !important;
        backdrop-filter: blur(20px);
        height: 100vh;
        opacity: 0;
        padding: 40px;
        border-radius: 25px 25px 0 0;
        pointer-events: none;
        transform: translateY(120px);
        transition: transform .4s ease, opacity .2s ease;
    }

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

    .nav-links a{
        margin: 0;
        padding: 10px;
        background: transparent;
    }

    .nav-links .icon{
        position: absolute;
        top: 0;
        left: 5px;
        font-size: 2.2rem;
        opacity: .1;
        z-index: 1;
    }

    .nav-links.open {
        display: flex;
        pointer-events: all;
        opacity: 1;
        background: var(--bg);
        transform: translateY(10vh);
    }

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

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

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

.hero h1{
    font-weight: 900;
}

h1{
    font-size: 2rem;
}

.badge{
    background: var(--accent);
    color: var(--bg);
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: 900;
    border-radius: 10px;
    font-size: 1rem;
}

.getpack-purple{
    color: white;
    background: linear-gradient(to left, #7C3AED, #A855F7);
}

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

.hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  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-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  gap: 15px;
}

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

/* Responsivo para mobile */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

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

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

.hero .btn {
    padding: 14px 20px;
    font-size: 1.1rem;
    background-color: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: background .2s ease, border .2s ease, gap .2s ease, transform .25s cubic-bezier(0.175, 0.885, 0.265, 1.55) !important;

    i{
        opacity: .5;
        font-size: 1.2rem;
        margin-left: 2px;
    }
}

.btn:active{
    transform: scale(.9);
}

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

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

a{
    text-decoration: none;
}

.titleborder{
    font-weight: 700;
    border-bottom: 1px solid var(--border);
    padding: 10px;
    padding-top: 0;
}

.btn{
    padding: 8px 10px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    border-radius: 12px;
    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-borderoh:active{
    transform: scale(.9);
}

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

.btn-border:active{
    transform: scale(.9);
}

.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), background .2s ease;
}

button:hover{
    transform: scale(1.05);
}

button:active{
    transform: scale(0.9);
}

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

    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 1rem;
  font-family: sans-serif;
  text-align: left;
}

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

.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-col h4 {
  color: var(--accent);
  margin-bottom: 1rem;
}

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

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

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

.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%;
}

.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: 40px 15px; /* espaço para respirar */
}

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

.modal-content {
  background-color: var(--bg, #fff);
  color: var(--text, #000);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 25px;
  margin: auto;
  width: calc(100% -25px);
  max-width: 600px;
  transition: transform 0.2s ease;
  transform: translateY(-200px);
  animation: modalEnter 0.4s ease forwards;
  display: flex;
  flex-direction: column;
  gap: 15px;
  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;
    }
}

.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: 1rem;
            padding: 10px 15px !important;
        }
    }
}

#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;
}