/* =============================================
   NINJABR.NET - CSS Principal
   Design NOVO e DIFERENTE do ninjabr.top
   ============================================= */

/* ========== CSS VARIABLES ========== */
:root {
    /* Cores principais - Laranja vibrante */
    --primary: #FF4400;
    --primary-light: #FF6600;
    --primary-dark: #CC3300;
    --primary-glow: rgba(255, 68, 0, 0.4);

    /* Background - Dark mode por padrão */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(20, 20, 30, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.05);

    /* Texto */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;

    /* Bordas */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(255, 68, 0, 0.3);

    /* Spacing */
    --header-height: 70px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Light mode */
body.light-mode {
    --bg-primary: #f5f5f8;
    --bg-secondary: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-glass: rgba(0, 0, 0, 0.03);
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a5a;
    --text-muted: #8a8a9a;
    --border-color: rgba(0, 0, 0, 0.1);
    background-color: var(--bg-primary) !important;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== URGENCY BAR ========== */
.urgency-bar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
    padding: 10px 20px;
    text-align: center;
    position: relative;
    z-index: 1001;
    animation: urgencyPulse 2s ease-in-out infinite;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.urgency-icon {
    font-size: 1.2rem;
    animation: shake 0.5s ease-in-out infinite;
}

.urgency-text {
    color: white;
    font-size: 0.85rem;
}

.urgency-text strong {
    color: #fff;
}

.urgency-timer {
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    color: white;
    font-size: 0.9rem;
}

@keyframes urgencyPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.9;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-2px);
    }

    75% {
        transform: translateX(2px);
    }
}

/* ========== HEADER - HORIZONTAL FIXO ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 65px;
    /* Reduced height from 80px to 65px */
    background: rgba(8, 8, 12, 0.75);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

body.has-urgency .header {
    top: 40px;
}

body.light-mode .header {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 100%;
    /* Full 100% */
    margin: 0 auto;
    height: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /* Essential for absolute centering */
}

.header-logo img {
    height: auto;
    width: auto;
    max-height: 40px;
    /* Reduced from 55px */
    max-width: 160px;
    transition: transform var(--transition-fast);
    filter: drop-shadow(0 0 10px rgba(255, 68, 0, 0.2));
}

.header-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 68, 0, 0.4));
}

/* Navegação central */
/* Navegação central */
.header-nav {
    display: flex;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    /* Slightly smaller font */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    position: relative;
    padding: 5px 0;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    transition: width var(--transition-fast);
}

.header-nav a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.header-nav a:hover::after {
    width: 100%;
}

/* Área direita do header */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Toggle Dark/Light */
.theme-toggle {
    width: 36px;
    /* Smaller toggle */
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    background: rgba(255, 68, 0, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 68, 0, 0.2);
}

/* CTA Área de Membros - Direita */
.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    /* More compact padding */
    /* Vibrant Gradient: Orange -> Deep Orange/Red */
    background: linear-gradient(135deg, #ff8800 0%, #ff4400 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    /* Slightly squarer radius */
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 20px rgba(255, 68, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(255, 68, 0, 0.5);
}

.header-cta:hover::before {
    left: 100%;
}

.header-cta i {
    font-size: 0.9rem;
}

/* Mobile Optimizations for Pricing */
/* Mobile Optimizations for Pricing */
@media (max-width: 768px) {
    .pricing-card {
        padding: 20px 15px !important;
        border-radius: 12px;
    }

    .pricing-section {
        padding: 40px 0;
    }

    .timer-container,
    .timer-container-orange {
        padding: 8px !important;
        margin-bottom: 15px !important;
    }

    /* Shrink the "OFERTA ESPECIAL" title */
    .card-header-dark h3 {
        font-size: 1rem !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }

    /* Shrink the Timer Digits */
    .timer-digits {
        font-size: 2rem !important;
        /* Was inheriting or huge */
        gap: 5px !important;
    }

    .time-block span.label {
        font-size: 0.6rem !important;
    }

    /* Shrink Price drastically */
    .current-price .amount {
        font-size: 3rem !important;
        line-height: 1 !important;
    }

    .current-price .currency {
        font-size: 1.5rem !important;
    }

    .current-price .period {
        font-size: 0.9rem !important;
    }

    /* Shrink List Items */
    .pricing-features-list li {
        font-size: 0.85rem !important;
        padding: 8px 0 !important;
    }

    /* Shrink Button */
    .btn-ninja-action {
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
    }
}

.header-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.header-mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hero Visual Side */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    opacity: 0.1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 20%;
    transform: rotate(30deg);
    animation: float 8s ease-in-out infinite 1s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 30%;
    transform: rotate(-20deg);
    animation: float 7s ease-in-out infinite 2s;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ========== TOOLS CAROUSEL - PROFESSIONAL ========== */
.tools-carousel-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.tools-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-primary), transparent);
    z-index: 2;
    pointer-events: none;
}

