/* ============================================
   MANUS AI - SALES PAGE STYLESHEET
   Dark Theme (GGMAX Style)
   ============================================ */

/* ============================================
   1. RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #0b0b0b;
    color: #e0e0e0;
    line-height: 1.6;
    letter-spacing: 0.3px;
    overflow-x: hidden;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ============================================
   2. TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

a {
    color: #00A3FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00d4ff;
}

/* ============================================
   3. HEADER
   ============================================ */

.header {
    background: linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 100%);
    border-bottom: 1px solid #222;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 163, 255, 0.3));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00A3FF 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.tagline {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #e0e0e0;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00A3FF, #00d4ff);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #00A3FF;
}

.nav-link:hover::after {
    width: 100%;
}

/* ============================================
   4. MAIN CONTENT
   ============================================ */

.main-content {
    flex: 1;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* ============================================
   5. HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 50%, #0b0b0b 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 1px solid #222;
}

.hero-banner {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 8px 32px rgba(0, 163, 255, 0.15); */
}

.hero-banner-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 280px;
    object-fit: cover;
    object-position: center center;
}

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

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00A3FF 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 163, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 163, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 163, 255, 0.2);
    border-color: rgba(0, 163, 255, 0.6);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    color: #e0e0e0;
    font-weight: 500;
}

/* ============================================
   6. PRODUCTS SECTION
   ============================================ */

.products-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #0b0b0b 0%, #0f0f0f 100%);
}

.products-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

/* Product Selection Card */
.product-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.product-card:hover {
    border-color: #00A3FF;
    box-shadow: 0 12px 48px rgba(0, 163, 255, 0.2);
}

.card-header {
    background: linear-gradient(135deg, #00A3FF 0%, #0088cc 100%);
    padding: 1.5rem;
    color: #fff;
}

.card-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.card-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #e0e0e0;
}

.product-select {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: #0f0f0f;
    border: 2px solid #222;
    border-radius: 8px;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-select:focus {
    outline: none;
    border-color: #00A3FF;
    box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.1);
}

