* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d8a24d;
    --gold-light: #ffcb73;
    --bg: #050505;
    --bg-soft: #0d0d0d;
    --card: #111;
    --border: rgba(255,255,255,.06);
    --text: #fff;
    --muted: rgba(255,255,255,.65);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

    body::before {
        content: "";
        position: fixed;
        width: 700px;
        height: 700px;
        top: -250px;
        right: -250px;
        border-radius: 50%;
        background: rgba(216,162,77,.12);
        filter: blur(120px);
        pointer-events: none;
        z-index: -1;
    }

a {
    text-decoration: none;
    color: inherit;
}

.hero, .journey, .comparison, .pricing, .faq, .final-cta {
    padding: 80px 24px;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

    .section-header span {
        color: var(--gold);
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 700;
    }

    .section-header h2 {
        font-size: clamp(34px, 5vw, 64px);
        margin-top: 16px;
        font-weight: 800;
        letter-spacing: -1px;
    }

.btn-primary, .btn-secondary {
    height: 62px;
    padding: 0 32px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: transform .25s ease-in-out, box-shadow .25s ease-in-out, background .25s ease-in-out, opacity .2s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(216,162,77,.25);
    }

    .btn-secondary:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.15);
    }

    .btn-primary:active, .btn-secondary:active {
        transform: translateY(-1px) scale(0.98);
        opacity: 0.9;
    }

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
}

.btn-secondary {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.trust-bar {
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: rgba(13, 13, 13, 0.5);
}

.trust-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

    .trust-track span {
        font-size: 16px;
        font-weight: 600;
        color: var(--muted);
        letter-spacing: 1px;
        text-transform: uppercase;
    }

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 40px;
}

.hero-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(216,162,77,.1);
    border: 1px solid rgba(216,162,77,.15);
    color: var(--gold-light);
    margin-bottom: 28px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: clamp(44px, 6vw, 84px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 24px;
    text-align: left;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: premiumReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    background-size: 200% auto !important;
    will-change: transform, opacity, filter;
}

@keyframes premiumReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes gradientShimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-showcase {
    position: relative;
    width: 100%;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-main {
    width: 100%;
    max-width: 310px;
    display: block;
    margin: auto;
    position: relative;
    z-index: 3;
    animation: floatMain 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8));
    border-radius: 40px;
    will-change: transform;
}

.phone-left {
    position: absolute;
    width: 240px;
    left: -20px;
    top: 140px;
    transform: rotate(-12deg) scale(.92);
    opacity: .7;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    border-radius: 32px;
    transition: .4s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-right {
    position: absolute;
    width: 240px;
    right: -20px;
    top: 110px;
    transform: rotate(12deg) scale(.92);
    opacity: .8;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    border-radius: 32px;
    transition: .4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-showcase:hover .phone-left {
    transform: rotate(-16deg) translate(-15px, 10px) scale(.95);
    opacity: .9;
}

.hero-showcase:hover .phone-right {
    transform: rotate(16deg) translate(15px, 10px) scale(.95);
    opacity: .9;
}

@keyframes floatMain {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.journey {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
    border-top: 1px solid var(--border);
}

.journey-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.journey-step {
    background: #0d0d0d;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: .35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

    .journey-step:hover {
        transform: translateY(-8px);
        border-color: rgba(216, 162, 77, 0.25);
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

.journey-step-img-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    background: #050505;
    border: 1px solid rgba(255,255,255,0.03);
}

.journey-step img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.journey-step:hover .journey-step-img-wrapper img {
    transform: scale(1.04);
}

.journey-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.journey-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    background: rgba(216,162,77,0.1);
    padding: 4px 10px;
    border-radius: 99px;
}

.journey-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.journey-step p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
}

.comparison {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.comparison-card {
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 56px;
    position: relative;
    overflow: hidden;
}

    .comparison-card h3 {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 32px;
        display: flex;
        align-items: center;
        gap: 14px;
    }

        .comparison-card h3 i {
            font-size: 36px;
        }

.old h3 i {
    color: #ff4a4a;
}

.new h3 i {
    color: var(--gold-light);
}

.old {
    background: linear-gradient(180deg, rgba(255, 74, 74, .02) 0%, rgba(255, 255, 255, .01) 100%);
}

.new {
    background: linear-gradient(180deg, rgba(216, 162, 77, .06) 0%, rgba(255, 255, 255, .01) 100%);
    border-color: rgba(216, 162, 77, 0.15);
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.5;
}

    .comparison-item i {
        font-size: 20px;
        margin-top: 2px;
    }

.old .comparison-item i {
    color: rgba(255, 74, 74, 0.6);
}

.new .comparison-item i {
    color: var(--gold);
}

.old .comparison-item {
    color: rgba(255,255,255,0.5);
}

.pricing-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .04) 0%, rgba(255, 255, 255, .01) 100%);
    border: 1px solid var(--border);
    border-radius: 40px;
    max-width: 760px;
    margin: auto;
    padding: 80px 40px;
    text-align: center;
    position: relative;
}

    .pricing-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 40px;
        padding: 1px;
        background: linear-gradient(180deg, rgba(216,162,77,0.2), transparent);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

