/* MOBILE-FIRST DESIGN - Otimizado para celular */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(255, 106, 0, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background gradiente sutil */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top, rgba(255, 106, 0, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(255, 140, 66, 0.03) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* Navbar Flutuante - REMOVIDA (igual ao index) */
.navbar {
    display: none !important;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-back,
.nav-top {
    background: rgba(255, 106, 0, 0.15);
    border: 1px solid rgba(255, 106, 0, 0.3);
    color: #FF6A00;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 100px;
    text-align: center;
}

.nav-back:hover,
.nav-top:hover {
    background: linear-gradient(135deg, #FF6A00, #ff8c42);
    color: white;
    border-color: #FF6A00;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 106, 0, 0.4);
}

.nav-top {
    opacity: 0;
    visibility: hidden;
}

.nav-top.show {
    opacity: 1;
    visibility: visible;
}

/* Main Container */
.main-container {
    padding-top: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botão Ninja WhatsApp (igual do index) */
.ninja-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.ninja-message {
    background: linear-gradient(135deg, #FF6A00 0%, #ff8c42 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 12px;
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.4);
    position: relative;
    white-space: normal;
    word-wrap: break-word;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    will-change: transform, opacity;
    max-width: 200px;
    line-height: 1.3;
    pointer-events: none;
}

.ninja-message.show,
.ninja-message.show-bubble {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.ninja-message::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #FF6A00;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

@keyframes messageFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ninja-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    cursor: pointer;
    will-change: transform;
    position: relative;
}

.ninja-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: ninjaPulse 2s ease-in-out infinite;
}

@keyframes ninjaPulse {

    0%,
    100% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.ninja-button img {
    width: 90px;
    height: 90px;
    filter: drop-shadow(0 6px 20px rgba(255, 106, 0, 0.5));
    transition: transform 0.3s ease;
    will-change: transform;
}

.ninja-whatsapp:hover .ninja-button {
    transform: scale(1.1);
}

.ninja-whatsapp:hover .ninja-button img {
    transform: rotate(10deg);
}

.ninja-whatsapp.active-assistente .ninja-button::before {
    opacity: 1;
    animation: ninjaPulse 1.5s ease-in-out infinite;
}

.ninja-whatsapp.active-assistente .ninja-button img {
    filter: drop-shadow(0 6px 25px rgba(255, 106, 0, 0.8)) drop-shadow(0 0 15px rgba(255, 140, 66, 0.6));
}

/* Mobile - Botão Ninja */
@media (max-width: 768px) {
    .ninja-button {
        width: 90px;
        height: 90px;
    }

    .ninja-button img {
        width: 75px;
        height: 75px;
    }

    .ninja-whatsapp {
        bottom: 20px !important;
        right: 20px !important;
        position: fixed !important;
    }

    /* Garantir que o botão volte para posição normal quando chat abre no mobile */
    .ninja-whatsapp.active-assistente {
        bottom: 20px !important;
        right: 20px !important;
        position: fixed !important;
        transform: none !important;
    }

    .ninja-message {
        font-size: 11px !important;
        padding: 12px 20px !important;
        max-width: 250px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 480px) {
    .ninja-button {
        width: 80px;
        height: 80px;
    }

    .ninja-button img {
        width: 65px;
        height: 65px;
    }

    .ninja-message {
        font-size: 10px !important;
        padding: 12px 20px !important;
        max-width: 250px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        line-height: 1.3 !important;
    }
}

/* Hero Section - Impactante com Ninja */
.hero {
    position: relative;
    text-align: center;
    padding: 10px 20px 10px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

/* Background com Ninja */
.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: visible;
    pointer-events: none;
}

/* Silhueta do Ninja - Passando Atrás de Tudo */
.ninja-silhouette {
    position: fixed;
    bottom: 10%;
    right: 5%;
    width: 600px;
    height: 800px;
    background-image: url('ninjabr.top.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    opacity: 0.3;
    filter: grayscale(100%) brightness(0.4);
    animation: ninjaFloat 20s ease-in-out infinite;
    transform-origin: center center;
    z-index: 1;
    pointer-events: none;
}

@keyframes ninjaFloat {
    0% {
        transform: translate(0, 0) rotate(-3deg) scale(0.95);
        opacity: 0.25;
    }

    25% {
        transform: translate(-80px, -100px) rotate(3deg) scale(1.05);
        opacity: 0.35;
    }

    50% {
        transform: translate(-150px, -200px) rotate(-3deg) scale(1.1);
        opacity: 0.4;
    }

    75% {
        transform: translate(-80px, -100px) rotate(3deg) scale(1.05);
        opacity: 0.35;
    }

    100% {
        transform: translate(0, 0) rotate(-3deg) scale(0.95);
        opacity: 0.25;
    }
}

/* Partículas Flutuantes */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FF6A00;
    border-radius: 50%;
    box-shadow:
        100px 200px 0 0 rgba(255, 106, 0, 0.5),
        300px 150px 0 0 rgba(255, 140, 66, 0.4),
        500px 300px 0 0 rgba(255, 106, 0, 0.3),
        700px 100px 0 0 rgba(255, 140, 66, 0.5),
        900px 250px 0 0 rgba(255, 106, 0, 0.4),
        200px 400px 0 0 rgba(255, 140, 66, 0.3),
        600px 500px 0 0 rgba(255, 106, 0, 0.5),
        800px 450px 0 0 rgba(255, 140, 66, 0.4);
    animation: particlesFloat 15s linear infinite;
}

.hero-particles::after {
    animation-delay: -7.5s;
    box-shadow:
        150px 250px 0 0 rgba(255, 106, 0, 0.4),
        350px 200px 0 0 rgba(255, 140, 66, 0.5),
        550px 350px 0 0 rgba(255, 106, 0, 0.3),
        750px 150px 0 0 rgba(255, 140, 66, 0.4),
        950px 300px 0 0 rgba(255, 106, 0, 0.5),
        250px 450px 0 0 rgba(255, 140, 66, 0.3),
        650px 550px 0 0 rgba(255, 106, 0, 0.4),
        850px 500px 0 0 rgba(255, 140, 66, 0.5);
}

@keyframes particlesFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 100;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.hero-logo {
    margin-bottom: 8px;
    animation: logoFloat 1s ease 0.2s backwards;
    position: relative;
}

@keyframes logoFloat {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.8) rotate(-10deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

.hero-logo img {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(255, 106, 0, 0.6));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 20px 60px rgba(255, 106, 0, 0.6));
    }

    50% {
        filter: drop-shadow(0 25px 80px rgba(255, 106, 0, 0.8));
    }
}

/* Título Principal */
.hero-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.2;
    animation: titleSlide 1s ease 0.4s backwards;
}

.title-line {
    display: block;
    margin-bottom: 5px;
}

.title-line.highlight {
    background: linear-gradient(135deg, #FF6A00, #ff8c42, #FF6A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

@keyframes titleSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-description {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 400;
    animation: subtitleFade 1s ease 0.5s backwards;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 300;
    animation: subtitleFade 1s ease 0.6s backwards;
}

@keyframes subtitleFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Grid - Cards Visuais */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 50px;
    padding: 0 10px;
    animation: statsSlide 1s ease 0.8s backwards;
}

@keyframes statsSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.1) 0%, rgba(20, 20, 20, 0.8) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 106, 0, 0.3);
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    border-color: #FF6A00;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 106, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.2) 0%, rgba(30, 20, 15, 0.9) 100%);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 5px 15px rgba(255, 106, 0, 0.5));
    animation: iconBounce 2s ease-in-out infinite;
}

.stat-card:nth-child(2) .stat-icon {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) .stat-icon {
    animation-delay: 0.4s;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6A00, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #bbb;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Search Wrapper - Design Impactante */
.search-wrapper {
    max-width: 400px;
    margin: 0 auto 8px;
    position: relative;
    animation: searchSlide 1s ease 1s backwards;
}

@keyframes searchSlide {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.search-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #FF6A00;
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(255, 106, 0, 0.5));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.1);
    }
}