.product-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-select option {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

/* Stock Information */
.stock-info {
    background: rgba(0, 163, 255, 0.05);
    border: 1px solid rgba(0, 163, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.stock-text {
    color: #00A3FF;
    font-weight: 500;
    margin: 0;
}

/* WhatsApp Button */
.btn-whatsapp {
    width: 100%;
    background: linear-gradient(135deg, #00A884 0%, #008c6f 100%);
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.8rem;
}

.btn-whatsapp:hover:not(:disabled) {
    background: linear-gradient(135deg, #01c592 0%, #00a07a 100%);
    box-shadow: 0 0 20px rgba(0, 168, 132, 0.4);
    transform: translateY(-2px);
}

.btn-whatsapp:active:not(:disabled) {
    transform: translateY(0);
}

.btn-whatsapp:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

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

.btn-text {
    font-weight: 700;
}

.btn-hint {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin: 0;
}

/* Products Grid */
.products-grid {
    display: flex !important;
    gap: 2rem;
}

.products-swiper {
    width: 100%;
    padding-bottom: 80px;
    position: relative;
}

.swiper-wrapper {
    display: flex !important;
}

.products-grid .product-item {
    display: flex !important;
    flex-direction: column;
    width: 100% !important;
    min-width: 250px !important;
    height: auto !important;
    flex-shrink: 0 !important;
}

@media (min-width: 480px) {
    .products-grid .product-item {
        width: calc(50% - 1rem) !important;
    }
}

@media (min-width: 768px) {
    .products-grid .product-item {
        width: calc(50% - 1rem) !important;
    }
}

@media (min-width: 1024px) {
    .products-grid .product-item {
        width: calc(33.333% - 1.35rem) !important;
    }
}

.swiper-button-prev,
.swiper-button-next {
    color: #00A3FF !important;
    background: rgba(0, 163, 255, 0.1) !important;
    border-radius: 50%;
    width: 45px !important;
    height: 45px !important;
    top: auto !important;
    bottom: 75px !important;
    z-index: 10 !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px !important;
}

.swiper-button-prev {
    left: 10px !important;
}

.swiper-button-next {
    right: 10px !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(0, 163, 255, 0.2) !important;
}

/* Scrollbar do Swiper */
.swiper-scrollbar {
    background: rgba(255, 255, 255, 0.1) !important;
    height: 6px !important;
    border-radius: 3px !important;
    margin-top: 2rem !important;
}

.swiper-scrollbar-drag {
    background: linear-gradient(90deg, #00A3FF 0%, #0088cc 100%) !important;
    border-radius: 3px !important;
    cursor: grab !important;
}

.swiper-scrollbar-drag:active {
    cursor: grabbing !important;
}

.product-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid #222;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    cursor: pointer;
    user-select: none;
    display: flex !important;
    flex-direction: column;
    height: 100% !important;
    min-height: 400px;
    justify-content: space-between;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.product-item:hover::before,
.product-item.selected::before {
    opacity: 1;
}

.product-item:hover {
    border-color: #00A3FF;
    box-shadow: 0 12px 48px rgba(0, 163, 255, 0.15);
    transform: translateY(-12px);
}

.product-item.selected {
    border-color: #00A3FF;
    border-width: 2px;
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.1) 0%, rgba(0, 136, 204, 0.05) 100%);
    box-shadow: 0 0 30px rgba(0, 163, 255, 0.3), inset 0 0 20px rgba(0, 163, 255, 0.1);
    transform: translateY(-12px);
}

.product-item.selected::after {
    content: '✓ SELECIONADO';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 163, 255, 0.85);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    z-index: 10;
    pointer-events: none;
    /* animation: fadeIn 0.3s ease-out; */
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 20px rgba(0, 163, 255, 0.4);
}

.product-item.selected:hover::after {
    opacity: 0;
    transition: opacity 0.2s ease-out;
}



.product-badge {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    background: rgba(0, 163, 255, 0.75);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 163, 255, 0.3);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.product-item:hover .product-badge,
.product-item:active .product-badge,
.product-item.clicked .product-badge {
    opacity: 0;
    transform: scale(0.8);
}

.product-name {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.product-credits {
    color: #00A3FF;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-bonus {
    color: #00A884;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00A3FF 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.product-stock {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    text-align: left;
    padding: 1.5rem 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.product-features li {
    color: #b0b0b0;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.product-features li:last-child {
    margin-bottom: 0;
}

/* ============================================
   7. HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #0f0f0f 0%, #0b0b0b 100%);
    border-top: 1px solid #222;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: #00A3FF;
    box-shadow: 0 12px 48px rgba(0, 163, 255, 0.15);
    transform: translateY(-8px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00A3FF 0%, #0088cc 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.step-title {
    color: #fff;
    margin-bottom: 1rem;
}

.step-description {
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* ============================================
   8. BENEFITS SECTION
   ============================================ */

.benefits {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #0b0b0b 0%, #0f0f0f 100%);
    border-top: 1px solid #222;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #00A3FF;
    box-shadow: 0 12px 48px rgba(0, 163, 255, 0.15);
    transform: translateY(-8px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* ============================================
   9. FAQ SECTION
   ============================================ */

.faq {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #0f0f0f 0%, #0b0b0b 100%);
    border-top: 1px solid #222;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.faq-item:hover {
    border-color: #3a3a3a;
}

.faq-item.active {
    border-color: #00A3FF;
    box-shadow: 0 4px 16px rgba(0, 163, 255, 0.15);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #00A3FF;
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 163, 255, 0.05);
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   10. FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 100%);
    border-top: 1px solid #222;
    padding: 3rem 2rem 1rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    padding: 1rem 0;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    color: #888;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: #888;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00A3FF;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   11. RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-item {
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .products-container {
        grid-template-columns: 1fr;
    }

    .product-card {
        position: static;
        top: auto;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .header {
        padding: 1rem 0;
    }

    .header-container {
        padding: 0 1rem;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .tagline {
        font-size: 0.8rem;
    }

    .nav-links {
        gap: 0.8rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-banner {
        margin-bottom: 1.5rem;
    }

    .hero-banner-image {
        max-height: 250px;
    }

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

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-features {
        gap: 0.8rem;
    }

    .feature-item {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .products-section {
        padding: 2rem 1rem;
    }

    .section-container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .product-card {
        border-radius: 8px;
    }

    .card-header {
        padding: 1rem;
    }

    .card-header h3 {
        font-size: 1.2rem;
    }

    .card-body {
        padding: 1.5rem;
    }

    .product-select {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .btn-whatsapp {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-item {
        padding: 1.5rem;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    .product-features {
        font-size: 0.9rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        font-size: 2.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }

    .copyright {
        font-size: 0.85rem;
    }
}

/* ============================================
   12. ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Apply animations - DESATIVADO para evitar bugs visuais */
.hero-content {
    /* animation: fadeIn 0.8s ease-out; */
}

.product-card {
    /* animation: slideInLeft 0.6s ease-out; */
}

.products-grid {
    /* animation: fadeIn 0.8s ease-out; */
}

.step-card {
    /* animation: fadeIn 0.6s ease-out; */
}

.benefit-card {
    /* animation: fadeIn 0.6s ease-out; */
}

.faq-item {
    /* animation: fadeIn 0.6s ease-out; */
}

/* ============================================
   13. UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.text-white {
    color: #fff;
}

.text-muted {
    color: #888;
}

.text-primary {
    color: #00A3FF;
}

.text-success {
    color: #00A884;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.p-1 {
    padding: 0.5rem;
}

.p-2 {
    padding: 1rem;
}

.p-3 {
    padding: 1.5rem;
}

.p-4 {
    padding: 2rem;
}

/* ============================================
   14. SCROLLBAR STYLING
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00A3FF;
}

/* ============================================
   15. PRINT STYLES
   ============================================ */

@media print {
    .header,
    .footer,
    .nav-links {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
    }

    .product-card,
    .product-item,
    .step-card,
    .benefit-card,
    .faq-item {
        border: 1px solid #ccc;
        background: #fff;
        color: #000;
    }
}



/* ============================================
   CUSTOM IMPROVEMENTS - Botão Primário e WhatsApp Flutuante
   ============================================ */

/* Botão Primário - Ver Pacotes de Créditos */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #00A3FF 0%, #0088cc 100%);
    color: #fff;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.3rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 2rem;
    box-shadow: 0 8px 24px rgba(0, 163, 255, 0.3);
    text-align: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #00A3FF 100%);
    box-shadow: 0 12px 32px rgba(0, 163, 255, 0.5);
    transform: translateY(-3px);
    color: #fff;
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(1.05);
}

.whatsapp-float svg {
    width: 38px;
    height: 38px;
    fill: #fff;
}

/* Animação de pulso para o botão do WhatsApp */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .btn-primary {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
}

