@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

@font-face {
    font-family: "ViceCitySansBold";
    src: url("fonts/ViceCitySans-Bold.otf") format("opentype");
    font-weight: 700;
}

@font-face {
    font-family: "NeulisCursiveBold";
    src: url("fonts/NeulisCursive-Bold.otf") format("opentype");
    font-weight: 700;
}

/* =========================
   TIPOGRAFIA RESPONSIVA
========================= */
:root {
    --fs-h1: 2.5rem;
    --fs-h2: 2rem;
    --fs-h3: 1.5rem;
    --fs-h4: 1.25rem;
    --fs-p: 1rem;
    --fs-small: 0.875rem;
}

@media (max-width: 768px) {
    :root {
        --fs-h1: 2rem;
        --fs-h2: 1.625rem;
        --fs-h3: 1.375rem;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Sora", system-ui, sans-serif;
    background: #0c0a10;
    color: #ffffff;
}

/* TIPOGRAFIA BASE */
h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

h4 {
    font-size: var(--fs-h4);
}

p {
    font-size: var(--fs-p);
    line-height: 1.6;
}

small {
    font-size: var(--fs-small);
}


.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 64px;
    background: #13111A;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    z-index: 1000;
    color: #ffffff;
}

.hamburger {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
}

.logo {
    font-size: 20px;
    font-weight: 600;

    font-family: "NeulisCursiveBold", sans-serif;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .3);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 998;
}

.mega-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background: #13111A;
    color: #ffffff;
    padding: 32px;
    transition: .4s ease;
    z-index: 999;
}

.mega-menu.open {
    top: 0;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.menu-logo {
    font-size: 20px;
    font-weight: 600;
    color: #830AD1;

}

.close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.menu-title {
    font-weight: 600;
    margin-bottom: 12px;
    color: #830AD1;
}

.menu-col a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 10px;
}

.menu-col a:hover {
    text-decoration: underline;
}

