.lp-wrap {
    /* Paleta Premium: Deep Space & Electric Blue */
    --bg-dark: #09090b;
    --bg-card: #141417;
    --primary: #3b82f6; /* Blue 500 */
    --primary-glow: rgba(59, 130, 246, 0.4);
    --accent: #22d3ee; /* Cyan 400 */
    --gold: #f59e0b; /* Amber 500 (Para marcos de autoridade) */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Esconder Botão de 'Voltar ao Topo' do Tema/Elementor */
#ast-scroll-top, .elementor-scroll-top, .scroll-to-top {
    display: none !important;
}


.lp-wrap * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.lp-wrap {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Customization */
.lp-wrap h1, .lp-wrap h2, .lp-wrap h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.lp-wrap .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Glassmorphism Classes */
.lp-wrap .glass {
    background: rgba(20, 20, 23, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
}

/* Button Premium styling */
.lp-wrap .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    border-radius: 50px; /* Mais arredondado */
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.lp-wrap .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 10px 20px -5px var(--primary-glow);
    border: none;
}

.lp-wrap .btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px -5px var(--primary-glow);
    filter: brightness(1.1);
}

.lp-wrap .btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.lp-wrap .btn-primary:hover::after {
    opacity: 1;
}

.lp-wrap .btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-main);
    backdrop-filter: blur(5px);
}

.lp-wrap .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.lp-wrap .final-cta .btn {
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    line-height: 1.2;
}

/* Sections Styling */
.lp-wrap section {
    padding: 6rem 0;
}

.lp-wrap .section-tag {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    display: block;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.lp-wrap .animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.lp-wrap .animate-float {
    animation: float 4s ease-in-out infinite;
}

/* FAQ Arrows & Styling */
.lp-wrap summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    cursor: pointer;
    list-style: none; /* Esconde a seta padrão */
}

.lp-wrap summary::-webkit-details-marker {
    display: none; /* Esconde a seta padrão no Safari */
}

.lp-wrap summary::after {
    content: '↓'; /* Seta para baixo sempre visível */
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.lp-wrap details[open] summary::after {
    transform: rotate(180deg);
}

.lp-wrap details {
    transition: var(--transition);
}

.lp-wrap details:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.02);
}

/* Mouse Glow implementation via JS */
.lp-wrap .card.glass {
    position: relative;
}

.lp-wrap .card.glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(59, 130, 246, 0.1), transparent 40%);
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
}

.lp-wrap .floating-card {
    transition: var(--transition);
}

.lp-wrap .floating-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
}

/* Proof Images Styling */
.lp-wrap .proof-img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border);
    filter: grayscale(20%);
    transition: var(--transition);
}

.lp-wrap .proof-img:hover {
    filter: grayscale(0%);
    border-color: var(--primary);
}

/* Floating WhatsApp Button */
.lp-wrap .float-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    padding: 1rem 1.5rem;
    background: #25d366;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.lp-wrap .float-wa:hover {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.1);
}

/* Mobile Priority */
@media (max-width: 768px) {
    .lp-wrap section { padding: 4rem 0; }
    .lp-wrap h1 { font-size: 2.2rem !important; text-align: center; }
    .lp-wrap .hero-content { text-align: center; }
    .lp-wrap .hero-image { order: -1; margin-bottom: 3rem; width: 100%; max-width: 300px; margin-inline: auto; }
    .lp-wrap .hero .grid { gap: 2rem !important; }
    
    .lp-wrap .proof-bar .container { gap: 2.5rem !important; flex-direction: column !important; flex-wrap: nowrap !important; align-items: center !important; }
    .lp-wrap .stat-value { font-size: 2rem !important; font-variant-numeric: tabular-nums !important; }
    
    .lp-wrap .btn { width: 100%; }
    .lp-wrap .cta-group { justify-content: center; }

    .lp-wrap .final-cta .btn {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 16px; /* Visual mais slim para multiline */
    }
    
    .lp-wrap .testimonials-grid { grid-template-columns: 1fr; }
}

/* =========================================
/* =========================================
   Sales Proof Marquee (3 itens)
   ========================================= */

.lp-wrap .marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.lp-wrap .marquee-container {
    width: 100%;
    overflow: hidden;
}

.lp-wrap .marquee-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

/* Calculando 3 itens visíveis: (100% / 3) menos o gap proporcional */
.lp-wrap .marquee-item {
    flex: 0 0 calc((100% - 4rem) / 3);
    min-width: calc((100% - 4rem) / 3);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 24px;
    align-items: center;
}

.lp-wrap .marquee-img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.lp-wrap .marquee-desc {
    font-weight: 600;
    text-align: center;
    color: var(--text-main);
}

@media (max-width: 900px) {
    .lp-wrap .marquee-item {
        flex: 0 0 calc((100% - 2rem) / 2);
        min-width: calc((100% - 2rem) / 2);
    }
}

@media (max-width: 600px) {
    .lp-wrap .marquee-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* =========================================
   Testimonials & Video Modal
   ========================================= */

.lp-wrap .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Text Testimonial Card */
.lp-wrap .testimonial-card {
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}

.lp-wrap .testimonial-card .quote-icon {
    font-size: 4rem;
    font-family: serif;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
}

.lp-wrap .testimonial-card .testimonial-text {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    font-style: italic;
    padding-top: 1rem;
}

.lp-wrap .testimonial-card .testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-top: auto;
}

.lp-wrap .video-card {
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.lp-wrap .thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.lp-wrap .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
    border: none;
    filter: brightness(0.8) grayscale(20%);
    transition: var(--transition);
}

.lp-wrap .video-card:hover .video-thumbnail {
    transform: scale(1.05);
    filter: brightness(1) grayscale(0%);
}

.lp-wrap .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(20, 20, 23, 0.6);
    backdrop-filter: blur(8px);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    z-index: 2;
}

.lp-wrap .play-icon {
    width: 28px;
    height: 28px;
    margin-left: 4px; /* Optical optical alignment for play icon */
}

.lp-wrap .video-card:hover .play-overlay {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translate(-50%, -50%) scale(1.1);
}

.lp-wrap .video-info {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lp-wrap .impact-phrase {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.4;
}

.lp-wrap .person-details {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lp-wrap .person-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold);
}

.lp-wrap .person-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Modal Styling */
.lp-wrap .video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lp-wrap .video-modal.active {
    display: flex;
    opacity: 1;
}

.lp-wrap .video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.lp-wrap .video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    z-index: 1001;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-wrap .video-modal.active .video-modal-content {
    transform: translateY(0);
}

.lp-wrap .video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    background: #000;
}

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

.lp-wrap .close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: var(--transition);
}

.lp-wrap .close-modal:hover {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .lp-wrap .close-modal {
        top: -35px;
        right: 0;
    }
}

/* Bento Grid Galeria de Provas */
.proof-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: start;
}

.bento-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.bento-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.bento-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}

.bento-card.venda img {
    max-height: 500px;
    object-position: top;
}

.bento-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.bento-badge.venda { background: #25D366; }

.bento-caption {
    margin-top: 1.2rem;
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
    color: var(--text-main);
}

@media (max-width: 992px) {
    .proof-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .proof-bento {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 1rem 2.5rem;
        gap: 1.2rem;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    .bento-column {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    .bento-card.venda img {
        max-height: 450px;
    }
}
