:root {
    /* Paleta Principal - Tech Enterprise (Índigo) */
    --brand-primary: #4f46e5;
    --brand-secondary: #6366f1;
    --brand-accent: #818cf8;
    --brand-light: #a5b4fc;

    /* Gradientes Tech Modernos */
    --gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --gradient-dark: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    --gradient-glow: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(124, 58, 237, 0.08) 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);

    /* Cores de Suporte Enterprise */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --error: #ef4444;
    --error-light: #fee2e2;
    --info: #3b82f6;
    --info-light: #dbeafe;

    /* Cores de Interface */
    --text-dark: #0f172a;
    --text-muted: #475569;
    --text-light: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --background: #ffffff;
    --background-soft: #f8fafc;
    --surface: #ffffff;
    --surface-elevated: #ffffff;

    /* Sombras Premium */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

    /* Sombras com Cor (Glow Effects) */
    --shadow-primary: 0 4px 14px 0 rgba(79, 70, 229, 0.25);
    --shadow-primary-lg: 0 10px 40px -10px rgba(79, 70, 229, 0.35);
    --glow-primary: 0 0 40px rgba(79, 70, 229, 0.2);
    --glow-accent: 0 0 60px rgba(124, 58, 237, 0.15);

    /* Transições */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

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

/* Regra global: todos os ícones em elementos com fundo roxo/gradient devem ser brancos */
[style*="background: var(--gradient)"] i svg,
[style*="background: linear-gradient(135deg, #7c3aed"] i svg,
[style*="background: linear-gradient(135deg, rgba(124, 58, 237"] i svg,
[class*="gradient"] i svg,
[class*="gradient"] svg,
.feature-icon i svg,
.blog-image-placeholder i svg,
.avatar-placeholder i svg,
.affiliates-icon i svg,
.product-card:hover .product-icon i svg,
.game-card:hover .game-icon i svg {
    stroke: white !important;
    color: white !important;
    fill: none !important;
}

[style*="background: var(--gradient)"] i svg path,
[style*="background: linear-gradient(135deg, #7c3aed"] i svg path,
[style*="background: linear-gradient(135deg, rgba(124, 58, 237"] i svg path,
[class*="gradient"] i svg path,
.feature-icon i svg path,
.blog-image-placeholder i svg path,
.avatar-placeholder i svg path,
.affiliates-icon i svg path,
.product-card:hover .product-icon i svg path,
.game-card:hover .game-icon i svg path {
    stroke: white !important;
    fill: none !important;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text-dark);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.promo-banner {
    background: var(--gradient);
    color: white;
    padding: 0.75rem 0;
    position: relative;
    z-index: 1001;
    display: block;
}

.promo-banner.hidden {
    display: none;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    flex-wrap: wrap;
}

.promo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
}

.promo-text i {
    width: 18px;
    height: 18px;
    color: white;
    flex-shrink: 0;
}

.promo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.promo-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.promo-link i {
    width: 16px;
    height: 16px;
    color: white;
}

.promo-close {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.promo-close i {
    width: 18px;
    height: 18px;
}

.top-bar {
    background: var(--background-soft);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-links a:hover {
    color: var(--brand-primary);
}

.btn-area-cliente {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-area-cliente i {
    color: white;
}

.btn-area-cliente:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.main-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
}

.logo-image {
    max-height: 50px;
    width: auto;
    display: block;
}

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

.main-nav>a,
.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.main-nav>a:hover,
.nav-link:hover {
    color: var(--brand-primary);
}

.main-nav>a.active::after,
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.nav-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 1.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-15px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    padding: 2rem;
    min-width: 320px;
    max-width: 500px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(124, 58, 237, 0.1);
    z-index: 1000;
    overflow: hidden;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    border-radius: 1.5rem 1.5rem 0 0;
}

.mega-menu::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    position: relative;
    z-index: 1;
}

.mega-menu-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mega-menu-col>a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.mega-menu-col>a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 3px;
    height: 0;
    background: var(--gradient);
    border-radius: 0 3px 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-menu-col>a:hover {
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.08), rgba(168, 85, 247, 0.08));
    color: var(--brand-primary);
    transform: translateX(4px);
    padding-left: 1.25rem;
}

