/* =============== VENDAS.CSS - LANDING PAGE =============== */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --accent-color: #ffd700;
    --brand-blue: #0099ff;
    --brand-red: #ff3333;
    --text-primary: #ffffff;
    --text-secondary: #e5e5e5;
    --text-muted: #808080;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Righteous', cursive;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}



/* =============== PRELOADER ANIME MEGA OTIMIZADO =============== */
.preloader {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(5,5,5,0.85); /* Semi-transparente */
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none; /* Não bloqueia o HTML principal */
}
.skip-btn {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    pointer-events: auto; /* Permite hover visual */
}

.character-container {
    position: relative;
    width: 300px; height: 300px;
    display: flex; justify-content: center; align-items: center;
    animation: dashIn 0.3s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
    transform: translateX(-100vw);
}

.speed-lines {
    position: absolute;
    width: 200%; height: 100px;
    background: repeating-linear-gradient(90deg, transparent 0, transparent 40px, rgba(255,255,255,0.1) 40px, rgba(255,255,255,0.1) 80px);
    z-index: 0;
    opacity: 0;
    animation: speedFade 0.3s ease-out forwards;
}

/* Character Silhouette (Generic Pure CSS) */
.character-silhouette {
    width: 50px; height: 100px;
    background: #e5e5e5;
    border-radius: 20px 20px 10px 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.spiky-hair {
    position: absolute;
    top: -20px; left: -10px; width: 70px; height: 40px;
    background: #e5e5e5;
    clip-path: polygon(10% 100%, 0 0, 30% 60%, 50% -20%, 70% 60%, 100% 0, 90% 100%);
}

/* Aura Base Branca/Azul Claro Leve */
.energy-aura {
    position: absolute;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(150,220,255,0.6) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
    animation: chargeAura 1s ease-in 0.3s forwards;
    opacity: 0; transform: scale(0.5);
}

/* Energy Beam Attack Leve */
.energy-beam {
    position: absolute;
    left: 50%; top: 50%;
    transform: translateY(-50%);
    width: 0; height: 20px;
    background: linear-gradient(90deg, #fff 0%, #aaddff 100%);
    box-shadow: 0 0 20px #aaddff;
    z-index: 3;
    border-radius: 10px;
    animation: fireBeam 0.2s ease-out 1.2s forwards; /* Beam simples e ultra rapido */
}

@keyframes dashIn {
    0% { transform: translateX(-100vw) skewX(-20deg); }
    80% { transform: translateX(20px) skewX(10deg); }
    100% { transform: translateX(0) skewX(0); }
}

@keyframes speedFade {
    0% { opacity: 1; transform: translateX(50px); }
    100% { opacity: 0; transform: translateX(-100px); }
}

@keyframes chargeAura {
    0% { transform: scale(0.5); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scale(2.0); opacity: 1; filter: hue-rotate(20deg); }
}

@keyframes fireBeam {
    0% { width: 0; }
    100% { width: 150vw; } 
}

/* Loading Status Texts */
.loading-status {
    position: absolute;
    bottom: 15%;
    width: 80%;
    max-width: 400px;
    text-align: center;
}

#loading-text {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--brand-red);
    box-shadow: 0 0 15px var(--brand-red);
    transition: width 0.1s linear;
}

.progress-text {
    margin-top: 10px;
    font-weight: 700;
    color: var(--brand-red);
    font-size: 1.2rem;
}

/* Flash suave (Modificado para proteger pessoas fotossensíveis) */
.flash-effect {
    position: absolute;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at center, rgba(150, 220, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    z-index: 50;
    pointer-events: none;
    transition: opacity 0.4s ease-out;
}

.flash-active {
    opacity: 1 !important;
}

/* Background Animado Intenso e Premium (Restante da página) */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 10% 20%, rgba(255, 51, 51, 0.08), transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(0, 153, 255, 0.08), transparent 50%),
                linear-gradient(135deg, #050b14, #14050a, #0b112c, #0a0a0a);
    background-size: 400% 400%;
    animation: flowBG 20s ease infinite alternate;
    z-index: -2;
}

@keyframes flowBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Navbar de Conversão */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo-image {
    height: 40px;
    mix-blend-mode: screen;
    filter: brightness(0.9) contrast(1.8);
}

/* Botoes Genéricos */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    font-family: var(--font-main);
}

.btn-cta-outline {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-cta-outline:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.btn-glow {
    background: var(--brand-red);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.6);
    border: none;
    font-size: 1.1rem;
    padding: 15px 35px;
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 30px rgba(255, 51, 51, 0.9);
}

.btn-secondary-outline {
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--text-primary);
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-secondary-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 51, 51, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(255, 51, 51, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 51, 51, 0.5); }
}