.pricing-badge {
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 800;
    display: block;
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.pricing-currency {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-light);
}

.pricing-card h2 {
    font-size: clamp(70px, 9vw, 110px);
    line-height: 1;
    color: var(--gold-light);
    font-weight: 900;
    letter-spacing: -3px;
}

.pricing-period {
    font-size: 18px;
    color: var(--muted);
    display: block;
    margin-bottom: 28px;
}

.pricing-card p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 40px;
}

.pricing-card .btn-primary {
    max-width: 340px;
    margin: auto;
}

.faq-list {
    max-width: 840px;
    margin: auto;
}

.faq details {
    background: #0d0d0d;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 16px;
    transition: border-color 0.3s;
}

    .faq details[open] {
        border-color: rgba(216, 162, 77, 0.2);
    }

.faq summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
}

    .faq summary::-webkit-details-marker {
        display: none;
    }

    .faq summary::after {
        content: "+";
        font-size: 24px;
        color: var(--gold);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

.faq details[open] summary::after {
    transform: rotate(45deg);
    color: var(--gold-light);
}

.faq p {
    margin-top: 18px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 16px;
}

.final-cta {
    padding: 80px 24px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(216,162,77,0.1) 0%, transparent 65%);
    position: relative;
    border-top: 1px solid var(--border);
}

    .final-cta h2 {
        max-width: 1000px;
        margin: auto;
        font-size: clamp(38px, 5.5vw, 76px);
        font-weight: 900;
        letter-spacing: -2px;
        line-height: 1.1;
        margin-bottom: 24px;
    }

    .final-cta p {
        color: var(--muted);
        margin-bottom: 40px;
        font-size: 20px;
    }

    .final-cta .btn-primary {
        max-width: 320px;
        margin: auto;
    }

/* CONTAINER ESTÁVEL DO TEXTO DINÂMICO */
.typing-text {
    display: inline-block;
    vertical-align: top;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
    will-change: transform, opacity;
    background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShimmer 6s linear infinite;
    background-size: 200% auto !important;
    min-width: 550px;
    text-align: left;
}

.text-fade-out {
    opacity: 0 !important;
    transform: translateY(-8px);
    filter: blur(4px);
}

.text-fade-in {
    opacity: 1 !important;
    transform: translateY(0);
    filter: blur(0);
}

/* ==========================================================================
   MAIN FOOTER STYLING (ESTILO NEONCORE REFINADO)
   ========================================================================== */
.main-footer {
    background: #000;
    padding-top: 70px;
    padding-bottom: 30px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 5;
    text-align: left; /* Garante que o texto fique à esquerda no desktop */
}

    .main-footer .footer-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.4fr repeat(3, minmax(150px, 1fr));
        gap: 40px;
        padding: 0 24px 50px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

.footer-brand h2 {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

    .footer-brand h2 span {
        color: var(--gold);
    }

.footer-brand p,
.footer-column a,
.footer-bottom {
    color: var(--muted);
    line-height: 1.7;
}

.footer-brand p {
    max-width: 340px;
    font-size: 15px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start; /* Evita que os links centralizem herança de outras divs */
}

    .footer-column h4 {
        color: white;
        font-size: 13px;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 800;
    }

    .footer-column a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        transition: color .2s ease;
        font-size: 15px;
    }

        .footer-column a:hover {
            color: var(--gold-light);
        }

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.main-footer .footer-grid {
    grid-template-columns: repeat(3, minmax(150px, 1fr)) 1.4fr;
}

