* {
    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 (PREMIUM RODAPÉ)
   ========================================================================== */
.main-footer {
    background: #000;
    border-top: 1px solid var(--border);
    padding: 60px 40px 30px;
    position: relative;
    z-index: 5;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-brand h2 {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

    .footer-brand h2 span {
        color: var(--gold);
    }

.footer-brand p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 380px;
}

.footer-links-group {
    display: flex;
    justify-content: flex-end;
    gap: 80px;
}

.footer-links-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links-col a {
    display: block;
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

    .footer-links-col a:hover {
        color: var(--gold-light);
    }

.footer-bottom {
    max-width: 1400px;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer-bottom p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.35);
        line-height: 1.5;
    }

/* ==========================================================================
   MEDIA QUERIES (TABLETS & DESKTOP PEQUENO)
   ========================================================================== */
@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;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links-group {
        justify-content: center;
        gap: 60px;
    }
}

/* ==========================================================================
   MEDIA QUERIES (EXPERIÊNCIA MOBILE PREMIUM - CELULARES)
   ========================================================================== */
@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 {
        padding: 40px 20px 20px;
    }

    .footer-links-group {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links-col h4 {
        margin-bottom: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