.cta {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 24px;
    background: #830AD1;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}







/* =========================
   HERO
========================= */
.hero {
    width: 100%;
    min-height: 80vh;
    padding-top: 64px;
    background: radial-gradient(circle at top left,
            #1a1026 0%,
            #0c0a10 60%);
    display: flex;
    align-items: flex-end;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 0;
    display: flex;
    align-items: flex-end;
    gap: 40px;
    width: 100%;
}

/* TEXTO */
.hero-content {
    flex: 1;
    align-self: center;
    padding-bottom: 80px;
}

.hero-logo {
    margin-bottom: 28px;
}

.hero-logo img {
    height: 72px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.5;
    color: #f7f7f7;
    max-width: 480px;
    margin-bottom: 28px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.hero-btn {
    font-family: "ViceCitySansBold", sans-serif;
    padding: 14px 32px;
    background: #830ad1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-btn:hover {
    background: #7106b9;
    transform: translateY(-2px);
}

.hero-content p.cancel {
    font-size: 12px;
    margin-top: 12px;
    color: #e6cfff;
}

/* IMAGEM */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-image img {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    object-fit: contain;
    object-position: bottom;
    display: block;
}

/* MARCA */
span.clube {
    font-family: "NeulisCursiveBold", sans-serif;
}

span.mais {
    color: #830ad1;
    font-size: 22px;
}

/* =========================
   REALZ+
========================= */
.realz-plus {
    background: radial-gradient(circle at top, #1a0f24 0%, #0b0711 55%);
    padding: 96px 20px;
}

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

.realz-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 28px;
    line-height: 1;
}

.realz-title .clube {
    color: #8b2cf5;
}

.realz-subtitle {
    max-width: 920px;
    font-size: 20px;
    line-height: 1.2;
    color: #d6cde6;
    margin-bottom: 80px;
}

.realz-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.realz-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: linear-gradient(180deg, #130b1f, #0e0816);
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid rgba(139, 44, 245, 0.35);
    min-height: 200px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.realz-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(139, 44, 245, 0.18);
}

.realz-card .icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 20px;
    background: radial-gradient(circle at top,
            rgba(139, 44, 245, 0.35),
            rgba(139, 44, 245, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
}

.realz-card .icon svg {
    width: 44px;
    height: 44px;
}

.realz-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.realz-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #cbbbe6;
}



.compare {
    padding: 120px 20px;
    background: #000;
    color: #fff;
}

.compare-title {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 80px;
}

.compare-title .off {
    color: #E11D48;
    font-weight: 700;
    font-family: "NeulisCursiveBold", sans-serif;
}

.compare-title .on {
    color: #8b2cf5;
    font-weight: 700;
    font-family: "NeulisCursiveBold", sans-serif;

}

.compare-title .x {
    margin: 0 12px;
    opacity: 0.6;
}

.compare-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.compare-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
}

.compare-item {
    background: radial-gradient(circle at top, #16121f, #0b0812);
    border-radius: 20px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.compare-item .label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8a8a8a;
    font-weight: 600;
}

.compare-item .label .tag {
    font-family: "NeulisCursiveBold", sans-serif;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
}

.compare-item .label .tag.off {
    color: #E11D48;
}

.compare-item .label .tag.on {
    color: #8b2cf5;
}

.compare-item p {
    font-size: 18px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
}

/* SEM REALZ+ */
.compare-item.off {
    opacity: 0.6;
    border: 1px solid rgba(225, 29, 72, 0.2);
}

.compare-item.off p {
    color: #b0b0b0;
}

.compare-item.off .muted {
    color: #666;
    font-style: italic;
}

/* COM REALZ+ */
.compare-item.on {
    border: 1px solid rgba(139, 44, 245, 0.4);
    box-shadow: 0 0 40px rgba(139, 44, 245, 0.12);
    background: radial-gradient(circle at top, #1c1230, #0b0812);
}

.compare-item.on p {
    color: #ffffff;
}

.compare-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #8b2cf5;
    font-weight: 700;
    min-width: 48px;
}

.compare-item .highlight {
    color: #8b2cf5;
    font-weight: 700;
}



/* =========================
   SIMULATOR - NOVO DESIGN
========================= */
.simulator {
    background: radial-gradient(circle at top,
            #1a1026 0%,
            #0c0a10 70%);
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}

.simulator-container {
    width: 100%;
    max-width: 1000px;
}

/* FORM STATE */
.simulator-form {
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.simulator-form.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    position: absolute;
}

.simulator-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
}


@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(139, 44, 245, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(139, 44, 245, 0.4);
    }
}

/* TÍTULO */
.simulator h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0;
    color: #ffffff;
    line-height: 1.1;
}

.simulator h2 span {
    color: #8b2cf5;
}

/* SUBTÍTULO */
.simulator .subtitle {
    font-size: 20px;
    color: #d6cde6;
    margin-bottom: 48px;
}

.simulator .brand {
    font-family: "NeulisCursiveBold", sans-serif;
    color: #8b2cf5;
}

/* INPUT GROUP */
.input-group {
    max-width: 600px;
    margin: 0 auto 40px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-align: left;
}

.input-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #ffffff, #f8f5ff);
    border-radius: 16px;
    padding: 20px 24px;
    border: 2px solid transparent;
    box-shadow: 0 0 0 1px rgba(139, 44, 245, 0.3),
        0 8px 32px rgba(139, 44, 245, 0.15);
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: #8b2cf5;
    box-shadow: 0 0 0 4px rgba(139, 44, 245, 0.15),
        0 12px 40px rgba(139, 44, 245, 0.25);
}

.input-wrapper .currency {
    font-size: 28px;
    font-weight: 700;
    color: #8b2cf5;
    margin-right: 12px;
}

.input-wrapper input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 32px;
    font-weight: 700;
    color: #1a1026;
    background: transparent;
}

.input-wrapper input::placeholder {
    color: #c4b8d9;
    font-weight: 500;
}

.input-wrapper input.error {
    animation: shake 0.5s ease;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-8px);
    }

    40%,
    80% {
        transform: translateX(8px);
    }
}

