/* Spotlight Effect */
.spotlight {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none; z-index: 9999;
    background: radial-gradient(circle 400px at var(--x, 50%) var(--y, 50%), rgba(255, 0, 127, 0.05), transparent 80%);
    mix-blend-mode: screen;
}

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Resultados Section */
.resultados { background-color: var(--clr-black); color: var(--clr-white); padding: 60px 0; text-align: center; }
.resultados-title { color: var(--clr-white); font-size: 2.2rem; margin-bottom: 40px; text-transform: uppercase; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.stat-card { padding: 30px; border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; background: rgba(255,255,255,0.02); }
.stat-card h3 { font-size: 3rem; color: var(--clr-pink); margin-bottom: 10px; }
.stat-card p { font-size: 1.2rem; font-weight: 700; margin-bottom: 5px; }
.stat-card span { color: #aaa; font-size: 0.9rem; }
.stat-highlight { background: linear-gradient(135deg, rgba(255,0,127,0.1), transparent); border-color: rgba(255,0,127,0.3); }

/* Ads Dashboard Hero Mockup */
.dashboard-mockup {
    background: var(--clr-white); border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    overflow: hidden; width: 100%; transform: rotate(2deg); transition: transform 0.5s; border: 1px solid #efefef;
}
.dashboard-mockup:hover { transform: rotate(0); }
.dash-head { background: #f1f2f6; padding: 15px; display: flex; align-items: center; border-bottom: 1px solid #e1e1e1; color: var(--clr-black); }
.dash-dots { display: flex; gap: 6px; margin-right: 15px; }
.dash-dots i { width: 12px; height: 12px; border-radius: 50%; background: #ff5f56; display: block; }
.dash-dots i:nth-child(2) { background: #ffbd2e; }
.dash-dots i:nth-child(3) { background: #27c93f; }
.dash-title { font-size: 0.85rem; font-weight: 700; color: #666; font-family: sans-serif; }
.dash-body { display: flex; height: 300px; }
.dash-sidebar { width: 60px; background: #fafafa; border-right: 1px solid #efefef; display: flex; flex-direction: column; align-items: center; padding-top: 20px; gap: 20px; color: #888; }
.dash-content { flex: 1; padding: 25px; display: flex; flex-direction: column; gap: 20px; }
.dash-metrics { display: flex; gap: 20px; }
.metric-card { flex: 1; padding: 15px; border: 1px solid #efefef; border-radius: 8px; display: flex; flex-direction: column; color: var(--clr-black);}
.metric-card small { font-size: 0.75rem; color: #888; text-transform: uppercase; font-weight: 700; }
.metric-card strong { font-size: 1.5rem; font-family: var(--font-heading); color: var(--clr-black); }
.metric-card .positive { color: #27c93f; font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.dash-chart { flex: 1; display: flex; align-items: flex-end; gap: 15px; padding-top: 10px; border-bottom: 2px solid #efefef; }
.bar { flex: 1; background: var(--clr-pink); border-radius: 4px 4px 0 0; animation: grow 2s ease-out forwards; transform-origin: bottom; }
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.bar-1 { height: 30%; } .bar-2 { height: 45%; } .bar-3 { height: 40%; }
.bar-4 { height: 75%; } .bar-5 { height: 60%; } .bar-6 { height: 100%; }

/* Pricing Badge */
.badge-recommended {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--clr-black); color: var(--clr-pink);
    padding: 6px 16px; border-radius: 20px; font-weight: 900;
    font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); white-space: nowrap;
}

/* Marquee Testimonials */
.marquee-container {
    width: 100%; overflow: hidden; white-space: nowrap; position: relative;
    padding: 20px 0;
}
.marquee-track {
    display: inline-flex; gap: 30px; padding: 10px 0;
}

.testimonial-card {
    min-width: 350px; white-space: normal; padding: 25px;
    border-radius: 20px; position: relative;
    box-shadow: var(--shadow-card);
    scroll-snap-align: center;
    flex-shrink: 0;
}
.whatsapp-style { background: #ffffff; border-bottom-right-radius: 5px; color: #1a1a1a; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #efefef;}
.whatsapp-style p { margin-bottom: 10px; font-size: 1.05rem; }
.whatsapp-style .time { font-size: 0.75rem; color: #888; text-align: right; display: block; }
.google-style { background: var(--clr-white); border: 1px solid #efefef; color: var(--clr-black);}
.google-style .stars { color: #fbbc04; font-size: 1.2rem; margin-bottom: 10px; }
.google-style p { margin-bottom: 15px; font-size: 1rem; color: #444; }
.google-style strong { color: var(--clr-black); }

/* B2B Footer Columns */
.footer { padding: 80px 0 30px; text-align: left; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { color: var(--clr-white); margin-bottom: 20px; }
.brand-col p { color: #888; font-size: 0.95rem; }
.footer-col h4 { color: var(--clr-white); font-size: 1.2rem; margin-bottom: 25px; }
.footer-col a, .footer-col p { color: #888; display: flex; align-items: center; gap: 10px; margin-bottom: 15px; transition: color 0.3s; }
.footer-col a:hover { color: var(--clr-pink); }
.footer-socials { display: flex; gap: 15px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; background: #333; color: white; justify-content: center; }
.footer-socials a:hover { background: var(--clr-pink); transform: translateY(-3px); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #333; margin-top: 20px;}
/* Mobile Menu & Portfolio */
.hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: var(--clr-pink); z-index: 1001; }
.portfolio { padding: 60px 0; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.portfolio-item { overflow: hidden; border-radius: 12px; cursor: pointer; aspect-ratio: 4/3; }
.portfolio-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.portfolio-item:hover .portfolio-img { transform: scale(1.1); }

@media (max-width: 992px) { 
    .footer-grid { grid-template-columns: 1fr 1fr; } 
    .stats-grid { grid-template-columns: 1fr; } 
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
.btn-mobile-only { display: none; }

@media (max-width: 768px) { 
    .hamburger { display: block; }
    .nav-links {
        display: flex; flex-direction: column; position: absolute;
        top: 100%; left: 0; width: 100%; background: var(--clr-white);
        padding: 20px 0; border-top: 1px solid #eee; box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.4s ease-out;
        text-align: center;
    }
    .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .nav-links a { margin: 15px 0; font-size: 1.2rem; }
    
    .logo { transform: scale(0.85); transform-origin: left center; white-space: nowrap; }
    .btn-header { display: none !important; }
    .btn-mobile-only { display: inline-block !important; width: max-content; margin: 15px auto !important; padding: 12px 30px !important; }
    
    .footer-grid, .pricing-grid, .grid-3, .grid-2, .sobre-grid, .portfolio-grid { grid-template-columns: 1fr !important; }
    .hero-title { font-size: 2.5rem; line-height: 1.2; }
    .dash-body { flex-direction: column; height: auto; }
    .dash-sidebar { width: 100%; flex-direction: row; justify-content: center; border-right: none; border-bottom: 1px solid #efefef; padding: 10px; }
    .dash-content { padding: 15px; }
}

/* Accordion Videos */
.video-accordion-container {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.accordion-toggle {
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Full Width Breakout Utility */
.full-width-breakout {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
}

.accordion-toggle.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.accordion-inner {
    padding: 20px 0;
}

/* Video Carousel */
.video-carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

/* Carousel Cage (Gaiola) */
.carousel-container {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-container .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-container .prev-arrow {
    left: 20px;
}

.carousel-container .next-arrow {
    right: 20px;
}

.video-carousel-track, .carousel-track {    
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 80px; /* Protege o conteúdo nos limites visuais das setas */
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

.video-carousel-track > *, .carousel-track > * {
    width: 320px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.video-card iframe {
    height: 500px !important;
}

.video-carousel-track::-webkit-scrollbar, .carousel-track::-webkit-scrollbar {
    display: none;
}

.video-card {
    flex-shrink: 0;
    width: 250px;
    height: 440px; /* 9:16 approx for reels/tiktok */
    border-radius: 15px;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 107, 185, 0.2);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: center;
}

.video-placeholder {
    text-align: center;
    color: var(--clr-pink);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.video-placeholder i {
    font-size: 3rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.video-card:hover .video-placeholder i {
    transform: scale(1.2);
    opacity: 1;
}

.blog-html-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
    border-radius: 10px;
}

/* Jubs Floating Button */
#btn-jubs-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: var(--clr-pink);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 185, 0.4);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

#btn-jubs-trigger:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 185, 0.6);
}