.full-width {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 4% 100px;
    display: flex;
    justify-content: center;
    text-align: center;
    min-height: 90vh;
    align-items: center;
    /* Remover o background fixo, pois vamos usar o slider com animacoes */
    background-color: var(--bg-primary);
    overflow: hidden;
}

/* Background Slider na Hero (Estilo Streaming Premium) */
.hero-bg-slider {
    position: absolute;
    top: -20%; 
    left: -10%; 
    width: 120%; 
    height: 140%;
    z-index: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    opacity: 0.85; /* TOTALMENTE CLARO E VIVO AGORA! */
    transform: rotate(-5deg) scale(1.05); /* Rotação reduzida para mostrar mais capas */
    pointer-events: none;
    filter: saturate(1.3) contrast(1.1); /* Desenhos com cores super vivas */
}

.hero-bg-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.hero-bg-track.track-1 { animation: marquee-bg 60s linear infinite; }
.hero-bg-track.track-2 { margin-left: -200px; animation: marquee-bg-reverse 55s linear infinite; }
.hero-bg-track.track-3 { animation: marquee-bg 70s linear infinite; }

@keyframes marquee-bg {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-bg-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.hero-bg-track img {
    height: 250px;
    width: 170px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Camada preta removida, deixando apenas o rodapé misturar suavemente com o site */
    background: linear-gradient(to bottom, rgba(10,10,10,0.1) 60%, rgba(10,10,10,1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    /* Novo Card Glassmorphism para o texto ser legível sobre as capas ativas! */
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 60px 40px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
}

.badge-pulsing {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 51, 51, 0.15);
    border: 1px solid var(--brand-red);
    color: #ff6666;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-size: 0.9rem;
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 5px rgba(255,51,51,0.2); }
    50% { box-shadow: 0 0 20px rgba(255,51,51,0.6); }
    100% { box-shadow: 0 0 5px rgba(255,51,51,0.2); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-title span {
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 750px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.hero-guarantee {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-guarantee i {
    color: #55ff55;
    margin-right: 5px;
}

/* Utilitarios */
.text-center { text-align: center; }

/* =============== Marquee / Catálogo Infinite ============= */
.catalogo-preview {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.marquee-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    padding: 0 5%;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.marquee-track {
    display: flex;
    width: 100%; 
    overflow-x: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    -webkit-overflow-scrolling: touch; 
    padding-bottom: 20px;
    cursor: grab;
}

.marquee-track:active {
    cursor: grabbing;
}

.marquee-track::-webkit-scrollbar {
    display: none;
}

.marquee-content {
    display: flex;
    gap: 15px;
    padding: 0 5%;
}

.marquee-content img {
    width: 180px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: filter 0.3s, transform 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    flex-shrink: 0; 
    user-select: none; /* Previne bug de imagem quando drag */
    -webkit-user-drag: none;
}

.marquee-content img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(255,215,0,0.4);
    filter: brightness(1.1);
}

/* Funcionalidades */
.features {
    padding: 80px 5%;
    background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
}

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

.feature-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-10px);
    border-color: var(--brand-blue);
}

.feature-card i {
    font-size: 3rem;
    color: var(--brand-blue);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
}

/* Como Funciona Section (Scroll Lateral Responsivo) */
.how-it-works {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.steps-container {
    width: 100%;
}

.steps-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 5%;
}

.steps-carousel::-webkit-scrollbar {
    display: none; /* Esconde scrollbar nativo de design */
}

.steps-carousel .step-card {
    flex: 0 0 350px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.step-image-box {
    position: relative;
    width: 100%;
    height: 200px;
}

.step-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.step-number {
    position: absolute;
    bottom: -25px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--brand-red);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 4px solid var(--bg-secondary);
    box-shadow: 0 5px 15px rgba(255,51,51,0.5);
}

.step-content {
    padding: 35px 20px 20px;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* =========================================
   PROVAS SOCIAIS (WhatsApp & Instagram)
========================================= */
.social-proof {
    padding: 80px 0 20px;
    background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
    overflow: hidden;
}

.proof-slider {
    width: 100%;
    margin: 20px 0;
}

/* Os cards rodam na mesma esteira infinita nativa do JS */
.proof-card {
    background: #111b21; /* Core WPP dark mode background */
    border-radius: 12px;
    padding: 15px;
    min-width: 340px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.03);
    flex-shrink: 0;
    user-select: none;
}

.proof-card.instagram {
    background: #000000; /* Insta pitch black */
    border: 1px solid #262626;
}

.proof-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-avatar {
    width: 45px; height: 45px; 
    border-radius: 50%; 
    object-fit: cover;
}

.insta-gradient {
    padding: 2px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
}

.insta-gradient img {
    border: 2px solid #000;
}

.proof-name strong {
    display: block; 
    font-size: 0.95rem; 
    color: #e9edef;
    font-family: Arial, sans-serif;
}

.proof-name span {
    font-size: 0.75rem; 
    color: #8696a0; 
    display: flex; 
    align-items: center; 
    gap: 5px;
    margin-top: 2px;
}

/* WPP green bubble */
.proof-card.whatsapp .proof-bubble {
    background: #005c4b;
    border-radius: 0px 8px 8px 8px; /* Classic WPP tail corner */
    padding: 8px 10px 22px; /* Pad bottom pra caber a hora */
    position: relative;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #e9edef;
    font-family: Arial, sans-serif;
    margin-top: 5px;
    margin-left: 10px;
}

.proof-card.whatsapp .proof-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid #005c4b;
}

/* Insta gray bubble */
.proof-card.instagram .proof-bubble {
    background: #262626;
    border-radius: 18px;
    padding: 12px 15px 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.proof-time {
    position: absolute; 
    right: 10px; 
    bottom: 5px; 
    font-size: 0.7rem; 
    color: rgba(255,255,255,0.6); 
    display: flex; 
    align-items: center; 
    gap: 5px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 5%;
    background: var(--bg-secondary);
}

.pricing-table {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: flex-end; /* Pra cartao premium ser maior sem desalinhamento feio */
}

.pricing-card {
    background: var(--bg-primary);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.basic {
    border-top: 5px solid #888;
}

.pricing-card.premium {
    border: 2px solid var(--brand-red);
    box-shadow: 0 10px 40px rgba(255, 51, 51, 0.2);
    padding-top: 50px;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.most-popular {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--brand-red);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    width: max-content;
    box-shadow: 0 0 15px rgba(255,51,51,0.5);
}

.plan-name {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.plan-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.plan-price span {
    font-size: 2rem;
    color: var(--text-muted);
}

.plan-price .period {
    font-size: 1rem;
    font-weight: 400;
    margin-left: 5px;
}

.plan-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1; /* pushes button to bottom */
}

.plan-features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.plan-features li i {
    color: #55ff55;
    margin-top: 4px;
}

.plan-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.plan-features li.disabled i {
    color: var(--text-muted);
}

.plan-features li.highlight {
    background: rgba(255,215,0,0.1);
    padding: 8px 10px;
    border-radius: 5px;
    color: var(--accent-color);
}

.plan-features li.highlight i {
    color: var(--accent-color);
}

.secure-checkout {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 15px;
}

.secure-checkout i {
    margin-right: 5px;
}

/* Footer */
footer {
    padding: 50px 5%;
    text-align: center;
    border-top: 1px solid #222;
}

/* Media Queries Responsividade */
@media screen and (max-width: 900px) {
    .pricing-table {
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }
    .pricing-card.premium {
        transform: scale(1);
        margin-top: 30px;
        order: -1; /* Joga o premium pro topo nativamente no celular */
    }
    .pricing-card:hover {
        transform: scale(1.02);
    }
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 130px 5% 40px; /* Redução para sobrar tela em mobile */
    }
    .hero-content {
        padding: 40px 20px; /* Reduz vidro interno no modile */
    }
    .hero-title { 
        font-size: 2.2rem; 
        line-height: 1.2;
    }
    .hero-subtitle { 
        font-size: 1rem; 
        padding: 0;
    }
    .hero-buttons { 
        flex-direction: column; 
        width: 100%;
    }
    .btn-glow, .btn-secondary-outline {
        width: 100%;
        margin-bottom: 10px;
    }
    .btn-glow {
        animation: pulse 2s infinite; 
    }
    .marquee-content img { 
        width: 140px; 
        height: 200px; 
    }
    .section-header h2 { font-size: 2rem; }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .steps-carousel .step-card {
        flex: 0 0 85vw; /* Fica do tamanho exato do celular e deixa o 2o cartao aparecendo cortado pra induzir o scroll */
    }
    
    .navbar {
        padding: 15px 5%;
        justify-content: center; /* Centraliza logo e btn no mobile */
        gap: 15px;
        flex-direction: column;
    }
    .logo-image {
        height: 35px;
    }
}
/* Pricing Cards Enhancements */
.product-image-box {
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.package-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.pricing-card:hover .package-img {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 0 25px rgba(0, 153, 255, 0.3));
}

.pricing-card.premium .package-img {
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
}

.pricing-card.premium:hover .package-img {
    filter: drop-shadow(0 0 35px rgba(255, 215, 0, 0.4));
}

/* Responsividade de Pricing */
@media (max-width: 768px) {
    .pricing-table {
        gap: 20px;
    }
    .pricing-card {
        padding: 30px 20px;
    }
    .package-img {
        max-width: 180px;
    }
}

/* --- Novos Estilos de Precificação --- */
.price-from {
    display: block;
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: -5px;
    font-weight: 400;
}

.pix-discount {
    display: inline-block;
    background: rgba(85, 255, 85, 0.15);
    color: #55ff55;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    border: 1px solid rgba(85, 255, 85, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