.input-hint {
    display: block;
    font-size: 13px;
    color: #8b8b9f;
    margin-top: 12px;
    text-align: left;
}

/* BOTÃO SIMULAR */
.simulate-btn {
    background: linear-gradient(135deg, #9b2cf5 0%, #830ad1 50%, #6b08b0 100%);
    color: #ffffff;
    border: none;
    padding: 20px 56px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(139, 44, 245, 0.4);
}

.simulate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(139, 44, 245, 0.5);
}

.simulate-btn:active {
    transform: translateY(0);
}

.simulate-btn .btn-icon {
    transition: transform 0.3s ease;
}

.simulate-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* =========================
   RESULTADO DA SIMULAÇÃO
========================= */
.simulator-result {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.simulator-result.hidden {
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    position: absolute;
}

.simulator-result.animate-in {
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-header {
    text-align: center;
    margin-bottom: 40px;
}

.result-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.result-spending {
    font-size: 18px;
    color: #a78bfa;
}

.result-spending span {
    font-weight: 700;
    color: #8b2cf5;
}

/* CARDS DE RESULTADO */
.result-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.result-card {
    background: linear-gradient(180deg, #16121f, #0e0a17);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

/* Card SEM realz+ */
.result-card.without {
    border: 1px solid rgba(225, 29, 72, 0.25);
    opacity: 0.8;
}

.result-card.without::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E11D48, #be123c);
}

/* Card COM realz+ */
.result-card.with {
    border: 1px solid rgba(139, 44, 245, 0.4);
    background: linear-gradient(180deg, #1c1430, #120d1f);
    box-shadow: 0 16px 48px rgba(139, 44, 245, 0.2);
}

.result-card.with::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b2cf5, #a855f7);
}

/* Badge de porcentagem */
.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #8b2cf5, #a855f7);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(139, 44, 245, 0.4);
    animation: badgePop 0.5s ease 0.3s backwards;
}

@keyframes badgePop {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.card-header {
    margin-bottom: 24px;
}

.card-label {
    font-size: 16px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-off {
    font-family: "NeulisCursiveBold", sans-serif;
    color: #E11D48;
    text-transform: none;
}

.brand-on {
    font-family: "NeulisCursiveBold", sans-serif;
    color: #8b2cf5;
    text-transform: none;
}

.card-content {
    margin-bottom: 16px;
}

.card-description {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.card-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.value-currency {
    font-size: 24px;
    font-weight: 700;
    color: #8b2cf5;
}

.result-card.without .value-currency {
    color: #9ca3af;
}

.value-amount {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.result-card.without .value-amount {
    color: #9ca3af;
}

.value-period {
    font-size: 16px;
    color: #6b7280;
    margin-left: 4px;
}

/* Bônus extra */
.card-extra {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(139, 44, 245, 0.15);
    border-radius: 12px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #a78bfa;
}

.extra-icon {
    font-size: 18px;
}

/* SUMÁRIO */
.result-summary {
    background: linear-gradient(180deg, #16121f, #0e0a17);
    border-radius: 20px;
    padding: 24px 32px;
    border: 1px solid rgba(139, 44, 245, 0.2);
    margin-bottom: 40px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.summary-item:not(:last-child) {
    border-bottom: 1px solid rgba(139, 44, 245, 0.15);
}

.summary-label {
    font-size: 16px;
    color: #9ca3af;
}

.summary-value {
    font-size: 20px;
    font-weight: 700;
    color: #8b2cf5;
}

.summary-item.highlight {
    padding-top: 16px;
}

.summary-item.highlight .summary-label {
    font-weight: 600;
    color: #ffffff;
}

.summary-item.highlight .summary-value {
    font-size: 24px;
    color: #a855f7;
}

/* BOTÃO RESETAR */
.reset-btn {
    background: transparent;
    color: #8b2cf5;
    border: 2px solid #8b2cf5;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.reset-btn:hover {
    background: rgba(139, 44, 245, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(139, 44, 245, 0.2);
}

.reset-btn svg {
    transition: transform 0.3s ease;
}

.reset-btn:hover svg {
    transform: rotate(-45deg);
}



.partners {
    background: #000;
    padding: 120px 60px;
    color: #fff;
}

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

.partners-title {
    text-align: center;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 80px;
}

.partners-title span {
    color: #8b2cf5;
    font-family: "NeulisCursiveBold", sans-serif;
}

/* GRID */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

/* CARD */
.partner-card {
    background: radial-gradient(circle at top, #16121f, #0b0812);
    border-radius: 28px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.partner-card .logo {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
}

.partner-card .info span {
    font-size: 13px;
    color: #bfbfbf;
}

.partner-card .info strong {
    font-size: 18px;
    display: block;
    margin-top: 6px;
}

/* CTA CARD */
.partner-cta {
    background: linear-gradient(180deg, #8b2cf5, #6f1fd1);
    border-radius: 28px;
    padding: 32px;
    text-decoration: none;
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;

    position: relative;
}

.partner-cta span {
    font-size: 14px;
    opacity: 0.9;
}

.partner-cta strong {
    font-size: 28px;
    line-height: 1.1;
}

.partner-cta .arrow {
    font-size: 32px;
    align-self: flex-end;
}

/* HOVER */
.partner-card,
.partner-cta {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-card:hover,
.partner-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(139, 44, 245, 0.25);
}







/* =========================
   SIMULATOR MOBILE
========================= */
@media (max-width: 768px) {
    .simulator {
        padding: 80px 16px;
    }

    .simulator-header {
        gap: 20px;
    }


    .simulator h2 {
        font-size: 28px;
    }

    .simulator .subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .input-group {
        margin-bottom: 32px;
    }

    .input-wrapper {
        padding: 16px 20px;
    }

    .input-wrapper .currency {
        font-size: 22px;
    }

    .input-wrapper input {
        font-size: 24px;
    }

    .simulate-btn {
        width: 100%;
        justify-content: center;
        padding: 18px;
        font-size: 18px;
        border-radius: 14px;
    }

    /* Resultado Mobile */
    .result-header h3 {
        font-size: 24px;
    }

    .result-spending {
        font-size: 16px;
    }

    .result-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .result-card {
        padding: 24px;
    }

    .value-amount {
        font-size: 32px;
    }

    .value-currency {
        font-size: 20px;
    }

    .result-summary {
        padding: 20px;
    }

    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .summary-value {
        font-size: 18px;
    }

    .summary-item.highlight .summary-value {
        font-size: 22px;
    }

    .reset-btn {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
    }
}




/* =========================
   RESPONSIVO
========================= */

/* TABLET */
@media (max-width: 1200px) {
    .realz-title {
        font-size: 42px;
    }

    .realz-subtitle {
        font-size: 20px;
    }

    .realz-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .realz-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    .realz-card .icon {
        width: 72px;
        height: 72px;
        min-width: 72px;
    }

    .realz-card .icon svg {
        width: 40px;
        height: 40px;
    }

    .realz-card h3 {
        font-size: 20px;
    }

    .realz-card p {
        font-size: 16px;
    }
}


/* =========================
   PRICING
========================= */
/* =========================
   PRICING SECTION
========================= */
.pricing {
    background: #0c0a10;
    padding: 80px 20px 100px;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 44, 245, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* HEADER */
.pricing-header {
    text-align: left;
    margin-bottom: 60px;
    padding: 0 10px;
}

.pricing-title {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.you-text {
    font-family: "NeulisCursiveBold", sans-serif;
    color: #8b2cf5;
    font-size: 1.1em;
    display: inline-block;
    margin-left: 8px;
}

/* CARDS CONTAINER */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

/* INDIVIDUAL CARD */
.pricing-card {
    background: linear-gradient(180deg, #16121f 0%, #0e0a17 100%);
    border-radius: 32px;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(139, 44, 245, 0.2);
    border-color: rgba(139, 44, 245, 0.4);
}

/* Featured card (plano anual) */
.pricing-card-featured {
    border-color: rgba(139, 44, 245, 0.3);
    background: linear-gradient(180deg, #1c1430 0%, #130d1f 100%);
}

.pricing-card-featured:hover {
    border-color: rgba(139, 44, 245, 0.6);
    box-shadow: 0 24px 56px rgba(139, 44, 245, 0.3);
}

/* PLAN TITLE */
.pricing-card .plan-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

/* PRICE */
.pricing-card .plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #8b2cf5;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 12px;
}

.pricing-card .plan-price .currency {
    font-size: 36px;
    margin-right: 6px;
    margin-top: 8px;
    font-weight: 700;
}

.pricing-card .plan-price .amount {
    font-size: 96px;
    letter-spacing: -4px;
    font-weight: 800;
}

/* PERIOD */
.pricing-card>.period {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 40px;
    display: block;
    opacity: 0.8;
}

/* BUTTON */
.plan-btn {
    width: 100%;
    max-width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, #9b2cf5 0%, #830ad1 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(131, 10, 209, 0.4);
    margin-top: auto;
}

.plan-btn:hover {
    background: linear-gradient(135deg, #a855f7 0%, #9b2cf5 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(131, 10, 209, 0.5);
}

.plan-btn b {
    font-weight: 700;
}

/* DISCOUNT BADGE */
.discount-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    width: 88px;
    height: 88px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    line-height: 1;
    transform: rotate(12deg);
    z-index: 10;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: rotate(12deg) scale(1);
    }

    50% {
        transform: rotate(12deg) scale(1.05);
    }
}

.discount-badge .percent {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.discount-badge .off-text {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 2px;
}



.faq {
    background: #000;
    padding: 120px 20px;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: start;
}

/* ITEM */
.faq-item {
    background: linear-gradient(180deg, #1a1424, #0f0b16);
    border-radius: 20px;
    overflow: hidden;
}

/* HEADER */
.faq-header {
    width: 100%;
    background: linear-gradient(180deg, #8b2cf5, #6f1fd1);
    color: #fff;
    border: none;
    padding: 22px 24px;
    font-size: 16px;
    font-weight: 700;

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

    cursor: pointer;
}

.faq-header .icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* CONTENT */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.faq-content p {
    padding: 22px 24px 26px;
    font-size: 15px;
    line-height: 1.6;
    color: #e6dcf5;
    margin: 0;
}

/* OPEN STATE */
.faq-item.active .faq-content {
    max-height: 500px;
}

.faq-item.active .faq-header .icon {
    transform: rotate(180deg);
}

/* CTA */
.faq-cta {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.faq-btn {
    background: linear-gradient(180deg, #8b2cf5, #6f1fd1);
    padding: 18px 48px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(139, 44, 245, 0.4);
}



/* =========================
   RESPONSIVE - MOBILE
========================= */
@media (max-width: 768px) {
    .pricing {
        padding: 60px 16px 80px;
    }

    .pricing-header {
        text-align: center;
        margin-bottom: 48px;
        padding: 0;
    }

    .pricing-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .you-text {
        display: block;
        margin-left: 0;
        margin-top: 8px;
        font-size: 40px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
    }

    .pricing-card {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .pricing-card .plan-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .pricing-card .plan-price .currency {
        font-size: 28px;
        margin-top: 6px;
    }

    .pricing-card .plan-price .amount {
        font-size: 72px;
        letter-spacing: -3px;
    }

    .pricing-card>.period {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .plan-btn {
        padding: 18px 28px;
        font-size: 16px;
    }

    .discount-badge {
        width: 76px;
        height: 76px;
        top: -12px;
        right: -12px;
        border-radius: 14px;
    }

    .discount-badge .percent {
        font-size: 24px;
    }

    .discount-badge .off-text {
        font-size: 14px;
    }

    .faq {
        padding: 80px 16px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-btn {
        width: 100%;
        text-align: center;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .pricing-title {
        font-size: 28px;
    }

    .you-text {
        font-size: 36px;
    }

    .pricing-card {
        padding: 32px 20px;
    }

    .pricing-card .plan-price .amount {
        font-size: 64px;
    }

    .pricing-card .plan-price .currency {
        font-size: 24px;
    }
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: #0d0b12;
    padding: 60px 20px;
    border-top: 1px solid rgba(139, 44, 245, 0.15);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: none;
    letter-spacing: 0;
}

.footer-subtitle {
    font-size: 12px;
    color: #8b8b9f;
    margin-bottom: 16px;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.payment-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.payment-label {
    font-size: 12px;
    color: #8b8b9f;
    text-transform: none;
}

.payment-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.payment-icon {
    width: 248px;
    /* height: 32px; */
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.payment-icon:hover {
    transform: translateY(-2px);
}

.payment-icon svg {
    width: 100%;
    height: 100%;
}

.payment-icon.pix svg {
    width: 40px;
    height: 28px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: transparent;
    border: 2px solid transparent;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Footer Bottom Bar */
.footer-bottom {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -60px;
    margin-top: 48px;
    background: linear-gradient(135deg, #9b2cf5 0%, #830ad1 100%);
    padding: 20px 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.footer-bottom p strong {
    font-weight: 700;
}

/* MOBILE — HERO */
@media (max-width: 768px) {
    .mega-menu {
        padding: 24px 20px;
    }

    .menu-header {
        margin-bottom: 24px;
    }

    .menu-grid {
        gap: 24px;
    }

    .hero {
        padding-top: 110px;
        min-height: auto;
        align-items: flex-start;
        padding-bottom: 60px;
        background: radial-gradient(circle at 50% 10%,
                rgba(131, 10, 209, 0.12) 0%,
                transparent 50%),
            radial-gradient(circle at top left,
                #1a1026 0%,
                #0c0a10 60%);
    }

    .hero-container {
        flex-direction: column;
        gap: 0;
        align-items: center;
        text-align: center;
        padding: 0 24px;
    }

    .hero-content {
        align-self: center;
        max-width: 100%;
        flex: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 0;
    }

    .hero-logo {
        margin-bottom: 20px;
        position: relative;
    }

    .hero-logo::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(131, 10, 209, 0.25) 0%, transparent 70%);
        z-index: -1;
        pointer-events: none;
    }

    .hero-logo img {
        height: 72px;
        margin-bottom: 0;
        filter: drop-shadow(0 4px 16px rgba(131, 10, 209, 0.25));
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 24px;
        padding: 0 8px;
        text-align: center;
        color: #f0f0f0;
    }

    span.mais {
        font-size: 18px;
    }

    .hero-cta {
        width: 100%;
        align-items: center;
    }

    .hero-btn {
        padding: 16px 28px;
        font-size: 15px;
        width: 100%;
        display: block;
        background: linear-gradient(135deg, #9b2cf5 0%, #830ad1 50%, #6b08b0 100%);
        box-shadow: 0 6px 20px rgba(131, 10, 209, 0.35);
        border-radius: 12px;
    }

    .hero-btn:active {
        transform: scale(0.98);
        box-shadow: 0 4px 16px rgba(131, 10, 209, 0.5);
    }

    .hero-content p.cancel {
        font-size: 12px;
        text-align: center;
        margin-top: 16px;
        color: #d4c4e8;
    }

    .hero-image {
        display: none;
    }

    /* MOBILE — REALZ+ */
    .realz-plus {
        padding: 64px 20px;
    }

    .realz-title {
        font-size: 26px;
        margin-bottom: 16px;
        text-align: center;
    }

    .realz-subtitle {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 40px;
        text-align: center;
    }

    .realz-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .realz-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 36px 28px;
        gap: 20px;
    }

    .realz-card .icon {
        width: 88px;
        height: 88px;
        min-width: 88px;
        border-radius: 24px;
    }

    .realz-card .icon svg {
        width: 48px;
        height: 48px;
    }

    .realz-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .realz-card p {
        font-size: 14px;
        line-height: 1.55;
        color: #d4c4e8;
    }



    /* =========================
       MOBILE — COMPARE SECTION
    ========================= */
    .compare {
        padding: 64px 16px;
    }

    .compare-title {
        font-size: 26px;
        margin-bottom: 40px;
        line-height: 1.4;
    }

    .compare-title .x {
        display: block;
        margin: 8px 0;
        font-size: 18px;
    }

    .compare-grid {
        gap: 40px;
    }

    .compare-row {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
        background: linear-gradient(180deg, rgba(22, 18, 31, 0.5), rgba(11, 8, 18, 0.8));
        border-radius: 20px;
        padding: 20px;
        border: 1px solid rgba(139, 44, 245, 0.25);
    }

    /* Card "Sem realz+" - Estilo minimalista e apagado */
    .compare-row .compare-item.off {
        background: transparent;
        border: none;
        padding: 12px 16px;
        opacity: 0.5;
        position: relative;
        border-radius: 12px;
    }

    .compare-row .compare-item.off::after {
        content: '';
        position: absolute;
        left: 16px;
        right: 16px;
        top: 50%;
        height: 1px;
        background: rgba(225, 29, 72, 0.4);
    }

    .compare-row .compare-item.off p {
        font-size: 14px;
        color: #888;
        text-decoration: line-through;
        text-decoration-color: rgba(225, 29, 72, 0.5);
    }

    .compare-row .compare-item.off .label {
        font-size: 11px;
        opacity: 0.7;
    }

    /* Seta indicadora de transformação */
    .compare-row .compare-arrow {
        font-size: 20px;
        transform: rotate(90deg);
        padding: 8px 0;
        opacity: 0.5;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #8b2cf5;
    }

    /* Card "Com realz+" - Destacado e vibrante */
    .compare-row .compare-item.on {
        background: linear-gradient(135deg, rgba(139, 44, 245, 0.15), rgba(139, 44, 245, 0.05));
        border: 1px solid rgba(139, 44, 245, 0.5);
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(139, 44, 245, 0.2);
        position: relative;
    }

    .compare-row .compare-item.on::before {
        content: '✓';
        position: absolute;
        top: -10px;
        right: 16px;
        background: linear-gradient(135deg, #9b2cf5, #830ad1);
        color: #fff;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(139, 44, 245, 0.4);
    }

    .compare-row .compare-item.on .label {
        font-size: 12px;
        color: #a78bfa;
        margin-bottom: 4px;
    }

    .compare-row .compare-item.on p {
        font-size: 16px;
        line-height: 1.5;
        color: #fff;
    }

    .compare-row .compare-item.on .highlight {
        color: #a78bfa;
        font-weight: 700;
        display: inline;
    }

    /* Espaçamento interno melhorado */
    .compare-item {
        padding: 20px;
    }

    .compare-item p {
        font-size: 15px;
    }

    .partners {
        padding: 40px 16px;
    }

    .partners-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .partner-card {
        min-height: auto;
        padding: 20px 16px;
        gap: 12px;
    }

    .partners-title {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .partner-card .logo {
        font-size: 28px;
    }

    .partner-card .logo img {
        width: 100%;
        height: auto;
        max-width: 90px;
    }

    .partner-card .info strong {
        font-size: 14px;
        line-height: 1.3;
    }

    .partner-card .info span {
        font-size: 12px;
    }

    .partner-cta {
        min-height: auto;
        padding: 20px 16px;
        gap: 4px;
    }

    .partner-cta span {
        font-size: 13px;
    }

    .partner-cta strong {
        font-size: 20px;
        line-height: 1.2;
    }

    .partner-cta .arrow {
        align-self: flex-start;
        font-size: 24px;
        margin-top: 12px;
    }

    /* FOOTER MOBILE */
    .site-footer {
        padding: 40px 16px;
    }

    .footer-container {
        gap: 32px;
    }

    .footer-title {
        font-size: 14px;
    }

    .payment-methods {
        flex-direction: column;
        gap: 24px;
    }

    .payment-icons {
        gap: 8px;
    }

    .payment-icon {
        width: 192px;

    }

    .social-icons {
        gap: 16px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .footer-bottom {
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;
        margin-bottom: -40px;
        margin-top: 32px;
        padding: 16px 16px;
    }

    .footer-bottom p {
        font-size: 11px;
        line-height: 1.7;
    }
}