.footer-brand {
    order: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

    .footer-brand p {
        margin: 0 0 0 auto;
    }

@media (max-width: 1024px) {
    .hero, .journey, .comparison, .pricing, .faq, .final-cta {
        padding: 60px 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-content h1 {
        font-size: 56px;
        text-align: center;
    }

    .typing-text {
        min-width: 100%;
        text-align: center;
    }

    .hero-content p {
        margin: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-showcase {
        max-width: 500px;
        margin: auto;
        height: 48px;
        padding-bottom: 100%;
    }

    .phone-main {
        max-width: 280px;
    }

    .phone-left, .phone-right {
        width: 200px;
        top: 80px;
    }

    .phone-left {
        left: -10px;
    }

    .phone-right {
        right: -10px;
    }

    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .main-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        order: -1;
        align-items: flex-start;
        text-align: left;
    }

        .footer-brand p {
            max-width: 100%;
            margin: 0;
        }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 20px;
    }

    .hero-content h1 {
        font-size: 42px;
        text-align: center;
    }

    .typing-text {
        min-width: 100%;
        min-height: 96px;
        display: block;
        text-align: center;
    }

    .hero-showcase {
        height: auto;
        padding-bottom: 0;
        margin-top: 20px;
    }

    .phone-left, .phone-right {
        display: none !important;
    }

    .phone-main {
        max-width: 290px;
        position: static;
        animation: floatMain 5s ease-in-out infinite;
    }

    .journey {
        padding: 40px 0 10px 0;
        overflow-x: hidden;
    }

        .journey .section-header {
            padding: 0 20px;
            margin-bottom: 30px;
        }

    .journey-grid {
        display: flex;
        grid-template-columns: none;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 24px 24px 24px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

        .journey-grid::-webkit-scrollbar {
            display: none !important;
        }

    .journey-step {
        flex: 0 0 290px;
        scroll-snap-align: center;
        background: #0d0d0d;
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

        .journey-step:hover {
            transform: none !important;
        }

        .journey-step:active {
            border-color: rgba(216, 162, 77, 0.3);
            background: #121212;
        }

    .comparison, .pricing, .faq, .final-cta {
        padding: 40px 20px;
    }

    .comparison-card {
        padding: 32px 24px;
        background: rgba(17, 17, 17, 0.6);
        backdrop-filter: blur(10px);
    }

        .comparison-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }

    .comparison-list {
        gap: 16px;
    }

    .pricing-card {
        padding: 40px 20px;
    }

        .pricing-card h2 {
            font-size: 64px;
        }

    .faq details {
        padding: 20px;
        border-radius: 16px;
    }

    .faq summary {
        font-size: 16px;
    }

    .faq p {
        font-size: 15px;
        line-height: 1.6;
    }

    .main-footer {
        text-align: left;
    }

        .main-footer .footer-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

    .footer-brand {
        order: -1;
        align-items: flex-start;
        text-align: left;
    }

    .footer-column {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
        padding-top: 20px;
    }
}

.avatar-animate {
    opacity: 0;
    animation: avatarPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.avatar-text-animate {
    opacity: 0;
    animation: fadeInText 0.8s ease forwards;
    animation-delay: 0.6s;
}

.social-avatars img:nth-child(1) {
    animation-delay: 0.1s;
}

.social-avatars img:nth-child(2) {
    animation-delay: 0.25s;
}

.social-avatars img:nth-child(3) {
    animation-delay: 0.4s;
}

.social-avatars div {
    animation-delay: 0.55s;
}

@keyframes avatarPopIn {
    0% {
        opacity: 0;
        transform: scale(0.4) translateX(-10px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateX(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.install-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background: #111;
    border: 1px solid rgba(212,160,74,.25);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,.4);
    z-index: 9999;
    display: none;
    animation: slideUp .35s ease;
}

.install-widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .install-widget-header img {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .install-widget-header strong {
        display: block;
        color: #fff;
    }

    .install-widget-header span {
        display: block;
        font-size: 13px;
        color: rgba(255,255,255,.65);
    }

.install-widget p {
    margin: 15px 0;
    color: rgba(255,255,255,.75);
    line-height: 1.5;
    font-size: 14px;
}

.install-widget-btn {
    width: 100%;
    border: none;
    border-radius: 12px;
    background: #D4A04A;
    color: #000;
    font-weight: 700;
    padding: 12px;
    cursor: pointer;
}

.install-widget-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,.6);
    font-size: 20px;
    cursor: pointer;
}

@keyframes slideUp {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width:768px) {

    .install-widget {
        left: 12px;
        right: 12px;
        width: auto;
        bottom: 12px;
    }
}