/* INÍCIO DO ARQUIVO style.css */
/* VERSÃO FINAL COMPLETA */

/*=============== 1. VARIÁVEIS GLOBAIS ===============*/
:root {
  --header-height: 5rem;
  --primary-color: #ff1818;
  --primary-color-alt: #d10000;
  --discord-color: #5865F2;
  --dark-color: #0a0a0a;
  --dark-color-alt: #1a1a1a;
  --white-color: #ffffff;
  --text-color: #bfbfbf;
  --body-bg: #000000;
  --body-font: 'Poppins', sans-serif;
  --title-font: 'Orbitron', sans-serif;
  --h1-font-size: 2.8rem;
  --h2-font-size: 1.6rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --z-fixed: 100;
  --z-modal: 200;
}

/*=============== 2. BASE E ESTILOS GERAIS ===============*/
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--body-font); font-size: var(--normal-font-size); background-color: var(--body-bg); color: var(--text-color); }
body.menu-open, body.modal-open { overflow: hidden; }
h1, h2, h3 { color: var(--white-color); font-family: var(--title-font); font-weight: 700; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; height: auto; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.grid { display: grid; gap: 1.5rem; }
.section { padding: 6rem 0 2rem; }
.section__title { font-size: var(--h2-font-size); text-align: center; margin-bottom: 3rem; text-transform: uppercase; letter-spacing: 2px; }

/*=============== 3. COMPONENTES REUTILIZÁVEIS ===============*/
.button { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background-color: var(--primary-color); color: var(--white-color); padding: 1rem 1.5rem; border-radius: 0.5rem; font-weight: 600; transition: all 0.3s ease; border: 2px solid transparent; cursor: pointer; text-align: center; }
.button:hover { background-color: var(--primary-color-alt); transform: scale(1.05); }
.button--header { padding: 0.75rem 1.25rem; font-size: var(--small-font-size); border-width: 0; }
.button--outline { background: transparent; border: 2px solid var(--text-color); color: var(--white-color); }
.button--outline:hover { background: var(--primary-color); border-color: var(--primary-color); }
.button--discord:hover { background: var(--discord-color); border-color: var(--discord-color); }
.lang-dropdown { position: relative; font-weight: 600; color: var(--white-color); }
.lang-dropdown__selected { background-color: var(--dark-color); border: 2px solid var(--primary-color); border-radius: 0.75rem; padding: 0.6rem 1rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; transition: background-color 0.3s, box-shadow 0.3s; }
.lang-dropdown__selected:hover { background-color: var(--dark-color-alt); box-shadow: 0 0 10px -2px var(--primary-color); }
.lang-dropdown__current { display: flex; align-items: center; gap: 0.75rem; }
.lang-dropdown__selected i { font-size: 1.25rem; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.lang-dropdown.open .lang-dropdown__selected i { transform: rotate(180deg); }
.lang-dropdown__list { position: absolute; top: calc(100% + 8px); right: 0; width: 100%; background-color: var(--dark-color); border: 2px solid var(--primary-color); border-radius: 0.75rem; list-style: none; padding: 0.5rem; z-index: 10; opacity: 0; visibility: hidden; transform: translateY(10px) scale(0.95); transition: all 0.3s ease; }
.lang-dropdown.open .lang-dropdown__list { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.lang-dropdown__option { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; cursor: pointer; border-radius: 0.5rem; transition: background-color 0.2s, color 0.2s; }
.lang-dropdown__option:hover { background-color: var(--primary-color); color: var(--white-color); }
.lang__flag-wrapper { display: inline-block; width: 24px; height: 18px; background-color: var(--primary-color); border-radius: 3px; line-height: 0; overflow: hidden; }
.lang__flag { width: 100%; height: 100%; object-fit: cover; }

/*=============== 4. HEADER E NAVEGAÇÃO ===============*/
.header { width: 100%; position: fixed; top: 0; left: 0; z-index: var(--z-fixed); background-color: rgba(10, 10, 10, 0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.4s ease; }
.header.scrolled { background-color: rgba(10, 10, 10, 0.8); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border-bottom-color: rgba(255, 255, 255, 0.05); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
.nav { height: var(--header-height); display: flex; justify-content: space-between; align-items: center; transition: height 0.4s ease; }
.header.scrolled .nav { height: calc(var(--header-height) - 1.5rem); }
.nav__logo { display: flex; align-items: center; gap: 0.75rem; font-family: var(--title-font); font-size: 1.5rem; color: var(--white-color); font-weight: 700; }
.nav__logo-img { width: 45px; transition: width 0.4s ease; }
.header.scrolled .nav__logo-img { width: 40px; }
.nav__list { display: flex; gap: 2rem; align-items: center; }
.nav__link { color: var(--text-color); font-weight: 600; transition: color 0.3s; position: relative; }
.nav__link::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background-color: var(--primary-color); transition: width 0.3s; }
.nav__link:hover, .nav__link.active-link { color: var(--white-color); }
.nav__link:hover::after, .nav__link.active-link::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__toggle, .nav__close { display: none; cursor: pointer; font-size: 1.5rem; color: var(--white-color); font-weight: 700; }

/*=============== 5. SEÇÕES DO SITE ===============*/
.hero { height: 100vh; position: relative; background: url('assets/background.jpg') no-repeat center center/cover; }
.hero__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,1) 100%); z-index: 2; }
.hero__container { height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; z-index: 3; }
.hero__title { font-size: var(--h1-font-size); margin-bottom: 1rem; line-height: 1.2; text-shadow: 0 0 15px rgba(0,0,0,0.7); min-height: calc(var(--h1-font-size) * 1.2 * 2); display: flex; align-items: center; justify-content: center; }
.hero__subtitle { font-size: var(--h3-font-size); margin-bottom: 3rem; max-width: 600px; line-height: 1.5; }
.hero__scroll-arrow { position: absolute; bottom: 3rem; }
.hero__scroll-arrow span { display: block; width: 24px; height: 24px; border-bottom: 2px solid var(--white-color); border-right: 2px solid var(--white-color); transform: rotate(45deg); animation: bounce 2s infinite; }
.showcase__container { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 2.5rem; }
.showcase__image img { border-radius: 0.5rem; max-width: 750px; width: 100%; }
.showcase__content h2 { font-size: var(--h2-font-size); text-transform: uppercase; line-height: 1.3; margin-bottom: 1rem; }
.showcase__content p { margin: 0 auto 2rem auto; line-height: 1.7; max-width: 600px; }
.showcase__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.security__container { grid-template-columns: repeat(2, 1fr); align-items: center; gap: 3rem; }
.security__content { order: -1; }
.security__image video { max-width: 450px; width: 100%; height: auto; border-radius: 0.5rem; display: block; margin: 0 auto; }
.features__container { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature__card { background-color: var(--dark-color-alt); padding: 2rem; border-radius: 1rem; border: 1px solid rgba(255, 255, 255, 0.1); position: relative; overflow: hidden; transition: all 0.4s ease; }
.feature__card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 10px 30px -5px rgba(255, 24, 24, 0.25); border-color: rgba(255, 24, 24, 0.5); }
.feature__header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.feature__header i { font-size: 1.75rem; color: var(--primary-color); }
.feature__title { font-size: 1.1rem; font-family: var(--title-font); color: var(--white-color); margin: 0; }
.feature__description { font-size: var(--small-font-size); line-height: 1.6; }
.pricing__container { grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 1.5rem; }
.price__card { background-color: var(--dark-color-alt); border: 1px solid rgba(255, 255, 255, 0.1); padding: 2.5rem 2rem; border-radius: 1rem; transition: all 0.4s ease; display: flex; flex-direction: column; }
.price__card:hover { transform: translateY(-10px); border-color: var(--primary-color); box-shadow: 0 0 30px rgba(255, 24, 24, 0.3); }
.price__card.featured { border-color: var(--primary-color); background: var(--dark-color); position: relative; overflow: hidden; }
.price__card-badge { position: absolute; top: 18px; right: -45px; background-color: var(--primary-color); color: var(--white-color); padding: 0.5rem 4rem; transform: rotate(45deg); font-size: var(--small-font-size); font-weight: 600; }
.price__card-title { font-size: var(--h3-font-size); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.price__card-amount { font-size: 1.5rem; font-family: var(--body-font); font-weight: 600; color: var(--text-color); margin-bottom: 2rem; }
.price__card-amount span[data-translate-key*="price"] { color: var(--white-color); font-family: var(--title-font); }
.price__card-features { text-align: left; margin-bottom: 2rem; flex-grow: 1; }
.price__card-features li { margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.price__card-features li i { color: var(--primary-color); font-size: 1.25rem; }
.feature__beta-tag { background-color: #ffc107; color: #000; font-size: 0.65rem; font-weight: bold; padding: 2px 6px; border-radius: 4px; }
.price__card-buttons { margin-top: auto; display: flex; flex-direction: column; gap: 0.75rem; }
.button--price { width: 100%; }
.button--hardware { border: 2px solid var(--primary-color); }
.button--software-disabled { background: transparent; border: 2px solid var(--text-color); color: var(--text-color); cursor: not-allowed; position: relative; overflow: hidden; }
.button--software-disabled .btn-text--original, .button--software-disabled .btn-text--hover { transition: opacity 0.3s ease, transform 0.3s ease; }
.button--software-disabled .btn-text--hover { display: none; align-items: center; gap: 0.5rem; }
.button--software-disabled:hover .btn-text--original { display: none; }
.button--software-disabled:hover .btn-text--hover { display: inline-flex; }
.button--software-disabled:hover { border-color: var(--text-color); background: transparent; transform: none; box-shadow: none; }
.price__card--highlight .button--hardware { background-color: var(--primary-color); color: var(--white-color); }
.price__card--highlight .button--hardware:hover { background-color: var(--primary-color-alt); border-color: var(--primary-color-alt); }
.price__card-original-amount { color: var(--text-color); font-size: 1.2rem; margin-bottom: 0.25rem; }
.price__card-sale-amount { font-size: 2rem; font-family: var(--title-font); color: var(--white-color); margin-bottom: 1rem; }
.price__card-offer { font-size: var(--small-font-size); font-family: var(--body-font); color: var(--text-color); font-weight: normal; }
.price__card-description { font-size: var(--small-font-size); line-height: 1.6; margin-bottom: 2rem; flex-grow: 1; }

/*=============== 6. FAQ / ACCORDION STYLES ===============*/
.faq__container { max-width: 800px; margin: 0 auto; gap: 1rem; }
.faq__item { background-color: var(--dark-color-alt); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 0.75rem; transition: all 0.3s; }
.faq__item:hover { transform: translateY(-5px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); }
.faq__question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; padding: 1rem 1.25rem; }
.faq__question span { font-family: var(--title-font); font-weight: 700; font-size: 1.1rem; transition: color 0.3s; }
.faq__icon { font-size: 1.5rem; color: var(--primary-color); transition: transform 0.4s ease-in-out; }
.faq__answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease-out; }
.faq__answer p { line-height: 1.7; color: var(--text-color); padding: 0 1.25rem 1rem 1.25rem; }
.faq__item.faq-open { border-color: var(--primary-color); }
.faq__item.faq-open .faq__question span { color: var(--primary-color); }
.faq__item.faq-open .faq__icon { transform: rotate(135deg); }
.faq__item.faq-open .faq__answer { max-height: 500px; }

/*=============== 7. SEÇÃO DE CTA (SUPORTE) ===============*/
.cta.section { padding-top: 2rem; padding-bottom: 4rem; }
.cta__container { background-color: var(--dark-color-alt); padding: 3rem 2rem; border-radius: 1rem; text-align: center; }
.cta__title { font-size: 1.5rem; margin-bottom: 1.5rem; }

/*=============== 8. ANIMAÇÕES ===============*/
.reveal { opacity: 0; transform: translateY(50px); transition-property: opacity, transform; transition-duration: 0.8s; transition-timing-function: cubic-bezier(0.5, 0, 0, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); opacity: 1; } 40% { transform: translateY(-20px) rotate(45deg); opacity: 0.5; } }
.typed-cursor { color: var(--primary-color); font-weight: 700; animation: typedjsBlink 0.7s infinite; }
@keyframes typedjsBlink { 50% { opacity: 0.0; } }

/*=============== 9. FOOTER ===============*/
.footer { background-color: var(--dark-color); padding: 4rem 0 2rem; }
.footer__divider { height: 2px; width: 100%; background: linear-gradient(to right, transparent, var(--primary-color), transparent); margin-bottom: 4rem; }
.footer__content { grid-template-columns: 2fr repeat(3, 1fr); gap: 3rem; align-items: start; }
.footer__logo { display: flex; align-items: center; gap: 0.75rem; font-family: var(--title-font); font-size: 1.5rem; color: var(--white-color); font-weight: 700; margin-bottom: 1rem; }
.footer__logo-img { width: 50px; }
.footer__brand-description { font-size: var(--small-font-size); line-height: 1.6; }
.footer__title { font-family: var(--title-font); font-size: 1.1rem; color: var(--white-color); margin-bottom: 1.5rem; text-transform: uppercase; }
.footer__links { display: flex; flex-direction: column; gap: 1rem; }
.footer__link { display: flex; align-items: center; gap: 0.5rem; font-size: var(--normal-font-size); color: var(--text-color); transition: color 0.3s, transform 0.3s; }
.footer__link:hover { color: var(--primary-color); transform: translateX(5px); }
.footer__link i { font-size: 1.2rem; color: var(--primary-color); }
.footer__payment-icons { display: grid; grid-template-columns: repeat(3, 48px); gap: 0.75rem; }
.footer__payment-icons img { width: 100%; border-radius: 4px; }
.footer__copy { text-align: center; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--dark-color-alt); font-size: var(--small-font-size); color: var(--text-color); }