.tools-carousel-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    z-index: 2;
    pointer-events: none;
}

.tools-carousel-container {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.tools-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.carousel-track {
    display: flex;
    width: max-content;
    gap: 40px;
    /* Same as inside carousel-logos to maintain consistency */
}

.carousel-track.track-left {
    animation: scrollLeft 60s linear infinite;
}

.carousel-track.track-right {
    animation: scrollRight 70s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-logos {
    display: flex;
    gap: 40px;
    padding: 15px 20px;
}

.tool-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 70px;
}

.tool-icon:hover {
    transform: translateY(-5px);
}

.tool-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tool-icon:hover img {
    border-color: var(--primary);
    box-shadow: 0 8px 30px var(--primary-glow), 0 0 20px var(--primary-glow);
    background: linear-gradient(135deg, rgba(255, 68, 0, 0.2) 0%, rgba(255, 68, 0, 0.1) 100%);
}

.tool-icon span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.tool-icon:hover span {
    color: var(--primary);
}

/* Tooltip for Carousel */
/* Global Tooltip (JS based) */
#global-tooltip {
    position: fixed;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 68, 0, 0.3);
    max-width: 250px;
    text-align: center;
    transform: translate(-50%, -100%);
    margin-top: -10px;
}

/* Light mode adjustments */
body.light-mode .tool-icon img {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body.light-mode .tool-icon:hover img {
    background: linear-gradient(135deg, rgba(255, 68, 0, 0.15) 0%, rgba(255, 68, 0, 0.08) 100%);
}

/* ========== PRICING SECTION ========== */
.pricing-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title .highlight {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Single pricing card layout */
.pricing-single {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-single .pricing-card {
    width: 100%;
    transform: none;
}

.pricing-single .pricing-card.featured {
    transform: none;
}

.pricing-single .pricing-card.featured:hover {
    transform: translateY(-10px);
}

.pricing-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 40px var(--primary-glow);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.pricing-price {
    margin-bottom: 10px;
}

.pricing-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
    color: var(--text-secondary);
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-savings {
    font-size: 0.85rem;
    color: #22c55e;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary);
    font-size: 0.85rem;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--border-glow);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
}

.faq-question i {
    color: var(--primary);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
    /* Escondido - botão agora está no chatbot */
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-fast);
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon i {
    font-size: 1.8rem;
    color: white;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(-20px) rotate(45deg);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .header-mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* ========== PRICING URGENCY ========== */
.urgency-box {
    background: rgba(255, 68, 0, 0.05);
    border: 1px solid rgba(255, 68, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    text-align: left;
}

.urgency-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(255, 68, 0, 0.7);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 68, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(255, 68, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 68, 0, 0);
    }
}

.progress-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-bar {
    height: 100%;
    width: 85%;
    /* Static start */
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 4px;
    animation: progressFill 2s ease-out forwards;
}

@keyframes progressFill {
    from {
        width: 0;
    }

    to {
        width: 92%;
    }
}

.urgency-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.highlight-urgency {
    color: white;
    font-weight: 700;
    background: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.timer-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.timer-box span:first-child {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.countdown-timer {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

/* ========== NINJABR CARD STYLE ========== */
.pricing-card.ninjabr-style {
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    transform: none !important;
}

/* Override previous hover effects */
.pricing-card.ninjabr-style:hover {
    transform: none !important;
    border-color: #333;
}

.card-header-dark {
    padding: 20px 16px 10px;
}

.card-header-dark h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.timer-container-orange {
    background: linear-gradient(180deg, #FF9900 0%, #FF5500 100%);
    margin: 10px 18px;
    padding: 10px 8px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(255, 85, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-digits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block span:first-child {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.time-block .label {
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.separator {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    margin-top: -15px;
}

.price-container {
    margin: 15px 0 8px;
    position: relative;
    display: inline-block;
}

.old-price {
    display: block;
    color: #666;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.current-price {
    font-size: 2.6rem;
    font-weight: 900;
    color: #FF6600;
    line-height: 1;
}

.current-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 2px;
}

.current-price .period {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.discount-badge {
    position: absolute;
    top: 5px;
    right: -70px;
    transform: rotate(15deg);
    background: #cc0000;
    color: white;
    padding: 4px 10px;
    font-weight: 800;
    border-radius: 4px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.pricing-features-list {
    text-align: left;
    padding: 0 20px;
    margin: 15px 0 20px;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}

.pricing-features-list li {
    margin-bottom: 4px;
    font-size: 0.75rem;
    color: #d0d0d0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
}

.pricing-features-list li i {
    color: #00E676;
    /* Vivid green check */
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.btn-ninja-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(180deg, #FF9900 0%, #FF5500 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    margin: 0 25px 40px;
    padding: 16px 20px;
    border-radius: 50px;
    border-bottom: 4px solid #cc3300;
    box-shadow: 0 10px 20px rgba(255, 85, 0, 0.2);
    transition: all 0.1s;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

.btn-ninja-action:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.btn-ninja-action:active {
    transform: translateY(2px);
    border-bottom-width: 2px;
    box-shadow: none;
}

/* FAQ COMPACT FIXES */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 25px;
    /* Move padding to container but init 0 height hides it */
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Expands to fit content */
    opacity: 1;
    padding-bottom: 20px;
    /* Add bottom padding only when open */
}

.faq-answer p {
    padding: 0;
    /* Remove inner padding */
    margin-top: 10px;
}

/* ========== COMPACT LAYOUT FIXES ========== */
.hero {
    padding-bottom: 20px !important;
    min-height: auto !important;
    /* Allow height to shrink */
}

.tools-carousel-section {
    padding: 20px 0 40px !important;
    background: transparent !important;
    /* Let body bg show through */
}

.pricing-section {
    padding-top: 40px !important;
    padding-bottom: 60px !important;
}

.section-header {
    margin-bottom: 30px !important;
}

.tools-carousel-container {
    gap: 15px !important;
}

.carousel-logos {
    padding: 12px 20px !important;
}

.tool-icon {
    min-width: 60px !important;
}

.tool-icon img {
    width: 48px !important;
    height: 48px !important;
    padding: 10px !important;
}

/* ========== BACKGROUND EFFECTS (NINJA VIBE) ========== */
body {
    background-color: #050505;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(255, 68, 0, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 90% 40%, rgba(255, 68, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(255, 68, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Floating particles/glows */
body::before {
    content: '';
    position: fixed;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: floatGlow1 15s infinite alternate;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 68, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    animation: floatGlow2 20s infinite alternate-reverse;
    pointer-events: none;
}

@keyframes floatGlow1 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, -50px);
    }
}

@keyframes floatGlow2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-30px, 30px);
    }
}


/* ========== CAROUSEL CLEAN STYLE (BALANCED) ========== */
.tools-carousel-section {
    padding: 20px 0 40px !important;
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    margin-top: 0 !important;
}

.tools-carousel-container {
    max-width: 1000px !important;
    /* Limit width to avoid full screen stretch */
    margin: 0 auto !important;
    gap: 20px !important;
    position: relative;
    z-index: 10;
}

.tools-carousel {
    overflow: hidden;
    /* Soft edges mask */
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%) !important;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%) !important;
}

.carousel-logos {
    padding: 10px 0 !important;
    gap: 50px !important;
    /* More breathing room */
}

.tool-icon {
    min-width: unset !important;
    width: auto !important;
    gap: 12px !important;
}

.tool-icon img {
    width: 54px !important;
    /* Standard legible size */
    height: 54px !important;
    padding: 0 !important;
    /* Naked icon style */
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    /* Pop out from dark bg */
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tool-icon span {
    font-size: 0.8rem !important;
    opacity: 0.6;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.tool-icon:hover img {
    transform: translateY(-8px) scale(1.15);
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    filter: drop-shadow(0 10px 20px rgba(255, 68, 0, 0.4));
}

.tool-icon:hover span {
    color: var(--primary) !important;
    opacity: 1;
}

/* Remove side bars completely */
.tools-carousel-section::before,
.tools-carousel-section::after {
    display: none !important;
}

/* ========== MOBILE RESPONSIVENESS ========== */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    /* Adjust Logo */
    .header-logo img {
        max-width: 130px;
        /* Slightly smaller to fit */
        max-height: 35px;
    }

    /* Mobile Nav Drawer */
    .header-nav {
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        height: calc(100vh - 65px);
        background: rgba(10, 10, 15, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding-bottom: 60px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 999;
    }

    .header-nav.active {
        transform: translateX(0);
    }

    /* Reset desktop centering override explicitly */
    .header-nav {
        left: 0;
        right: 0;
    }

    .header-nav a {
        font-size: 1.2rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .header-nav.active a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for links */
    .header-nav.active a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .header-nav.active a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .header-nav.active a:nth-child(3) {
        transition-delay: 0.3s;
    }

    /* FORCE HIDE TEXT ON MOBILE */
    .header-cta span {
        display: none !important;
    }

    /* COMPACT CIRCLE BUTTON */
    .header-cta {
        padding: 0 !important;
        border-radius: 50% !important;
        width: 38px !important;
        height: 38px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: unset !important;
    }

    .header-cta i {
        font-size: 1rem !important;
        margin: 0 !important;
    }

    /* Show Mobile Toggle */
    .header-mobile-toggle {
        display: flex;
        z-index: 1002;
    }

    .header-mobile-toggle span {
        background-color: var(--text-primary);
    }

    /* Toggle Animation */
    .header-mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .header-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .header-mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Theme toggle adjustment */
    .theme-toggle {
        width: 38px;
        height: 38px;
    }

    .header-right {
        gap: 8px;
        margin-right: 12px;
    }

    /* Hero Stats Mobile - Side by Side */
    /* Hero Stats Mobile - FORCE Side by Side */
    .hero-stats {
        flex-direction: row !important;
        /* Force row */
        flex-wrap: nowrap !important;
        /* No wrapping */
        justify-content: space-between !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Container adjustments to allow stats to fit */
    .hero-content {
        padding: 0 10px !important;
    }

    .stat {
        flex: 1 1 auto !important;
        /* Grow and shrink */
        min-width: 80px !important;
        /* Minimum width */
    }

    .stat-value {
        font-size: 1.2rem !important;
        /* Smaller size */
        line-height: 1.2;
    }

    .stat-label {
        font-size: 0.7rem !important;
        /* Smaller text */
        white-space: nowrap;
        /* Prevent line break */
    }
}

/* ==========================================
   CATÁLOGO - ESTILO REFERÊNCIA (NINJABR.TOP)
   ========================================== */

/* Packages Container */
.packages-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 0;
}

/* Package Card */
.package-card {
    background: linear-gradient(135deg, rgba(30, 20, 15, 0.95) 0%, rgba(15, 10, 8, 0.98) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 106, 0, 0.4);
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 106, 0, 0.1);
    position: relative;
    z-index: 10;
}

.package-card:hover {
    border-color: #FF6A00;
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.3), inset 0 1px 0 rgba(255, 106, 0, 0.2);
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(40, 25, 18, 0.95) 0%, rgba(20, 12, 10, 0.98) 100%);
}

.package-card.active {
    border-color: #FF6A00;
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.4), inset 0 1px 0 rgba(255, 106, 0, 0.3);
    background: linear-gradient(135deg, rgba(45, 30, 20, 0.95) 0%, rgba(25, 15, 12, 0.98) 100%);
}

.package-header {
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: auto;
    position: relative;
}

.package-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1;
}

.package-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 1px 3px rgba(255, 106, 0, 0.5));
    transition: all 0.3s ease;
}

.package-details {
    flex: 1;
    text-align: center;
}

.package-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    line-height: 1.2;
    text-align: center;
}