.search-input {
    width: 100%;
    padding: 20px 25px 20px 65px;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 106, 0, 0.3);
    border-radius: 50px;
    color: #fff;
    font-size: 1.05rem;
    outline: none;
    transition: all 0.4s ease;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.4),
        inset 0 2px 10px rgba(255, 106, 0, 0.1);
    position: relative;
    z-index: 1;
}

.search-input:focus {
    border-color: #FF6A00;
    box-shadow:
        0 12px 45px rgba(255, 106, 0, 0.5),
        inset 0 2px 15px rgba(255, 106, 0, 0.2);
    background: rgba(20, 20, 20, 0.95);
    transform: scale(1.02);
}

.search-input::placeholder {
    color: #666;
    font-weight: 300;
}

/* Efeito de Brilho na Busca */
.search-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.search-input:focus~.search-glow {
    width: 200px;
    height: 200px;
    opacity: 1;
}

/* Info Banner - Aviso Importante */
.info-banner {
    max-width: 900px;
    margin: 0 auto 5px;
    padding: 0;
    background: transparent;
    border: none;
    display: block;
    text-align: center;
    animation: slideUp 0.6s ease 0.5s backwards;
}

.info-icon {
    display: none;
}

.info-content {
    color: #aaa;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
}

.info-content strong {
    color: #ff8c42;
    font-weight: 700;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5px 5px;
    position: relative;
    z-index: 10;
}

