/* ============================================
   WEBFY DIGITAL - DESIGN SYSTEM PREMIUM
   Baseado nos princípios de Jony Ive, Dieter Rams e Don Norman
   Grid: 8px | Paleta: Extraída do Logo
   ============================================ */

/* ===========================================
   CSS VARIABLES - DESIGN TOKENS
   =========================================== */
:root {
    /* Cores Primárias do Logo */
    --color-blue-primary: #1877F2;
    --color-blue-light: #00B4FF;
    --color-blue-dark: #0D47A1;
    --color-cyan: #00D4FF;

    /* Cores de Accent (variações da marca) */
    --color-accent-green: #00D4FF;
    --color-accent-orange: #1877F2;
    --color-accent-purple: #00B4FF;
    --color-accent-pink: #0D47A1;

    /* Neutros - Updated for Premium Feel */
    --color-bg-primary: #0B0C10;
    /* Rich Dark Gray instead of Black */
    --color-bg-secondary: #101116;
    --color-bg-tertiary: #15161C;
    --color-bg-card: #101116;
    /* Slightly lighter than bg-primary */
    --color-bg-elevated: #1A1B22;

    --color-border-subtle: #333333;
    /* Solid subtle border */
    --color-border-light: rgba(255, 255, 255, 0.15);
    --color-border-accent: rgba(24, 119, 242, 0.5);

    --color-text-primary: #FFFFFF;
    /* Pure White */
    --color-text-secondary: #E5E7EB;
    /* Gray-200 - WCAG AA compliant on dark backgrounds */
    --color-text-muted: #D1D5DB;
    /* Gray-300 - Increased from #9CA3AF for better readability */

    /* Gradientes */
    --gradient-brand: linear-gradient(135deg, #1877F2 0%, #00D4FF 100%);
    --gradient-brand-vertical: linear-gradient(180deg, #1877F2 0%, #00D4FF 100%);
    --gradient-accent: linear-gradient(135deg, #00B4FF 0%, #00D4FF 100%);
    --gradient-warm: linear-gradient(135deg, #1877F2 0%, #00B4FF 100%);
    --gradient-premium: linear-gradient(135deg, #0D47A1 0%, #1877F2 100%);

    /* Espaçamentos (Grid 8px) */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-7: 56px;
    --space-8: 64px;
    --space-10: 80px;
    --space-12: 96px;
    --space-16: 128px;
    --space-20: 160px;

    /* Tipografia */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 24px;
    /* Slightly tighter for cleaner look */
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Shadows - Refined for subtlety (premium architectural look) */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow-blue: 0 4px 20px rgba(24, 119, 242, 0.15);
    /* Subtle glow - premium, not neon */
    --shadow-glow-cyan: 0 4px 20px rgba(0, 212, 255, 0.1);
}

/* ===========================================
   BASE RESET & TYPOGRAPHY
   =========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Links - Evitar cor roxa em links visitados */
/* Links - Fix for Browser Defaults */
a {
    color: inherit;
    text-decoration: none !important;
    /* Force no underline */
}

a:visited {
    color: inherit;
    text-decoration: none !important;
}

a:hover {
    color: inherit;
    text-decoration: none !important;
}

/* Links no Footer */
footer a,
footer a:visited,
footer a:hover {
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===========================================
   ESCALA TIPOGRÁFICA PREMIUM
   Seletores de alta especificidade para sobrescrever Tailwind
   =========================================== */

/* H1 - Títulos Principais Hero */
h1,
body h1,
html body h1,
.hero-title,
section h1,
header h1 {
    font-size: clamp(3.5rem, 10vw, 7rem) !important;
    font-weight: 900 !important;
    line-height: 1.0 !important;
    letter-spacing: -0.03em !important;
}

/* H2 - Títulos de Seção */
h2,
body h2,
html body h2,
.section-title,
section h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
}

/* H3 - Subtítulos */
h3,
body h3,
html body h3,
.subsection-title,
section h3 {
    font-size: clamp(1.75rem, 4vw, 2.75rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
}

/* H4 - Títulos de Card */
h4,
body h4,
html body h4,
.card-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}

/* Exceções para h3 dentro de cards - tamanho menor */
.card h3,
.service-card h3,
.plan-card h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important;
}

p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ===========================================
   LOGO STYLES - W + ebfy Integração Premium
   =========================================== */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    /* Prevent layout shift */
    min-width: 140px;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.logo-container * {
    text-decoration: none !important;
    border: none !important;
}

.logo-w {
    width: 44px;
    height: 44px;
    margin-right: -8px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(24, 119, 242, 0.3));
}

.logo-text {
    font-family: var(--font-family);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    font-size: 1.75rem;
    font-weight: var(--font-weight-black);
    letter-spacing: -0.04em;
    /* Fixed width to match "Webfy" full width approx */
    width: 90px;
    white-space: nowrap;
    margin-top: 5px;
}

#typing-text {
    color: var(--color-blue-primary);
    text-decoration: none !important;
    border: none !important;
}

.cursor {
    color: var(--color-cyan);
    animation: blink 0.8s infinite;
    margin-left: 1px;
    font-weight: var(--font-weight-normal);
    opacity: 0.7;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 0;
    }
}

/* ===========================================
   BACKGROUND ATMOSFÉRICO PROFUNDO
   =========================================== */
.bg-atmosphere {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

/* Orbes de Luz Ambiente - Ajustado para Hierarquia Visual */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float-subtle 20s ease-in-out infinite;
    pointer-events: none;
}

.glow-orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(24, 119, 242, 0.12) 0%, transparent 70%);
    top: -400px;
    right: -300px;
}

