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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background: #06060b;
    color: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ========== HEADER ========== */
.header-lp {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 6, 11, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s;
}

.header-lp.scrolled {
    box-shadow: 0 4px 40px rgba(99,102,241,0.1);
    border-bottom-color: rgba(99,102,241,0.15);
}

.nav-lp {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.logo-img-nav {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
}

.logo-accent {
    color: #8b5cf6;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link-item {
    color: #a0a0b8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8b5cf6;
    transition: width 0.3s;
}

.nav-link-item:hover {
    color: #fff;
}

.nav-link-item:hover::after {
    width: 100%;
}

.btn-header-lp {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(99,102,241,0.3);
    position: relative;
    overflow: hidden;
}

.btn-header-lp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99,102,241,0.5);
}

/* ========== HERO ========== */
.hero-lp {
    padding: 180px 40px 100px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.hero-bg-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99,102,241,0.08), transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139,92,246,0.08);
    border: 1px solid rgba(139,92,246,0.2);
    color: #a78bfa;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #a78bfa;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #f0f0f8;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: #9090b0;
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 500px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary-lp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    padding: 15px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary-lp:hover {
    transform: translateY(-3px);
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.btn-glow {
    box-shadow: 0 8px 35px rgba(99,102,241,0.4);
}

.btn-glow:hover {
    box-shadow: 0 12px 45px rgba(99,102,241,0.6);
}

.btn-arrow {
    transition: transform 0.3s;
}

.btn-primary-lp:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-outline-lp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.1);
    color: #b0b0c8;
    transition: all 0.3s;
}

.btn-outline-lp:hover {
    border-color: #8b5cf6;
    color: #fff;
    background: rgba(139,92,246,0.05);
}

.btn-block-lp {
    width: 100%;
    justify-content: center;
}

.btn-large-lp {
    padding: 18px 44px;
    font-size: 17px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 12px;
    color: #808098;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.08);
}

/* ========== HERO VIDEO ========== */
.hero-video {
    position: relative;
}

.video-wrapper-lp {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(99,102,241,0.2);
}

.video-border-glow {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a78bfa);
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
}

.video-wrapper-lp iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.video-glow {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(circle at center, rgba(139,92,246,0.1), transparent 70%);
    border-radius: 30px;
    z-index: -1;
    filter: blur(40px);
}