/* Packages Container */
.packages-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 0;
}

.loading-text {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
}

/* Package Card - Estilo Ultra Premium */
.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::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FF6A00, transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.package-card:hover::before,
.package-card.active::before {
    opacity: 1;
}

.package-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.package-card:hover::after {
    opacity: 1;
}

.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 - Área de Toque Grande */
.package-header {
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: auto;
    position: relative;
}

.package-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card.active .package-header::after {
    opacity: 1;
}

.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-card:hover .package-icon {
    transform: scale(1.15) rotate(-8deg);
}

.package-card.active .package-icon {
    transform: scale(1.1);
}

.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-badge {
    background: linear-gradient(135deg, #FF6A00, #ff8c42);
    color: #fff;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 4px rgba(255, 106, 0, 0.5);
    white-space: nowrap;
}

.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 */
.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: none;
}

.package-inner {
    padding: 0 18px 12px;
    /* +20%: 15px -> 18px, 10px -> 12px */
}

/* Category Header */
.category {
    margin-bottom: 12px;
    /* +20%: 10px -> 12px */
}

.category h3 {
    color: #ff8c42;
    font-size: 0.96rem;
    /* +20%: 0.8rem -> 0.96rem */
    font-weight: 600;
    margin-bottom: 6px;
    /* +20%: 5px -> 6px */
    padding: 6px 0;
    /* +20%: 5px -> 6px */
    display: flex;
    align-items: center;
    gap: 10px;
    /* +20%: 8px -> 10px */
    border-left: 2px solid #FF6A00;
    padding-left: 12px;
    /* +20%: 10px -> 12px */
}

/* Tools Grid - Lista Vertical para Mobile */
.tools-grid {
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* +20%: 4px -> 5px */
}

/* Tool Card - Otimizado para Touch */
.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;
    /* +20%: 6px -> 7px */
    padding: 8px 14px;
    /* +20%: 7px -> 8px, 12px -> 14px */
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: auto;
}

.tool-card:active {
    transform: scale(0.98);
}

.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);
}

/* Card DESTAQUE - Só efeito visual, sem texto */
.tool-card.popular {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.15) 0%, rgba(25, 25, 25, 0.9) 100%);
    border: 1.5px solid #FF6A00;
    border-left: 3px solid #FF6A00;
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
}