.glow-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    bottom: 10%;
    left: -300px;
    animation-delay: 5s;
}

.glow-orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 71, 161, 0.08) 0%, transparent 70%);
    /* Changed to Dark Blue */
    top: 40%;
    right: -200px;
    animation-delay: 10s;
}

.glow-orb-4 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(24, 119, 242, 0.06) 0%, transparent 70%);
    /* Changed to Primary Blue */
    bottom: 30%;
    left: 10%;
    animation-delay: 15s;
}

@keyframes float-subtle {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

/* Smoke / Fog Effect */
.smoke-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    mix-blend-mode: screen;
}

.smoke-cloud {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    filter: blur(60px);
    border-radius: 50%;
    animation: drift 30s linear infinite;
}

.smoke-cloud-1 {
    top: 20%;
    left: -10%;
    width: 600px;
    height: 400px;
    animation-duration: 45s;
}

.smoke-cloud-2 {
    bottom: 10%;
    right: -5%;
    width: 500px;
    height: 300px;
    animation-duration: 38s;
    animation-direction: reverse;
}

.smoke-cloud-3 {
    top: 60%;
    left: 40%;
    width: 700px;
    height: 500px;
    animation-duration: 50s;
    opacity: 0.3;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(50px, -30px) rotate(5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Reveal on Scroll */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger-1 {
    transition-delay: 0.1s;
}

.reveal-stagger-2 {
    transition-delay: 0.2s;
}

.reveal-stagger-3 {
    transition-delay: 0.3s;
}

.reveal-stagger-4 {
    transition-delay: 0.4s;
}

/* Enhanced Glassmorphism */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Grid Sutil - Reduzido Ruído */
.grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, #000 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, #000 30%, transparent 100%);
    pointer-events: none;
}

/* Noise Texture Sutil */
.noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ===========================================
   GRADIENTES DE TEXTO
   =========================================== */
.text-gradient-brand {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-warm {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-premium {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================================
   BOTÕES PREMIUM
   =========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    font-family: var(--font-family);
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Botão Primário - Gradiente da Marca */
.btn-primary {
    background: var(--gradient-brand);
    color: white;
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

/* Botão Secundário - Mais Limpo */
.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-text-primary);
    color: var(--color-text-primary);
}

/* Botão com Gradiente Verde (Accent) */
.btn-accent {
    background: var(--gradient-accent);
    color: #050507;
    font-weight: var(--font-weight-bold);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

/* Botão WhatsApp */
.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

/* ===========================================
   CARDS PREMIUM - Clean Architectural Design
   Apple/Linear inspired - No neon, subtle depth
   =========================================== */
.card {
    background: rgba(16, 17, 22, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(51, 51, 51, 0.6);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    /* Increased padding for premium breathing room */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(24, 119, 242, 0.3);
    /* Subtle blue accent on hover */
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.4);
    background: rgba(26, 27, 34, 0.8);
}

.card:hover::before {
    opacity: 1;
}

/* Card Service com Ícone Premium */
.service-card {
    text-align: left;
}

/* Ícones Premium - Efeito Sólido e Brilho */
.service-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.card:hover .service-icon svg {
    stroke-width: 2;
    transform: scale(1.1);
    transition: all 0.3s;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: var(--gradient-brand);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.card:hover .service-icon::after {
    opacity: 0.2;
}

.service-icon.blue {
    background: rgba(24, 119, 242, 0.1);
    color: var(--color-blue-primary);
}

.service-icon.cyan {
    background: rgba(0, 212, 255, 0.1);
    color: var(--color-cyan);
}

.service-icon.green {
    background: rgba(24, 119, 242, 0.1);
    /* Mapped to Blue */
    color: var(--color-blue-primary);
}

.service-icon.orange {
    background: rgba(0, 212, 255, 0.1);
    /* Mapped to Cyan */
    color: var(--color-cyan);
}

.service-icon.purple {
    background: rgba(13, 71, 161, 0.1);
    /* Mapped to Dark Blue */
    color: var(--color-blue-dark);
}

/* Link de Ação */
.action-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s;
}

.action-link.blue {
    color: var(--color-blue-primary);
}

.action-link.cyan {
    color: var(--color-cyan);
}

.action-link.green {
    color: var(--color-blue-primary);
}

.action-link.orange {
    color: var(--color-cyan);
}

.action-link.purple {
    color: var(--color-blue-dark);
}

.action-link:hover {
    gap: var(--space-2);
}

/* ===========================================
   PLAN CARDS (Pricing)
   =========================================== */
.plan-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-2xl);
    padding: var(--space-5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-accent);
}

.plan-card.featured {
    background: var(--color-bg-elevated);
    border-color: rgba(24, 119, 242, 0.2);
    box-shadow: var(--shadow-glow-blue);
    transform: scale(1.02);
}

.plan-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-brand);
    color: white;
    font-size: 0.625rem;
    font-weight: var(--font-weight-bold);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.plan-tag {
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-2);
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: var(--space-1);
}