/* ========== SCROLL INDICATOR ========== */
.hero-scroll-indicator {
    text-align: center;
    margin-top: 60px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-scroll-indicator span {
    font-size: 11px;
    color: #606080;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin: 10px auto 0;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #8b5cf6;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== SEÇÕES ========== */
section {
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    background: rgba(139,92,246,0.08);
    border: 1px solid rgba(139,92,246,0.15);
    color: #a78bfa;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title-lp {
    font-size: 40px;
    font-weight: 800;
    color: #f0f0f8;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle-lp {
    font-size: 16px;
    color: #808098;
    font-weight: 400;
}

/* ========== SERVIÇOS ========== */
.servicos-lp {
    background: rgba(139,92,246,0.015);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.servico-card-lp {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.servico-card-lp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.servico-card-lp:hover::before {
    opacity: 1;
}

.servico-card-lp:hover {
    transform: translateY(-8px);
    border-color: rgba(139,92,246,0.25);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    background: rgba(255,255,255,0.03);
}

.servico-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(139,92,246,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 26px;
    transition: all 0.3s;
}

.servico-card-lp:hover .servico-icon-wrapper {
    background: rgba(139,92,246,0.2);
    transform: scale(1.1);
}

.servico-card-lp h3 {
    font-size: 18px;
    font-weight: 700;
    color: #e0e0f0;
    margin-bottom: 10px;
}

.servico-card-lp p {
    font-size: 14px;
    color: #9090a8;
    margin-bottom: 16px;
    line-height: 1.7;
}

.servico-link {
    color: #8b5cf6;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.servico-link span {
    transition: transform 0.3s;
}

.servico-link:hover {
    color: #a78bfa;
}

.servico-link:hover span {
    transform: translateX(4px);
}

/* ========== EXEMPLO ========== */
.exemplo-lp {
    background: rgba(139,92,246,0.015);
}

.exemplo-container {
    max-width: 750px;
    margin: 0 auto;
}

.exemplo-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s;
}

.exemplo-card:hover {
    border-color: rgba(139,92,246,0.25);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.exemplo-image-wrapper {
    position: relative;
    overflow: hidden;
}

.exemplo-image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.6s;
}

.exemplo-card:hover .exemplo-image-wrapper img {
    transform: scale(1.05);
}

.exemplo-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    color: #a78bfa;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.exemplo-info {
    padding: 28px;
    text-align: center;
}

.exemplo-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #e0e0f0;
}

.exemplo-info p {
    color: #808098;
    font-size: 14px;
    margin-bottom: 24px;
}

/* ========== PREÇO ========== */
.preco-lp {
    background: rgba(139,92,246,0.015);
}

.preco-container {
    max-width: 500px;
    margin: 0 auto;
}

.preco-card-lp {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(139,92,246,0.15);
    border-radius: 24px;
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.preco-card-lp:hover {
    border-color: rgba(139,92,246,0.3);
    box-shadow: 0 30px 60px rgba(99,102,241,0.1);
}

.preco-ribbon {
    position: absolute;
    top: 20px;
    right: -32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    padding: 6px 44px;
    font-size: 11px;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.preco-header-card {
    text-align: center;
    margin-bottom: 28px;
}

.preco-plan-name {
    font-size: 13px;
    color: #808098;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.preco-price {
    margin: 16px 0 4px;
}

.preco-currency {
    font-size: 28px;
    font-weight: 600;
    color: #a78bfa;
    vertical-align: top;
}

.preco-amount {
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -3px;
}

.preco-period {
    font-size: 13px;
    color: #808098;
    font-weight: 500;
}

.preco-features {
    list-style: none;
    margin-bottom: 32px;
}

.preco-features li {
    padding: 12px 0;
    color: #b0b0c0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.preco-features .fa-check-circle {
    color: #4ade80;
    font-size: 16px;
}

.preco-garantia {
    font-size: 12px;
    color: #808098;
    text-align: center;
    margin-top: 18px;
}

/* ========== DEPOIMENTOS ========== */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.depoimento-card-lp {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
}

.depoimento-card-lp:hover {
    border-color: rgba(139,92,246,0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.depoimento-quote {
    font-size: 72px;
    color: rgba(139,92,246,0.2);
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: serif;
    line-height: 1;
}

.depoimento-card-lp p {
    color: #b0b0c0;
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.depoimento-footer-lp {
    display: flex;
    align-items: center;
    gap: 14px;
}

.depoimento-avatar-lp {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.depoimento-footer-lp strong {
    display: block;
    font-size: 14px;
    color: #e0e0f0;
}

.depoimento-stars {
    font-size: 13px;
    margin-top: 2px;
}

/* ========== FAQ ========== */
.faq-lp {
    background: rgba(139,92,246,0.015);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item-lp {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    gap: 16px;
    transition: all 0.3s;
}

.faq-item-lp:hover {
    border-color: rgba(139,92,246,0.15);
    background: rgba(255,255,255,0.03);
}

.faq-icon-wrap {
    font-size: 22px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(139,92,246,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: #e0e0f0;
    margin-bottom: 6px;
}

.faq-content p {
    font-size: 13px;
    color: #9090a8;
    line-height: 1.7;
}

/* ========== CTA ========== */
.cta-lp {
    position: relative;
    text-align: center;
    padding: 120px 40px;
    background: linear-gradient(135deg, rgba(99,102,241,0.05), rgba(139,92,246,0.05));
    overflow: hidden;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.1), transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 18px;
    color: #a0a0b8;
    margin-bottom: 36px;
}

.cta-content strong {
    color: #a78bfa;
}

/* ========== FOOTER ========== */
.footer-lp {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.03);
    padding: 40px;
}

.footer-content-lp {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
}

.footer-brand p {
    font-size: 12px;
    color: #808098;
    margin-top: 4px;
}

.footer-links-lp {
    display: flex;
    gap: 28px;
}

.footer-links-lp a {
    color: #808098;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links-lp a:hover {
    color: #a78bfa;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-bottom p {
    font-size: 12px;
    color: #606060;
}

/* ========== ADMIN FLUTUANTE ========== */
.admin-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.06);
    color: #a0a0b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    z-index: 999;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
}

.admin-float:hover {
    background: rgba(139,92,246,0.25);
    color: #fff;
    transform: scale(1.1);
}

/* ========== WHATSAPP FLUTUANTE ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 8px 35px rgba(37,211,102,0.4);
    transition: all 0.3s;
    animation: float-wa 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 45px rgba(37,211,102,0.6);
}

.whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.5);
    animation: pulse-wa 2s ease-out infinite;
}

@keyframes pulse-wa {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes float-wa {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ========== ANIMAÇÕES AO SCROLL ========== */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVO ========== */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title-lp {
        font-size: 28px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    section {
        padding: 60px 20px;
    }
    
    .hero-lp {
        padding: 140px 20px 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .preco-amount {
        font-size: 52px;
    }
    
    .footer-content-lp {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links-lp {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .admin-float {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .faq-item-lp {
        flex-direction: column;
        gap: 10px;
    }
    }