.mega-menu-col>a:hover::before {
    transform: translateY(-50%) scaleX(1);
    height: 60%;
}

.mega-menu-col>a i {
    width: 18px;
    height: 18px;
    color: var(--brand-primary);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mega-menu-col>a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.menu-item.featured {
    position: relative;
    padding: 0.875rem 0.875rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(168, 85, 247, 0.08));
    border: 2px solid rgba(124, 58, 237, 0.15);
    border-radius: 0.75rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-direction: row;
    align-items: flex-start;
}

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

.menu-item.featured:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(168, 85, 247, 0.12));
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
}

.menu-item.featured:hover::before {
    left: 100%;
}

.menu-item.featured i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: var(--brand-primary);
}

.menu-item.featured div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.menu-item.featured strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.menu-item.featured .badge {
    margin-bottom: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    background: var(--gradient);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
    width: fit-content;
}

.mega-menu-col>a i {
    flex-shrink: 0;
}

.mega-menu-link-all {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-weight: 600;
    color: var(--brand-primary) !important;
}

.mega-menu-link-all .link-arrow {
    margin-left: auto;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.mega-menu-link-all:hover .link-arrow {
    transform: translateX(4px);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .mega-menu {
        left: 0;
        transform: translateY(-15px);
        min-width: 100%;
        max-width: 100vw;
    }

    .nav-dropdown:hover .mega-menu {
        transform: translateY(0);
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.hero-section {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(168, 85, 247, 0.05));
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

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

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

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary i {
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: white;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

.btn-outline:hover {
    background: var(--brand-primary);
    color: white;
}

.btn-outline:hover i {
    color: white;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.hero-feature-item i {
    color: var(--brand-primary);
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.products-section {
    padding: 6rem 0;
    background: var(--background-soft);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(79, 70, 229, 0.05);
    transition: all var(--transition-bounce);
    border: 1px solid rgba(79, 70, 229, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.03), transparent);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-primary-lg), 0 0 0 1px rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.2);
}

.product-card:hover::before {
    transform: scaleX(1);
}

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

.product-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.5rem 1rem;
    background: var(--gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-primary);
    z-index: 2;
    animation: techPulseGlow 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(79, 70, 229, 0.5);
    }
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-glow);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    position: relative;
    transition: all var(--transition-bounce);
    border: 2px solid rgba(79, 70, 229, 0.1);
}

.product-card:hover .product-icon {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(99, 102, 241, 0.2));
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: var(--shadow-primary);
}

.product-icon i {
    width: 40px;
    height: 40px;
    color: var(--brand-primary);
    transition: all var(--transition-smooth);
}

.product-card:hover .product-icon i {
    transform: scale(1.1);
    color: white !important;
}

.product-card:hover .product-icon i svg,
.product-card:hover .product-icon svg {
    stroke: white !important;
    color: white !important;
}

.product-card:hover .product-icon * {
    stroke: white !important;
    color: white !important;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.2;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 0;
}

.product-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-features li {
    color: var(--text-dark);
}

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

.product-features i {
    width: 20px;
    height: 20px;
    color: var(--brand-primary);
    flex-shrink: 0;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    padding: 2px;
    transition: all 0.3s ease;
}

.product-card:hover .product-features i {
    background: rgba(124, 58, 237, 0.2);
    transform: scale(1.15);
}