.plan-price-currency {
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

.plan-price-value {
    font-size: 3.5rem;
    font-weight: var(--font-weight-black);
    line-height: 1;
}

.plan-price-period {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Toggle de Preços */
.pricing-toggle {
    display: flex;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    padding: 4px;
    margin-bottom: var(--space-4);
}

.pricing-toggle button {
    flex: 1;
    padding: var(--space-1) var(--space-2);
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-toggle button.active,
.pricing-toggle button:hover {
    background: var(--color-bg-elevated);
    color: var(--color-text-primary);
}

/* Feature List */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.feature-list li span {
    color: var(--color-text-secondary);
}

.feature-list li strong {
    color: var(--color-text-primary);
}

.feature-list li svg,
.feature-list li i {
    flex-shrink: 0;
    margin-top: 3px;
    width: 16px;
    height: 16px;
}

/* ===========================================
   SEÇÃO DIVIDERS
   =========================================== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-light), transparent);
    margin: var(--space-12) 0;
}

/* ===========================================
   BADGES E TAGS
   =========================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-2);
    font-size: 0.6875rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    border: 1px solid;
}

.badge-blue {
    background: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.3);
    color: var(--color-blue-light);
}

/* Badge Tecnológico Premium */
.badge-tech {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 12px 24px;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-cyan);
    font-family: var(--font-family);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(0, 212, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    animation: float-badge 6s ease-in-out infinite;
}

.badge-tech::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(0, 212, 255, 0.3), transparent 70%);
    opacity: 0.4;
    z-index: 0;
}

.badge-tech::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: rotate(45deg);
    animation: shine-pass 6s infinite;
}

.badge-tech i {
    color: var(--color-cyan);
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
    position: relative;
    z-index: 1;
}

.badge-tech span {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, #fff, #00D4FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Efeito de Fumaça Interna */
.badge-smoke {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    filter: blur(20px);
    animation: smoke-pulse 4s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-5px) scale(1.02);
    }
}