/*=============== 10. LOGIN MODAL ===============*/
.login-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: var(--z-modal); display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; visibility: hidden; transition: opacity 0.3s ease; }
.login-modal.show-modal { opacity: 1; visibility: visible; }
.login-modal__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px); cursor: pointer; }
.login-modal__content { position: relative; background-color: var(--dark-color-alt); padding: 2.5rem; border-radius: 1rem; border: 1px solid rgba(255, 255, 255, 0.1); width: 100%; max-width: 450px; text-align: center; z-index: 1; transform: scale(0.95); transition: transform 0.3s ease; }
.login-modal.show-modal .login-modal__content { transform: scale(1); }
.login-modal__close { position: absolute; top: 1rem; right: 1rem; font-size: 1.5rem; color: var(--text-color); cursor: pointer; transition: color 0.3s, transform 0.3s; }
.login-modal__close:hover { color: var(--white-color); transform: rotate(90deg); }
.login-modal__title { font-family: var(--title-font); font-size: var(--h3-font-size); margin-bottom: 1.5rem; }
.login-modal__status { padding: 0.75rem 1rem; margin-bottom: 1rem; border-radius: 0.5rem; font-weight: 600; font-size: var(--small-font-size); text-align: center; display: none; }
.login-modal__status--error { background-color: rgba(209, 0, 0, 0.2); border: 1px solid var(--primary-color-alt); color: var(--white-color); display: block; }
.login-modal__input-wrapper { position: relative; margin-bottom: 1.5rem; }
.login-modal__input { width: 100%; padding: 1rem; padding-right: 3.5rem; background-color: var(--dark-color); border-radius: 0.75rem; color: var(--white-color); font-size: var(--normal-font-size); font-family: var(--body-font); transition: border-color 0.3s; text-align: center; border: 2px solid #3a3a3a; }
.login-modal__input::placeholder { color: #666; }
.login-modal__input:focus { outline: none; border-color: var(--primary-color); }
.login-modal__eye-icon { position: absolute; top: 50%; right: 1.25rem; transform: translateY(-50%); color: var(--text-color); cursor: pointer; font-size: 1.25rem; transition: color 0.3s; }
.login-modal__eye-icon:hover { color: var(--white-color); }
.login-modal__actions { display: grid; gap: 1rem; }
.button--verify { background-color: var(--primary-color); color: var(--white-color); font-weight: 600; border: none; padding: 1rem; }
.button--verify:hover { background-color: var(--primary-color-alt); transform: scale(1.05); }
.button--modal-close { background: transparent; border: 2px solid #3a3a3a; color: var(--text-color); }
.button--modal-close:hover { background-color: #1f1f1f; border-color: #4f4f4f; color: var(--white-color); }

/*=============== 11. RESPONSIVIDADE (MEDIA QUERIES) ===============*/
@media screen and (max-width: 1024px) {
  .nav__menu { 
    display: none;
  }
  .nav__actions .button--header {
    display: none;
  }
  .security__container { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .security__content { order: 0; }
  .features__container, .pricing__container { grid-template-columns: repeat(2, 1fr); }
  .footer__content { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 768px) {
  :root { --h1-font-size: 2rem; --h2-font-size: 1.4rem; --header-height: 4.5rem; }
  body { font-size: var(--small-font-size); }
  .section { padding: 4rem 0 1rem; }
  .footer__content { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__links { align-items: center; }
  .footer__payment-icons { justify-content: center; }
  .security__container, .features__container, .pricing__container { grid-template-columns: 1fr; }
}

@media screen and (min-width: 480px) { .login-modal__actions { grid-template-columns: 1fr 1fr; } }

/*=============== 12. ESTILOS DAS PARTÍCULAS ===============*/
#particles-js { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 1; }
body.menu-open #particles-js, body.modal-open #particles-js { display: none; }

/*=============== 13. ESTILOS DO DASHBOARD (NOVO) ===============*/
.dashboard-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--dark-color);
    padding: 1.5rem;
}

.dashboard-container {
    width: 100%;
    max-width: 650px;
}

.dashboard-card {
    background-color: var(--dark-color-alt);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dashboard-card h1 {
    font-family: var(--title-font);
    font-size: var(--h2-font-size);
    margin-bottom: 2.5rem;
    text-align: center;
}

.info-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid #2a2a2a;
    font-size: var(--normal-font-size);
    gap: 1rem;
}

.info-line:first-of-type {
    padding-top: 0;
}

.info-line:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    font-weight: 600;
    color: var(--text-color);
}

.info-value {
    font-weight: 600;
    color: var(--white-color);
    text-align: right;
}

.key-blur-effect {
    filter: blur(5px);
    transition: filter 0.3s ease;
    cursor: pointer;
}

.key-blur-effect:hover {
    filter: blur(0);
}

.status--activated {
    color: #28a745; /* Verde */
    font-weight: 700;
}

.status--expired {
    color: var(--primary-color-alt); /* Vermelho */
    font-weight: 700;
}

.dashboard-actions {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.button-dashboard--red {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.button-dashboard--red:hover {
    background-color: var(--primary-color-alt);
}

.button-dashboard-discord {
    background: transparent;
    border-color: var(--discord-color);
    color: var(--white-color);
}
.button-dashboard-discord:hover {
    background: var(--discord-color);
}

.button-dashboard--disabled {
    background-color: var(--dark-color);
    color: #555;
    border-color: #333;
    cursor: not-allowed;
    justify-content: center;
}
.button-dashboard--disabled span {
    margin-left: .5rem;
}
.button-dashboard--disabled:hover {
    transform: none;
    background-color: var(--dark-color);
    color: #555;
    border-color: #333;
}

/* Responsividade do Dashboard */
@media screen and (max-width: 600px) {
    .dashboard-card {
        padding: 2rem 1.5rem;
    }
    .info-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .info-value {
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    .dashboard-actions {
        grid-template-columns: 1fr;
    }
}