.package-count {
    color: #aaa;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}

.package-arrow {
    font-size: 1.3rem;
    color: #FF6A00;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 200;
    line-height: 1;
}

.package-card.active .package-arrow {
    transform: rotate(90deg);
}

.package-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card.active .package-content {
    max-height: 5000px;
    /* Allow expansion */
}

.package-inner {
    padding: 0 18px 12px;
}

.category {
    margin-bottom: 12px;
}

.category h3 {
    color: #ff8c42;
    font-size: 0.96rem;
    font-weight: 600;
    margin-bottom: 6px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 2px solid #FF6A00;
    padding-left: 12px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
}

.tool-card {
    background: rgba(25, 25, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 2px solid rgba(255, 106, 0, 0.3);
    border-radius: 7px;
    padding: 8px 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: auto;
}

.tool-card:hover {
    border-left-color: #FF6A00;
    border-color: rgba(255, 106, 0, 0.3);
    background: rgba(30, 30, 30, 0.8);
    transform: translateX(8px);
    box-shadow: -8px 8px 25px rgba(255, 106, 0, 0.15);
}

.tool-name {
    color: #fff;
    font-size: 0.96rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.2;
}

.tool-desc {
    color: #888;
    font-size: 0.72rem;
    line-height: 1.3;
    margin-top: 2px;
    opacity: 0.8;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .tools-grid {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .package-header {
        padding: 10px 15px;
    }

    .tool-card {
        padding: 7px 12px;
    }
}