@keyframes shine-pass {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    20% {
        transform: translateX(100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

@keyframes smoke-pulse {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.badge-green {
    background: rgba(0, 229, 160, 0.1);
    border-color: rgba(0, 229, 160, 0.3);
    color: var(--color-accent-green);
}

.badge-orange {
    background: rgba(255, 140, 66, 0.1);
    border-color: rgba(255, 140, 66, 0.3);
    color: var(--color-accent-orange);
}

.badge-purple {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--color-accent-purple);
}

/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: var(--space-3);
    left: var(--space-4);
    font-size: 4rem;
    line-height: 1;
    opacity: 0.1;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: #FBBF24;
    margin-bottom: var(--space-2);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 0.875rem;
    color: white;
}

/* ===========================================
   SCROLLBAR CUSTOM
   =========================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-brand);
    border-radius: 10px;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 768px) {
    .logo-w {
        width: 36px;
        height: 36px;
        margin-right: -6px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .glow-orb {
        opacity: 0.3;
    }

    .card,
    .plan-card {
        padding: var(--space-4);
    }

    .service-icon {
        width: 56px;
        height: 56px;
    }
}

/* ===========================================
   ANIMAÇÕES UTILITÁRIAS
   =========================================== */
.animate-float {
    animation: float-subtle 6s ease-in-out infinite;
}

.animate-pulse-soft {
    animation: pulse-soft 2s ease-in-out infinite;
}

@keyframes pulse-soft {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Hover Scale */
.hover-scale {
    transition: transform 0.3s;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* ============================================
   MAINTENANCE POPUP
   ============================================ */
.maintenance-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.maintenance-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.maintenance-popup {
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.maintenance-overlay.active .maintenance-popup {
    transform: translateY(0) scale(1);
}

.maintenance-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.maintenance-icon {
    width: 32px;
    height: 32px;
    color: var(--color-text-primary);
}

.maintenance-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

.maintenance-text {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.maintenance-close {
    width: 100%;
    padding: var(--space-3);
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-full);
    color: var(--color-text-primary);
    font-weight: var(--font-weight-medium);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.maintenance-close:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-border-light);
}

/* Glow Effect */
.maintenance-popup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(24, 119, 242, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ===========================================
   MARQUEE / TICKER ANIMATION
   =========================================== */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 20s linear infinite;
}

/* ===========================================
   FAQ PREMIUM - ACCORDION INTERATIVO
   Design inspirado em Linear/Stripe/Apple
   =========================================== */

/* Container Principal */
.faq-section {
    position: relative;
    padding: var(--space-16) var(--space-4);
    background: rgba(10, 10, 15, 0.3);
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(24, 119, 242, 0.5), transparent);
}

/* Título da Seção */
.faq-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.faq-header .badge {
    margin-bottom: var(--space-4);
}

.faq-header h2 {
    margin-bottom: var(--space-3);
}

.faq-header p {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Container das Perguntas */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

/* Item FAQ Individual - Accordion */
.faq-item {
    background: rgba(21, 21, 26, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Efeito de Borda Gradiente no Hover */
.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.4), rgba(0, 212, 255, 0.4));
    -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;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.faq-item:hover::before,
.faq-item.active::before {
    opacity: 1;
}

.faq-item:hover {
    background: rgba(26, 27, 34, 0.8);
    transform: translateX(4px);
    box-shadow:
        0 10px 40px -10px rgba(0, 0, 0, 0.4),
        0 0 60px -30px rgba(24, 119, 242, 0.15);
}

.faq-item.active {
    background: rgba(26, 27, 34, 0.95);
    border-color: rgba(24, 119, 242, 0.2);
    box-shadow:
        0 20px 50px -15px rgba(0, 0, 0, 0.5),
        0 0 80px -40px rgba(24, 119, 242, 0.2);
}

/* Botão/Trigger do Accordion */
.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

/* Número da Pergunta - Badge Visual */
.faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.15), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(24, 119, 242, 0.2);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-blue-primary);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-number,
.faq-item.active .faq-number {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.25), rgba(0, 212, 255, 0.15));
    border-color: rgba(24, 119, 242, 0.4);
    color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.2);
}

/* Texto da Pergunta */
.faq-question {
    flex: 1;
    font-family: var(--font-family);
    font-size: 1.0625rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question,
.faq-item.active .faq-question {
    color: #fff;
}

/* Ícone de Expandir/Colapsar */
.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover .faq-icon {
    background: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.3);
}

.faq-item:hover .faq-icon svg {
    color: var(--color-blue-primary);
}

.faq-item.active .faq-icon {
    background: var(--gradient-brand);
    border-color: transparent;
}

.faq-item.active .faq-icon svg {
    color: white;
    transform: rotate(180deg);
}

/* Conteúdo/Resposta */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-content {
    max-height: 500px;
    opacity: 1;
}

.faq-answer {
    padding: 0 var(--space-6) var(--space-6) calc(44px + var(--space-10));
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.faq-answer strong {
    color: var(--color-text-primary);
}

/* Separador Visual entre Perguntas */
.faq-item+.faq-item {
    margin-top: 0;
}

/* Detalhe Decorativo no Lado Esquerdo quando ativo */
.faq-item.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-brand);
    border-radius: var(--radius-full);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq-trigger {
        padding: var(--space-4);
        gap: var(--space-3);
    }

    .faq-number {
        min-width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .faq-question {
        font-size: 0.9375rem;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
    }

    .faq-icon svg {
        width: 16px;
        height: 16px;
    }

    .faq-answer {
        padding: 0 var(--space-4) var(--space-4) calc(36px + var(--space-7));
        font-size: 0.875rem;
    }
}

/* Animação Stagger para FAQs */
.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.15s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.25s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.3s;
}

/* FAQ com reveal */
.faq-item.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px) translateX(-10px);
}

.faq-item.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}