.product-card .btn {
    margin-top: auto;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .btn {
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
    transform: translateY(-2px);
}

.features-section {
    padding: 6rem 0;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.feature-icon i {
    width: 40px;
    height: 40px;
    color: white !important;
}

.feature-icon i svg,
.feature-icon svg {
    stroke: white !important;
    color: white !important;
    fill: none !important;
}

.feature-icon i svg path,
.feature-icon svg path {
    stroke: white !important;
    fill: none !important;
}

.feature-icon * {
    stroke: white !important;
    color: white !important;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-muted);
}

/* Performance Section */
.performance-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.performance-section svg.defs-only {
    position: absolute;
    width: 0;
    height: 0;
}

.performance-section defs {
    display: block;
}

.performance-header {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.3;
}

.performance-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

.performance-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* OTH HOST Brand Card */
.othhost-brand-card {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-radius: 1.5rem;
    padding: 2.5rem;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.brand-diamond {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.brand-subtitle {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.brand-social-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.brand-social-icons .social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-social-icons .social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.brand-social-icons .social-icon i {
    width: 20px;
    height: 20px;
}

/* WhatsApp Rating Card */
.whatsapp-rating-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.whatsapp-logo {
    width: 48px;
    height: 48px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-logo i {
    width: 24px;
    height: 24px;
    color: white;
}

.whatsapp-title-section {
    display: flex;
    flex-direction: column;
}

.whatsapp-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.whatsapp-subtitle {
    font-size: 0.875rem;
    color: #64748b;
}

.rating-display {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.stars-container {
    display: flex;
    gap: 0.25rem;
}

.stars-container i {
    width: 20px;
    height: 20px;
    color: #fbbf24;
    fill: #fbbf24;
}

.stars-container .star-partial {
    fill: url(#starGradient);
}

.rating-count {
    font-size: 0.875rem;
    color: #64748b;
}

.whatsapp-stats {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.progress-circle {
    position: relative;
    width: 60px;
    height: 60px;
}

.progress-ring {
    transform: rotate(-90deg);
    width: 60px;
    height: 60px;
}

.progress-ring-background {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 6;
}

.progress-ring-progress {
    fill: none;
    stroke: #25d366;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 163.36;
    stroke-dashoffset: calc(163.36 - (163.36 * var(--progress)) / 100);
    transition: stroke-dashoffset 1s ease;
}

.progress-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e293b;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
}

.response-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.time-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
}

.time-label {
    font-size: 0.75rem;
    color: #64748b;
    text-align: center;
}

/* Performance Features Grid */
.performance-right {
    flex: 1;
}

.performance-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.performance-feature-box {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.performance-feature-box:hover {
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
    border-color: #7c3aed;
    transform: translateY(-2px);
}

.feature-box-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.feature-box-text {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
}

/* OS Section */
.os-section {
    padding: 6rem 0;
    background: white;
}

.os-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.os-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #7c3aed;
    margin-bottom: 1rem;
}

.os-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
}

.os-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.os-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.os-card:hover {
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
    border-color: #7c3aed;
    transform: translateY(-4px);
}

.os-icon-wrapper {
    margin-bottom: 1.5rem;
}

.os-icon {
    width: 64px;
    height: 64px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.os-icon.purple-bg {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.os-icon-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.os-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.os-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.os-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.os-tag.tag-green {
    background: #dcfce7;
    color: #166534;
}

.os-tag.tag-blue {
    background: #dbeafe;
    color: #1e40af;
}

.os-tag.tag-gray {
    background: #f3f4f6;
    color: #64748b;
}

.os-card-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.os-card:hover .os-card-arrow {
    color: #7c3aed;
    transform: translateX(4px);
}

.os-card-arrow i {
    width: 20px;
    height: 20px;
}

.certifications-section {
    padding: 6rem 0;
    background: var(--background-soft);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.cert-item {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.cert-item i {
    width: 48px;
    height: 48px;
    color: var(--brand-primary);
}

.cert-item span {
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
}

.testimonials-section {
    padding: 6rem 0;
    background: var(--background-soft);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-primary);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    width: 18px;
    height: 18px;
    color: #fbbf24;
    fill: #fbbf24;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.avatar-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: shimmerAvatar 3s ease-in-out infinite;
}

@keyframes shimmerAvatar {

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

    50% {
        transform: rotate(180deg);
    }
}

.avatar-initial {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
    line-height: 1;
}

.avatar-placeholder i {
    width: 28px;
    height: 28px;
    color: white !important;
    position: relative;
    z-index: 1;
}

.avatar-placeholder i svg,
.avatar-placeholder svg {
    stroke: white !important;
    color: white !important;
    fill: none !important;
}

.avatar-placeholder * {
    stroke: white !important;
    color: white !important;
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.testimonial-company {
    font-size: 0.875rem;
    color: var(--brand-primary);
    font-weight: 600;
}

.affiliates-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.affiliates-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.affiliates-left {
    padding-right: 2rem;
}

.affiliates-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.affiliates-title .title-part-1 {
    color: #1e293b;
    display: block;
}

.affiliates-title .title-part-2 {
    color: #7c3aed;
    display: block;
}

.affiliates-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: #475569;
    line-height: 1.7;
}

.affiliates-features-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.affiliate-feature-box {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.affiliate-feature-box:hover {
    border-color: #7c3aed;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.affiliate-feature-box .feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.affiliate-feature-box .feature-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.affiliate-feature-box .feature-text {
    font-size: 0.9375rem;
    color: #1e293b;
    font-weight: 600;
}

.affiliates-features-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.affiliate-detail-box {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.affiliate-detail-box i {
    width: 24px;
    height: 24px;
    color: #7c3aed;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.affiliate-detail-box div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.affiliate-detail-box strong {
    font-size: 0.875rem;
    color: #1e293b;
    font-weight: 600;
}

.affiliate-detail-box span {
    font-size: 0.75rem;
    color: #64748b;
}

.affiliates-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.affiliate-btn-main {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.affiliate-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.affiliate-btn-secondary {
    background: white;
    color: #7c3aed;
    border: 2px solid #7c3aed;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.75rem;
}

.affiliate-btn-secondary:hover {
    background: #7c3aed;
    color: white;
}

.affiliates-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.affiliates-visual-card {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    border-radius: 2rem;
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
    overflow: hidden;
}

.affiliates-visual-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
    z-index: 1;
}

.visual-bubble {
    position: absolute;
    background: white;
    border-radius: 1rem;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.visual-bubble-1 {
    top: 1rem;
    left: 1rem;
}

.visual-bubble-1 .bubble-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.visual-bubble-2 {
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.visual-bubble-2 i {
    width: 24px;
    height: 24px;
    color: #7c3aed;
}

.visual-play-button {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 2;
    position: relative;
}

.visual-play-button i {
    width: 32px;
    height: 32px;
    color: #7c3aed;
    margin-left: 4px;
}

.visual-badge {
    position: absolute;
    top: 3rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    z-index: 2;
}

.visual-badge .badge-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.visual-badge .badge-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.visual-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.1em;
    margin-top: auto;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.visual-logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.affiliates-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
}

.affiliates-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.affiliates-benefits i {
    width: 24px;
    height: 24px;
    color: white;
    flex-shrink: 0;
}

.affiliates-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.affiliates-section .btn-outline {
    background: white;
    color: var(--brand-primary);
    border-color: white;
}

.affiliates-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.9);
}

.affiliates-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.affiliates-icon {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.affiliates-icon i {
    width: 100px;
    height: 100px;
    color: white !important;
}

.affiliates-icon i svg,
.affiliates-icon svg {
    stroke: white !important;
    color: white !important;
    fill: none !important;
}

.affiliates-icon * {
    stroke: white !important;
    color: white !important;
}

.blog-preview-section {
    padding: 6rem 0;
    background: var(--background-soft);
}

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

.blog-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-primary);
}

.blog-image,
.blog-image-placeholder {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-image-placeholder i {
    width: 64px;
    height: 64px;
    color: white !important;
    opacity: 0.7;
}

.blog-image-placeholder i svg,
.blog-image-placeholder svg {
    stroke: white !important;
    color: white !important;
    fill: none !important;
}

.blog-image-placeholder i svg path,
.blog-image-placeholder svg path {
    stroke: white !important;
    fill: none !important;
}

.blog-image-placeholder * {
    stroke: white !important;
    color: white !important;
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--background-soft);
    color: var(--brand-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--brand-primary);
}

.blog-excerpt {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    width: 16px;
    height: 16px;
    color: var(--brand-primary);
}

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

.faq-section {
    padding: 6rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--background-soft);
}

.faq-question i {
    width: 20px;
    height: 20px;
    color: var(--brand-primary);
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.cta-section {
    padding: 6rem 0;
    background: var(--gradient);
    color: white;
}

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

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-outline {
    background: white;
    color: var(--brand-primary);
    border-color: white;
}

.cta-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.9);
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-image {
    max-height: 50px;
    width: auto;
    display: block;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-newsletter {
    position: relative;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9375rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.newsletter-btn i {
    color: white;
}

.newsletter-btn:hover:not(:disabled) {
    transform: translateY(-2px);
}

.newsletter-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-btn-loading i {
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.newsletter-message {
    margin-top: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    display: none;
}

.newsletter-message.show {
    display: block;
}

.newsletter-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.newsletter-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.footer-col h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-align: right;
}

.error-section {
    padding: 8rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.error-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.error-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.error-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.error-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.error-icon i {
    width: 64px;
    height: 64px;
    color: var(--brand-primary);
}

.error-suggestions {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.error-suggestions h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.error-suggestions ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.error-suggestions li {
    display: inline-block;
}

.error-suggestions a {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--background-soft);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.error-suggestions a:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.breadcrumb {
    padding: 0;
    margin: 0;
    background: transparent;
}

/* Quando breadcrumb está dentro de uma section */
section .breadcrumb {
    position: absolute;
    top: 1.5rem;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0;
    margin: 0;
}

section .breadcrumb .container {
    padding: 0 2rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
}

.breadcrumb-item a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--brand-primary);
}

.breadcrumb-item.active span {
    color: #111827;
    font-weight: 600;
}

.breadcrumb-separator {
    width: 14px;
    height: 14px;
    color: #6b7280;
    opacity: 0.8;
}

/* Animações */
@keyframes float {

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

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

@keyframes rotate-ring {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .affiliates-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .affiliates-left {
        padding-right: 0;
    }

    .affiliates-features-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .affiliates-features-details {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .performance-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .promo-content {
        flex-direction: column;
        gap: 1rem;
        padding-right: 2.5rem;
    }

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

    .promo-close {
        right: 1rem;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 9999;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .main-nav.mobile-open {
        transform: translateX(0);
    }

    .main-nav>a,
    .nav-link {
        width: 100%;
        padding: 1rem 0;
        font-size: 1.125rem;
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav>a:hover,
    .nav-link:hover {
        color: var(--brand-secondary);
        background: rgba(255, 255, 255, 0.05);
        padding-left: 1rem;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown .nav-link {
        width: 100%;
        justify-content: space-between;
    }

    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        box-shadow: none;
        padding: 1rem 0 1rem 1.5rem;
        margin-top: 0.5rem;
        border-left: 2px solid var(--brand-primary);
        border-radius: 0;
        max-width: 100%;
        min-width: 100%;
    }

    .mega-menu::before {
        display: none;
    }

    .mega-menu-col>a {
        color: rgba(255, 255, 255, 0.9);
        padding: 0.75rem 0;
    }

    .mega-menu-col>a:hover {
        color: white;
        background: rgba(255, 255, 255, 0.05);
    }

    .menu-item.featured {
        background: rgba(124, 58, 237, 0.15);
        border-color: rgba(124, 58, 237, 0.3);
    }

    .menu-item.featured strong {
        color: white;
    }

    .menu-item.featured .badge {
        background: white;
        color: var(--brand-primary);
    }

    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 10000;
        color: var(--text-dark);
        width: 32px;
        height: 32px;
        padding: 0;
    }

    .main-nav.mobile-open~.mobile-menu-toggle,
    .mobile-menu-toggle.active {
        color: white;
    }

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

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

    .products-section {
        padding: 4rem 0;
    }

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

    .product-card {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }

    .product-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .product-icon i {
        width: 36px;
        height: 36px;
    }

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

    .product-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 0.875rem;
        font-size: 0.7rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .testimonials-section {
        padding: 4rem 0;
    }

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

    .blog-preview-section {
        padding: 4rem 0;
    }

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

    .affiliates-section {
        padding: 4rem 0;
    }

    .affiliates-features-main {
        grid-template-columns: 1fr;
    }

    .affiliates-features-details {
        grid-template-columns: 1fr;
    }

    .affiliates-visual-card {
        max-width: 100%;
        aspect-ratio: 4/3;
    }

    .visual-title {
        font-size: 1.75rem;
    }

    .affiliates-cta {
        flex-direction: column;
    }

    .affiliate-btn-main,
    .affiliate-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .performance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .performance-features-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-stats {
        flex-direction: column;
        gap: 1rem;
    }

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

    .os-card {
        padding: 1.5rem;
    }
}

/* ============================
   Conversion Popup Styles
   ============================ */
.conversion-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.conversion-popup .popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.conversion-popup .popup-content {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    max-width: 450px;
    width: 90%;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: slideUpFadeIn 0.4s ease;
}

.conversion-popup .popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conversion-popup .popup-close:hover {
    background: var(--background-soft);
    color: var(--text-dark);
}

.conversion-popup .popup-close svg {
    width: 20px;
    height: 20px;
}

.conversion-popup .popup-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.conversion-popup .popup-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
}

.conversion-popup .popup-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--brand-primary);
}

.conversion-popup .popup-body>p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.conversion-popup .coupon-code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(168, 85, 247, 0.08));
    border: 2px dashed var(--brand-primary);
    border-radius: 1rem;
}

.conversion-popup .coupon-code {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    letter-spacing: 0.1em;
}

.conversion-popup .copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.conversion-popup .copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.conversion-popup .copy-btn svg {
    width: 18px;
    height: 18px;
    stroke: white;
}

.conversion-popup .coupon-description {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.conversion-popup .btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.conversion-popup .legal-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

/* Responsive */
@media (max-width: 480px) {
    .conversion-popup .popup-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .conversion-popup .popup-body h2 {
        font-size: 1.25rem;
    }

    .conversion-popup .coupon-code {
        font-size: 1.25rem;
    }

    .conversion-popup .coupon-code-display {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ============================================
   TECH ENTERPRISE COMPONENTS
   Componentes modernos para visual premium
   ============================================ */

/* === ANIMAÇÕES OTIMIZADAS === */
@keyframes techFadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes techShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes techPulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(79, 70, 229, 0);
    }
}

@keyframes techGradientShift {

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

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

@keyframes techFloat {

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

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

@keyframes techAuroraMove {

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

    25% {
        transform: translate(5%, 3%) rotate(2deg);
    }

    50% {
        transform: translate(-3%, 5%) rotate(-1deg);
    }

    75% {
        transform: translate(3%, -2%) rotate(1deg);
    }
}

/* Classes de Animação Utilitárias */
.animate-in {
    animation: techFadeInUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.animate-in:nth-child(1) {
    animation-delay: 0ms;
}

.animate-in:nth-child(2) {
    animation-delay: 75ms;
}

.animate-in:nth-child(3) {
    animation-delay: 150ms;
}

.animate-in:nth-child(4) {
    animation-delay: 225ms;
}

.animate-in:nth-child(5) {
    animation-delay: 300ms;
}

.animate-in:nth-child(6) {
    animation-delay: 375ms;
}

.animate-in:nth-child(7) {
    animation-delay: 450ms;
}

.animate-in:nth-child(8) {
    animation-delay: 525ms;
}

.shimmer-loading {
    background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
    background-size: 200% 100%;
    animation: techShimmer 1.5s infinite ease-in-out;
    border-radius: var(--radius-md);
}

.pulse-attention {
    animation: techPulseGlow 2s ease-in-out infinite;
}

.float-subtle {
    animation: techFloat 6s ease-in-out infinite;
}

/* === EFEITOS DE BACKGROUND === */
.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79, 70, 229, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 70, 229, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.aurora-glow {
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 150%;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(79, 70, 229, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    animation: techAuroraMove 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.gradient-bg-animated {
    background: linear-gradient(-45deg, #0f172a, #1e1b4b, #312e81, #4f46e5);
    background-size: 400% 400%;
    animation: techGradientShift 15s ease infinite;
}

/* === GLASSMORPHISM === */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-2xl);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.glass-card-dark {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(79, 70, 229, 0.15);
    border-radius: var(--radius-2xl);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* === BOTÕES TECH === */
.btn-tech {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    transition: all var(--transition-smooth);
}

.btn-tech::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.btn-tech:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary-lg);
}

.btn-tech:hover::before {
    opacity: 1;
}

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

.btn-tech span,
.btn-tech i {
    position: relative;
    z-index: 1;
}

.btn-tech i {
    width: 18px;
    height: 18px;
}

/* Botão Tech Outline */
.btn-tech-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--brand-primary);
    border-radius: var(--radius-xl);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-smooth);
    overflow: hidden;
}

.btn-tech-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    border-radius: inherit;
    transition: opacity var(--transition-smooth);
    z-index: -1;
}

.btn-tech-outline:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.btn-tech-outline:hover::before {
    opacity: 1;
}

.btn-tech-outline i {
    width: 18px;
    height: 18px;
    transition: color var(--transition-smooth);
}

.btn-tech-outline:hover i {
    color: white;
}

/* Botão Tech com Glow */
.btn-tech-glow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-primary);
}

.btn-tech-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        var(--shadow-primary-lg),
        var(--glow-primary);
}

.btn-tech-glow span,
.btn-tech-glow i {
    position: relative;
    z-index: 1;
}

/* === CARDS PREMIUM === */
.card-premium {
    position: relative;
    background: var(--surface);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    border: 1px solid var(--border);
    transition:
        transform var(--transition-bounce),
        box-shadow var(--transition-smooth),
        border-color var(--transition-smooth);
    overflow: hidden;
}

.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.card-premium:hover {
    transform: translateY(-8px);
    box-shadow:
        var(--shadow-xl),
        0 0 0 1px rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.2);
}

.card-premium:hover::before {
    transform: scaleX(1);
}

/* Card com Borda Gradiente */
.card-gradient-border {
    position: relative;
    background: var(--surface);
    border-radius: var(--radius-2xl);
    padding: 2rem;
}

.card-gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: var(--gradient);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity var(--transition-smooth);
}

.card-gradient-border:hover::before {
    opacity: 1;
}

/* Card Tilt (requer JS) */
.card-tilt {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* === BADGES ENTERPRISE === */
.badge-enterprise {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-glow);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-enterprise i {
    width: 14px;
    height: 14px;
}

.badge-enterprise-solid {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient);
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-primary);
}

.badge-enterprise-solid i {
    width: 14px;
    height: 14px;
}

.badge-success {
    background: var(--success-light);
    border-color: rgba(16, 185, 129, 0.2);
    color: #059669;
}

.badge-warning {
    background: var(--warning-light);
    border-color: rgba(245, 158, 11, 0.2);
    color: #d97706;
}

.badge-error {
    background: var(--error-light);
    border-color: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

/* === INPUTS TECH === */
.input-tech {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--background-soft);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--text-dark);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-base);
}