.tool-question {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tool-content {
    width: 100%;
}

.tool-name {
    color: #fff;
    font-size: 0.96rem;
    /* +20%: 0.8rem -> 0.96rem */
    font-weight: 600;
    margin-bottom: 4px;
    /* +20%: 3px -> 4px */
    display: flex;
    align-items: center;
    gap: 6px;
    /* +20%: 5px -> 6px */
    line-height: 1.2;
}

.tool-card.popular .tool-name {
    color: #ff8c42;
    font-size: 1.02rem;
    /* +20%: 0.85rem -> 1.02rem */
}

.tool-description {
    color: #aaa;
    font-size: 0.78rem;
    /* +20%: 0.65rem -> 0.78rem */
    line-height: 1.3;
    padding-right: 36px;
    /* +20%: 30px -> 36px */
    margin-top: 4px;
    /* +20%: 3px -> 4px */
}

.tool-card.popular .tool-description {
    padding-right: 36px;
    /* +20%: 30px -> 36px */
    color: #bbb;
}

/* Descrição da ferramenta - aparece abaixo do nome */
.tool-desc {
    color: #888;
    font-size: 0.72rem;
    line-height: 1.3;
    margin-top: 2px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.tool-card:hover .tool-desc {
    opacity: 1;
    color: #aaa;
}

.tool-card.popular .tool-desc {
    color: #bbb;
    opacity: 1;
}

.tool-question {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Footer - Limpo e Profissional */
.footer {
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px 20px 25px;
    text-align: center;
    border-top: 1px solid rgba(255, 106, 0, 0.15);
    margin-top: 50px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    opacity: 1 !important;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(255, 106, 0, 0.3));
}

.footer-logo img:hover {
    opacity: 1 !important;
    transform: scale(1.05);
}

.footer-info p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #FF6A00;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6A00;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.copyright {
    margin-top: 18px;
    color: #666;
    font-size: 0.85rem;
}

/* WhatsApp Float - Otimizado para Mobile */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.whatsapp-bubble {
    background: linear-gradient(135deg, #FF6A00, #ff8c42);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.5);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-bubble {
    opacity: 1;
    transform: translateX(0);
}

/* Prioridade para animação automática sobre hover */
.whatsapp-bubble.show-bubble {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.whatsapp-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 6px 20px rgba(255, 106, 0, 0.5));
    transition: transform 0.3s ease;
    background: transparent;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1);
}

.whatsapp-float:hover .whatsapp-icon img {
    transform: rotate(15deg);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF6A00, #ff8c42);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff8c42, #FF6A00);
}

