/* LP CONVERSION DEMO: ESTRUTURA E LAYOUT */
.hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.lp-conversion-demo {
    width: 100%;
    max-width: 450px;
    position: relative;
    padding: 0px;
}

.lp-conversion-demo::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--noise);
    background-size: 100px 100px; 
    background-repeat: repeat;
    opacity: 0.04; 
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

.browser-window {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    animation: revealWindow 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: background-color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

/* HEADER DO NAVEGADOR */
.window-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.5s ease, border-color 0.5s ease;
}

.browser-dots { 
    display: flex; 
    gap: 5px; 
}

.browser-dots span { 
    width: 6px; 
    height: 6px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.2);
    transition: background-color 0.5s ease;
}

.address-bar {
    height: 25px;
    flex: 1;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgb(251 251 251 / 8%);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    color: var(--text-secondary);
    display: flex; 
    align-items: center; 
    gap: 8px; 
    opacity: 0.7;
    transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
}

.address-bar span, 
.address-bar .material-symbols-outlined {
    font-size: 20px;
}

/* CONTEÚDO E SISTEMA DE SCROLL */
.window-content {
    height: 300px;
    overflow: hidden;
    position: relative;
    background: rgba(255,255,255,0.01);
}

.lp-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: lpAutoScroll 10s ease-in-out infinite;
    animation-delay: 0.8s;
}

/* MOCKUPS DE SEÇÃO E ELEMENTOS INTERNOS */
.lp-section-mockup {
    min-height: 250px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-bottom: 1px dashed var(--border-color);
    opacity: 0;
    transform: translateY(20px);
    animation: elementReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: border-color 0.5s ease;
}

/* Delays de Seção */
.section-hero { animation-delay: 0.8s; }
.section-proof { animation-delay: 1.1s; }
.section-offer { animation-delay: 1.4s; }

.mock-line { 
    background: rgba(255,255,255,0.05); 
    border-radius: 4px; 
    height: 10px; 
    transition: background-color 0.5s ease;
}

.mock-line.title { width: 70%; height: 18px; background: var(--electric-indigo); animation-delay: 0.9s; }
.mock-line.subtitle { width: 90%; }
.mock-line.full { width: 100%; height: 6px; }

.mock-button-lp {
    width: 140px; height: 35px;
    background: var(--electric-indigo);
    border-radius: 6px;
    margin-top: 10px;
    animation-delay: 1.2s;
}

.proof-grid {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    animation-delay: 1.3s;
}

.proof-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    transition: background-color 0.5s ease;
}

.offer-box {
    flex: 1;
    border: 1px solid var(--electric-indigo);
    background: rgba(102, 45, 145, 0.05);
    border-radius: 8px;
}

.mock-line, .mock-button-lp, .proof-dot, .offer-box {
    opacity: 0;
    animation: elementReveal 0.6s ease-out forwards;
}

.conversion-tag {
    position: absolute;
    bottom: 40px;
    right: 0px;
    margin-right: 20px;
    background: rgba(20, 20, 20, 0.9);
    color: white;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    display: flex; 
    align-items: center; 
    gap: 0px;
    box-shadow: 0 10px 25px rgba(102, 45, 145, 0.4);
    z-index: 10;
    opacity: 0;
    transition: 
        background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.8s ease;
    animation: tagPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 4s;
}

.conversion-tag.is-completed {
    background: var(--electric-indigo);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(102, 45, 145, 0.4);
}

#conv-value {
    display: inline-block;
    min-width: 22px;
    text-align: center;
}

/* KEYFRAMES (ANIMAÇÕES) */
@keyframes elementReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lpAutoScroll {
    0%, 15% { transform: translateY(0); }
    35%, 50% { transform: translateY(-250px); }
    70%, 85% { transform: translateY(-500px); }
    100% { transform: translateY(0); }
}