.input-tech:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow:
        0 0 0 4px rgba(79, 70, 229, 0.1),
        0 0 20px rgba(79, 70, 229, 0.05);
}

.input-tech::placeholder {
    color: var(--text-light);
}

/* Input Group com Label Flutuante */
.input-group-tech {
    position: relative;
}

.input-group-tech label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1rem;
    transition: all var(--transition-base);
    pointer-events: none;
    background: transparent;
    padding: 0;
}

.input-group-tech .input-tech:focus+label,
.input-group-tech .input-tech:not(:placeholder-shown)+label {
    top: 0;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--background);
    padding: 0 0.5rem;
    color: var(--brand-primary);
}

/* === MÉTRICAS ANIMADAS === */
.metric-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.75rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* === HERO SECTION ENTERPRISE === */
.hero-enterprise {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--background);
    overflow: hidden;
}

.hero-enterprise .container {
    position: relative;
    z-index: 1;
}

.hero-enterprise-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-enterprise-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.hero-enterprise-title .gradient-text {
    background: var(--gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: techGradientShift 3s ease infinite;
}

.hero-enterprise-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-metrics-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-2xl);
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === RIPPLE EFFECT (requer JS) === */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple .ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: translate(-50%, -50%) scale(20);
        opacity: 0;
    }
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 768px) {
    .hero-metrics-bar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .metric-divider {
        width: 60px;
        height: 1px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-tech,
    .btn-tech-outline,
    .btn-tech-glow {
        width: 100%;
        justify-content: center;
    }

    .hero-enterprise-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* === HEADER SCROLL EFFECTS === */
.main-header.header-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    border-bottom-color: transparent;
}

.main-header.header-hidden {
    transform: translateY(-100%);
}

.main-header {
    transition:
        transform var(--transition-smooth),
        background var(--transition-smooth),
        box-shadow var(--transition-smooth);
}

/* === GLOW ON HOVER EFFECT === */
.glow-on-hover {
    position: relative;
    overflow: hidden;
}

.glow-on-hover::before {
    content: '';
    position: absolute;
    top: var(--glow-y, 50%);
    left: var(--glow-x, 50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15), transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
    z-index: 0;
}

.glow-on-hover:hover::before {
    opacity: 1;
}

.glow-on-hover>* {
    position: relative;
    z-index: 1;
}

/* === UTILITY CLASSES === */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-animated {
    background: var(--gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: techGradientShift 3s ease infinite;
}

/* Código/Monospace */
code,
.code,
.font-mono {
    font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', Consolas, monospace;
    font-size: 0.875em;
}

.code-inline {
    background: rgba(79, 70, 229, 0.08);
    padding: 0.2em 0.4em;
    border-radius: var(--radius-sm);
    color: var(--brand-primary);
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.875em;
}

/* === TEXT UTILITIES === */
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary {
    color: var(--brand-primary);
}

.text-secondary {
    color: var(--brand-secondary);
}

.text-muted {
    color: var(--text-muted);
}

.text-success {
    color: var(--success);
}

.text-warning {
    color: var(--warning);
}

.text-error {
    color: var(--error);
}

/* === SPACING UTILITIES === */
.mt-1 {
    margin-top: 0.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* === VISIBILITY === */
.hidden {
    display: none !important;
}

.invisible {
    visibility: hidden;
}

.opacity-0 {
    opacity: 0;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-100 {
    opacity: 1;
}

/* === FLEX UTILITIES === */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

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

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

/* === COPIED STATE (for copy buttons) === */
.copied {
    background: var(--success) !important;
    border-color: var(--success) !important;
}

/* === LOADING STATES === */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border);
    border-top-color: var(--brand-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* === HERO TRUST BAR === */
.hero-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 70, 229, 0.1);
    border-radius: var(--radius-2xl);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all var(--transition-smooth);
}

.trust-item:hover {
    color: var(--brand-primary);
}

.trust-item i {
    width: 20px;
    height: 20px;
    color: var(--brand-primary);
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
}

/* Hero Enterprise Enhancements */
.hero-enterprise {
    padding-top: 0;
    padding-bottom: 2rem;
    margin-top: -3rem;
    background: linear-gradient(180deg, var(--background) 0%, var(--background-soft) 100%);
}

.hero-enterprise .badge-enterprise {
    margin-bottom: 1rem;
}

.hero-enterprise-subtitle strong {
    color: var(--brand-primary);
    font-weight: 700;
}

/* Hero Metrics Enhancement */
.hero-metrics-bar {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Responsive Trust Bar */
@media (max-width: 768px) {
    .hero-trust-bar {
        gap: 1rem;
        padding: 1rem;
    }

    .trust-item {
        font-size: 0.8125rem;
    }

    .trust-item span {
        display: none;
    }

    .trust-divider {
        display: none;
    }

    .hero-enterprise {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }
}

/* === HERO ENTERPRISE PRODUCT PAGE === */
.hero-enterprise-product {
    position: relative;
    padding: 1rem 0 2rem;
    overflow: hidden;
    background: transparent;
}

.hero-enterprise-product .grid-pattern,
.hero-enterprise-product .aurora-glow {
    z-index: 0;
}

.hero-enterprise-product .container {
    position: relative;
    z-index: 1;
}

.hero-enterprise-product .product-hero-content {
    text-align: center;
}

.hero-enterprise-product .product-hero-badge-wrapper {
    margin-bottom: 1rem;
}

.hero-enterprise-product .hero-enterprise-title {
    margin-bottom: 0.75rem;
}

.hero-enterprise-product .hero-enterprise-subtitle {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 1rem;
}