/* Mobile - Ajustes para o banner */
@media (max-width: 767px) {

    /* Ajustar botão Topo para mesmo tamanho dos outros botões no mobile */
    .nav-top {
        padding: 5px 10px !important;
        font-size: 0.7rem !important;
        min-width: auto !important;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 50px 15px 30px;
    }

    .ninja-silhouette {
        width: 350px !important;
        height: 450px !important;
        bottom: 8% !important;
        right: 0% !important;
        opacity: 0.4 !important;
        filter: grayscale(30%) brightness(0.7) !important;
        z-index: 1 !important;
    }

    .hero-logo img {
        width: 220px;
    }

    .hero-logo {
        margin-bottom: 6px;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .title-line {
        margin-bottom: 2px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .search-wrapper {
        max-width: 90%;
        margin-bottom: 25px;
    }

    .search-input {
        padding: 14px 18px 14px 50px;
        font-size: 0.9rem;
    }

    .info-banner {
        margin: 0 auto 15px !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        text-align: center !important;
    }

    .info-icon {
        display: none !important;
    }

    .info-content {
        font-size: 0.75rem !important;
        text-align: center !important;
        color: #aaa !important;
    }

    .packages-container {
        gap: 15px;
    }

    .package-header {
        padding: 10px 15px !important;
        min-height: auto !important;
    }

    .package-inner {
        padding: 0 15px 10px !important;
    }

    .category {
        margin-bottom: 10px !important;
    }

    .category h3 {
        font-size: 0.8rem !important;
        margin-bottom: 5px !important;
        padding: 5px 0 !important;
    }

    .tools-grid {
        gap: 5px !important;
    }

    .tool-card {
        padding: 7px 12px !important;
        min-height: auto !important;
    }

    .tool-name {
        font-size: 0.8rem !important;
        margin-bottom: 3px !important;
    }

    .tool-card.popular .tool-name {
        font-size: 0.85rem !important;
    }

    .tool-description {
        font-size: 0.65rem !important;
        padding-right: 30px !important;
        margin-top: 3px !important;
    }

    .tool-card.popular .tool-description {
        padding-right: 35px !important;
    }

    .package-icon {
        font-size: 1.3rem !important;
    }

    .package-title {
        font-size: 1rem !important;
    }

    .package-arrow {
        font-size: 1.3rem !important;
    }

    .package-count {
        font-size: 0.8rem !important;
    }

    .packages-container {
        gap: 15px !important;
    }
}

/* TABLET - 768px+ */
@media (min-width: 768px) {
    .nav-container {
        padding: 0 40px;
    }

    .nav-back,
    .nav-top {
        min-width: 120px;
        padding: 12px 24px;
    }

    .hero {
        padding: 60px 30px 40px;
    }

    .hero-logo img {
        width: 192px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .info-banner {
        margin: 0 auto 15px !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        text-align: center !important;
    }

    .info-icon {
        display: none !important;
    }

    .info-content {
        font-size: 0.85rem !important;
        text-align: center !important;
        color: #aaa !important;
    }

    .packages-container {
        gap: 15px !important;
    }

    .package-header {
        padding: 10px 15px !important;
        min-height: auto !important;
    }

    .package-icon {
        font-size: 1.3rem !important;
    }

    .package-title {
        font-size: 1rem !important;
    }

    .package-badge {
        font-size: 0.55rem !important;
        padding: 2px 6px !important;
    }

    .tool-name {
        font-size: 0.8rem !important;
    }

    .tool-description {
        font-size: 0.65rem !important;
    }

    .whatsapp-icon {
        width: 90px;
        height: 90px;
    }

    .whatsapp-icon img {
        width: 85px;
        height: 85px;
    }
}

/* DESKTOP - 1024px+ */
@media (min-width: 1024px) {
    .content-wrapper {
        max-width: 1200px;
        padding: 0 5px 5px !important;
    }

    .tools-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px !important;
    }

    .tool-card {
        min-height: auto !important;
        padding: 1px 3px !important;
    }
}

/* WIDE SCREEN - 1440px+ */
@media (min-width: 1440px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Dark Mode adicional para OLED */
@media (prefers-color-scheme: dark) {
    body {
        background: #000;
    }
}

/* Animação de entrada dos pacotes */
.package-card {
    animation: packageSlideIn 0.5s ease backwards;
}

.package-card:nth-child(1) {
    animation-delay: 0.1s;
}

.package-card:nth-child(2) {
    animation-delay: 0.2s;
}

.package-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes packageSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   BOTÕES CTA - CALL TO ACTION
   ============================================ */

/* CTA na Hero Section - Simplificado e Pequeno */
.hero-cta-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-primary {
    padding: 12px 24px !important;
    font-size: 0.85rem !important;
    min-width: 220px !important;
    gap: 8px !important;
    box-shadow:
        0 4px 15px rgba(255, 106, 0, 0.3),
        0 0 20px rgba(255, 140, 66, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.cta-primary:hover {
    box-shadow:
        0 6px 20px rgba(255, 106, 0, 0.4),
        0 0 25px rgba(255, 140, 66, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.cta-primary .cta-icon {
    font-size: 1rem !important;
}

/* CTA Final - Após Todos os Pacotes */
.final-cta-wrapper {
    margin-top: 25px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

.cta-small {
    padding: 12px 24px !important;
    font-size: 0.85rem !important;
    min-width: 220px !important;
    gap: 8px !important;
    box-shadow:
        0 4px 15px rgba(255, 106, 0, 0.3),
        0 0 20px rgba(255, 140, 66, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.cta-small:hover {
    box-shadow:
        0 6px 20px rgba(255, 106, 0, 0.4),
        0 0 25px rgba(255, 140, 66, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.cta-small .cta-icon {
    font-size: 1rem !important;
}

/* CTA nos Pacotes - Apenas Mobile */
.package-cta-wrapper {
    margin-top: 15px;
    margin-bottom: 8px;
    display: none;
    /* Oculto por padrão (desktop) */
    justify-content: center;
    align-items: center;
    padding: 12px 0;
}

.package-cta-wrapper.mobile-only {
    display: none;
    /* Oculto no desktop */
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #FF8C42 0%, #FF6A00 50%, #FF4500 100%);
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 40px;
    box-shadow:
        0 4px 15px rgba(255, 106, 0, 0.3),
        0 0 20px rgba(255, 140, 66, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 220px;
    text-align: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow:
        0 6px 20px rgba(255, 106, 0, 0.4),
        0 0 25px rgba(255, 140, 66, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #FF9C52 0%, #FF7A10 50%, #FF5500 100%);
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow:
        0 6px 20px rgba(255, 106, 0, 0.5),
        0 0 25px rgba(255, 140, 66, 0.4);
}

.cta-icon {
    font-size: 1rem;
    display: inline-block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.cta-text {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes rocketPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1.1) rotate(-5deg);
    }

    50% {
        transform: scale(1.15) rotate(5deg);
    }

    75% {
        transform: scale(1.1) rotate(-5deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo - Mobile */
@media (max-width: 768px) {

    /* Ajustar botão Topo para mesmo tamanho dos outros botões no mobile */
    .nav-top {
        padding: 5px 10px !important;
        font-size: 0.7rem !important;
        min-width: auto !important;
    }

    .hero-cta-container {
        margin-top: 15px;
        padding: 10px 0;
    }

    .cta-primary {
        padding: 12px 24px !important;
        font-size: 0.8rem !important;
        min-width: 90% !important;
        max-width: 100% !important;
    }

    .final-cta-wrapper {
        margin-top: 20px;
        margin-bottom: 15px;
        padding: 12px 0;
    }

    .cta-small {
        padding: 12px 24px !important;
        font-size: 0.8rem !important;
        min-width: 90% !important;
        max-width: 100% !important;
    }

    /* Mostrar CTAs nos pacotes apenas no mobile */
    .package-cta-wrapper.mobile-only {
        display: flex !important;
    }

    .package-cta-wrapper {
        margin-top: 15px;
        margin-bottom: 8px;
        padding: 12px 0;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 0.9rem;
        min-width: 260px;
        gap: 10px;
        letter-spacing: 0.3px;
    }

    .cta-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {

    /* Ajustar botão Topo para mesmo tamanho dos outros botões no mobile pequeno */
    .nav-top {
        padding: 4px 8px !important;
        font-size: 0.65rem !important;
        min-width: auto !important;
    }

    /* Ajustar botão Topo para mesmo tamanho dos outros botões no mobile pequeno */
    .nav-top {
        padding: 4px 8px !important;
        font-size: 0.65rem !important;
        min-width: auto !important;
    }

    .hero-cta-container {
        margin-top: 12px;
        padding: 8px 5px;
    }

    .cta-primary {
        padding: 10px 20px !important;
        font-size: 0.75rem !important;
        min-width: 100% !important;
        width: 100% !important;
    }

    .final-cta-wrapper {
        margin-top: 15px;
        margin-bottom: 12px;
        padding: 10px 5px;
    }

    .cta-small {
        padding: 10px 20px !important;
        font-size: 0.75rem !important;
        min-width: 100% !important;
        width: 100% !important;
    }

    .package-cta-wrapper {
        margin-top: 12px;
        margin-bottom: 6px;
        padding: 10px 5px;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 0.85rem;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        gap: 8px;
        letter-spacing: 0.2px;
        border-radius: 40px;
    }

    .cta-icon {
        font-size: 1.1rem;
    }
}