@keyframes tagPop {
    from { opacity: 0; transform: scale(0.5) translate(20px, 20px); }
    to { opacity: 1; transform: scale(1) translate(0, 0); }
}

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

body.light-theme .browser-window { 
    background: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

body.light-theme .window-header {
    background: rgba(0, 0, 0, 0.02);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .browser-dots span { 
    background: rgba(0, 0, 0, 0.15); 
}

body.light-theme .address-bar { 
    background-color: #F9F9FB;
    border-color: rgba(0, 0, 0, 0.08);
    color: var(--text-secondary);
}

body.light-theme .lp-section-mockup { 
    border-bottom-color: rgba(0,0,0,0.08); 
}

body.light-theme .mock-line:not(.title) { 
    background: rgba(0,0,0,0.1); 
}

body.light-theme .proof-dot { 
    background: rgba(0,0,0,0.1); 
}

body.light-theme .conversion-tag:not(.is-completed) { 
    background: rgba(0, 0, 0, 0.85); 
}

.lp-data-section {
    padding: 150px 15%;
    background-color: var(--bg-primary);
    transition: background-color 0.5s ease;
}

.lp-chart-container {
    margin-top: 80px;
    display: flex;
    gap: 100px;
    align-items: flex-end;
}

.chart-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-bar-wrap {
    height: 300px;
    width: 100%;
    background: rgba(255,255,255,0.02);
    position: relative;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    transition: background-color 0.5s ease;
}

.chart-box label {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 90%;
    transition: color 0.5s ease;
}

/* ESTADO INICIAL DO GRÁFICO (PARA ANIMAÇÃO) */
.chart-bar-fill {
    width: 100%;
    height: 0;
    transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom;
}

.lp-chart-container.is-active .bar-competitor {
    height: 25%;
}

.lp-chart-container.is-active .bar-vmoode {
    height: 90%;
}

.chart-val {
    position: absolute;
    top: -40px;
    left: 0;
    font-weight: 800;
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease 1s, transform 0.6s ease 1s, color 0.5s ease, filter 0.5s ease;
}

.lp-chart-container.is-active .chart-val {
    opacity: 1;
    transform: translateY(0);
}

.bar-competitor {
    background: var(--border-color);
    transition: background-color 0.5s ease;
}

.bar-vmoode {
    background: var(--electric-indigo);
    box-shadow: 0 0 50px rgba(102, 45, 145, 0.2);
}

body.light-theme .chart-bar-wrap {
    background: rgba(0, 0, 0, 0.03); 
}

body.light-theme .chart-box label {
    color: var(--text-secondary);
    opacity: 0.8;
}

body.light-theme .chart-val {
    color: var(--stellar-white);
    filter: brightness(0.2);
}

.lp-hero-pro {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 15%;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-section);
}

.lp-hero-blur {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(102, 45, 145, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.authority-section {
    padding: 150px 15%;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-section);
    transition: background-color 0.5s ease, border-color 0.5s ease;
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.authority-item {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 30px;
    border-left: 1px solid var(--border-section);
    transition: border-color 0.5s ease;
}

.authority-item:hover, 
.authority-item.highlight-text {
    border-left: 1px solid var(--electric-indigo);
}

.auth-icon span {
    font-size: 40px;
    color: var(--electric-indigo);
    font-variation-settings: 'wght' 100;
    opacity: 0.8;
}

.authority-item h4 {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--stellar-white);
    transition: color 0.5s ease;
}

.authority-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    opacity: 0.6;
    font-weight: 400;
    transition: color 0.5s ease;
}

.authority-item.highlight-text h4 {
    color: var(--stellar-white);
}

.vercel-header {
    margin-bottom: 80px;
    text-align: left;
}

.card-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--electric-indigo);
    display: block;
    margin-bottom: 20px;
}

.performance-bar {
    width: 100%;
    height: 2px;
    background: var(--border-color);
    margin-top: 30px;
    position: relative;
    border-radius: 2px;
    transition: background-color 0.5s ease;
}

.bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 85%;
    background: var(--electric-indigo);
    box-shadow: 0 0 10px var(--electric-indigo);
}

.lp-showcase {
    padding-left: 15%;
    padding-right: 15%;
    background-color: var(--bg-primary);
    transition: background-color 0.5s ease;
}

.lp-showcase .image-container {
    height: 400px;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5);
}

.lp-arsenal {
    padding: 150px 15%;
    background-color: var(--bg-primary);
    transition: background-color 0.5s ease;
}

.arsenal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background-color: var(--border-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 80px;
}

.arsenal-item {
    position: relative;
    padding: 80px 60px;
    background-color: var(--bg-primary);
    overflow: hidden;
    transition: background-color 0.5s ease;
}

.arsenal-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(102, 45, 145, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.arsenal-item:hover .arsenal-glow {
    opacity: 1;
}

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

.item-num {
    font-size: 0.8rem;
    font-weight: 800;
    opacity: 0.2;
    letter-spacing: 2px;
}

.item-icon {
    font-size: 32px;
    color: var(--electric-indigo);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.5s ease;
}

.arsenal-item:hover .item-icon {
    transform: translateY(-5px) scale(1.1);
    color: var(--stellar-white);
}

.arsenal-item h4 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    transition: color 0.5s ease;
}

.arsenal-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    opacity: 0.6;
    max-width: 90%;
    transition: color 0.5s ease;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
    margin-top: 60px;
}

.bento-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.5s ease, 
                background-color 0.5s ease;
}

.bento-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--noise);
    background-size: 100px 100px;
    background-repeat: repeat;
    opacity: 0.04;
    mix-blend-mode: overlay;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

.bento-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(46, 49, 146, 0.08);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: var(--indigo-deep);
}

.bento-item:hover::after {
    opacity: 1;
}

.bento-inner {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-align: left;
    z-index: 2;
}

.bento-item span {
    color: var(--electric-indigo);
    font-size: 32px;
    margin-bottom: 20px;
}

.bento-item h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    transition: color 0.5s ease;
}

.bento-item p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.6;
    transition: color 0.5s ease;
}

.highlight-card {
    grid-column: span 2;
}

.wide-card {
    grid-column: span 2;
}

.lp-hero-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--noise);
    background-size: 100px 100px;
    background-repeat: repeat;
    opacity: 0.04;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}

.speed-indicator::before {
    z-index: 1;
}

.lp-hero-pro .lp-hero-content {
    position: relative;
    z-index: 2;
}

.lp-hero-pro::before {
    z-index: 1;
}

.vmoode-visual-section .image-container img {
    object-position: center center !important;
    object-fit: cover;
}

@media (max-width: 992px) {
    .lp-data-section, 
    .lp-hero-pro, 
    .authority-section, 
    .lp-arsenal,
    .lp-hero {
        padding: 80px 10% !important;
    }

    .lp-showcase {
        padding: 80px 10% 0px !important;
    }

    .lp-hero { 
        display: flex;
        flex-direction: column;
        align-items: flex-start;
       
    }

    .lp-hero-visual { 
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 50px; 
    }

    .lp-showcase .image-container {
        height: 350px;
    }

    .bento-grid { 
        grid-template-columns: 1fr 1fr; 
        grid-auto-rows: auto; 
    }

    .highlight-card, .wide-card {
        grid-column: span 2;
    }

    .lp-chart-container { 
        flex-direction: row;
        gap: 30px;
        align-items: flex-end;
    }

    .chart-box { flex: 1; }
    .chart-bar-wrap { height: 200px; }
    .chart-box label { font-size: 0.75rem; }
    .chart-val { font-size: 1.1rem; top: -35px; }

    .authority-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .arsenal-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .arsenal-item {
        padding: 50px 40px;
    }

    .authority-item {
        padding-left: 20px;
    }

}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .highlight-card, .wide-card {
        grid-column: span 1;
    }
}
