/* ==========================================================================
   RESET & CONFIGURAÇÕES GERAIS (PRETO ABSOLUTO PREMIUM)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #000000;
    color: #f3f4f6;
    overflow-x: hidden;
}

/* Glassmorphic Cards Comuns */
.glass {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    transition: transform 0.3s, border 0.3s;
}

.glass:hover {
    border-color: rgba(255, 204, 0, 0.15);
}

/* ==========================================================================
   NAVBAR COMPLETA
   ========================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 10%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon { color: #ffcc00; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover { color: #ffcc00; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-login {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-nav-primary {
    background: #ffcc00;
    color: #000000;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.2);
}

.animate-pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(255, 204, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
}

.menu-toggle { display: none; font-size: 1.3rem; cursor: pointer; }

/* ==========================================================================
   GLOWS E GRADIENTS INTENSIFICADOS (PROFUNDIDADE PREMIUM)
   ========================================================================== */
.yellow-ambient-glow {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.22) 0%, rgba(255, 204, 0, 0.02) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(50px);
}

.yellow-ambient-glow-secondary {
    position: absolute;
    top: 45%;
    left: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

.yellow-ambient-glow-mockup {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.25) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; filter: blur(30px); }
}

/* ==========================================================================
   HERO CONTAINER PROPORÇÃO 50/50 E TEXTOS
   ========================================================================== */
.hero-container-split {
    position: relative;
    display: flex;
    padding: 60px 8% 100px 8%;
    align-items: center;
    gap: 40px;
    min-height: calc(100vh - 98px);
}

.hero-text-side {
    flex: 1;
    max-width: 50%;
    z-index: 2;
}

.hero-mockups-side {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.tag-crm {
    color: #ffcc00;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 24px;
    background: rgba(255, 204, 0, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 204, 0, 0.15);
}

.hero-text-side h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.highlight {
    background: linear-gradient(120deg, #ffcc00 0%, #ffffff 80%);
    -webkit-background-clip: text;
    background-clip: text; /* Adicione esta linha exatamente aqui */
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

.btn-group-left { 
    display: flex; 
    align-items: center; 
    gap: 32px; 
}

.btn-primary {
    background: #ffcc00;
    color: #000000;
    padding: 18px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.2), 0 0 30px rgba(255, 204, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 204, 0, 0.4), 0 0 40px rgba(255, 204, 0, 0.3);
    background: #ffd633;
}

.btn-link-secondary {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-link-secondary:hover {
    color: #ffcc00;
    transform: translateX(3px);
}

/* ==========================================================================
   MOCKUPS DOS CELULARES (POSIÇÕES INVERTIDAS - DESTAQUE PARA LEADS)
   ========================================================================== */
.perspective-container {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 560px;
    perspective: 1400px;
}

.iphone-pro-max {
    position: absolute;
    background: #000000;
    border: 4px solid #3a3a43;
    outline: 8px solid #0d0d11;
    border-radius: 44px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.95), 0 0 60px rgba(255, 204, 0, 0.08);
}

.iphone-pro-max .phone-screen {
    width: 100%;
    height: 100%;
    background: #07070a;
    padding: 28px 16px 16px 16px;
    border-radius: 38px;
    overflow-y: hidden;
    position: relative;
}

.dynamic-island {
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 23px;
    background: #000000;
    border-radius: 20px;
    z-index: 50;
}

.home-indicator {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    z-index: 45;
}

.phone-back-stats {
    width: 270px;
    height: 495px;
    left: -40px;
    top: 70px;
    z-index: 1;
    opacity: 0.35;
    filter: blur(1.5px) grayscale(20%);
    transform: rotateY(22deg) rotateX(4deg) scale(0.9);
}

.phone-front-leads {
    width: 318px;
    height: 588px;
    right: 10px;
    top: -30px;
    z-index: 3;
    outline-color: #1a1a24;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.95), 0 0 80px rgba(255, 204, 0, 0.15);
}

@keyframes premiumFloatBack {
    0%, 100% { transform: translateY(0px) rotateY(22deg) rotateX(4deg) scale(0.9); }
    50% { transform: translateY(-6px) rotateY(24deg) rotateX(3deg) scale(0.9); }
}

@keyframes premiumFloatFront {
    0%, 100% { transform: translateY(0px) rotateY(-12deg) rotateX(4deg); }
    50% { transform: translateY(-16px) rotateY(-9deg) rotateX(5deg); }
}

.animate-premium-back {
    transform-style: preserve-3d;
    animation: premiumFloatBack 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.animate-premium-front {
    transform-style: preserve-3d;
    animation: premiumFloatFront 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* UI ELEMENTOS INTERNOS DOS IPHONES */
.top-status { display: flex; justify-content: space-between; align-items: center; font-size: 0.55rem; color: rgba(255, 255, 255, 0.4); margin-bottom: 14px; }
.top-status .icons { display: flex; gap: 4px; }
.app-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.app-header h2 { font-size: 0.95rem; font-weight: 700; color: #ffffff; }
.app-header .menu, .app-header .dots { font-size: 0.75rem; color: rgba(255, 255, 255, 0.5); }
.stats-grid-mini { display: flex; gap: 6px; margin-bottom: 14px; }
.stat-card-app { flex: 1; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 8px; padding: 8px 6px; }
.stat-card-app span { font-size: 0.48rem; color: rgba(255, 255, 255, 0.35); display: block; }
.stat-card-app h3 { font-size: 0.85rem; font-weight: 700; color: #ffffff; margin: 2px 0; }
.green-text { font-size: 0.5rem; color: #00cc66; font-weight: 600; }
.filters-app { display: flex; gap: 6px; margin-bottom: 12px; }
.select-app, .search-app { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); padding: 6px 8px; border-radius: 6px; font-size: 0.55rem; color: rgba(255, 255, 255, 0.4); display: flex; align-items: center; gap: 4px; }
.search-app { flex: 1; }
.tabs-app { display: flex; gap: 4px; margin-bottom: 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.03); padding-bottom: 6px; }
.tabs-app button { background: transparent; border: none; color: rgba(255, 255, 255, 0.4); font-size: 0.55rem; font-weight: 600; }
.tabs-app button.active-tab-app { color: #ffcc00; }
.lead-list-app { display: flex; flex-direction: column; gap: 2px; }
.lead-row-app { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.02); }
.avatar-app { width: 26px; height: 26px; border-radius: 50%; font-size: 0.55rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.av-1 { background: rgba(225, 48, 108, 0.1); color: #e1306c; }
.av-2 { background: rgba(24, 119, 242, 0.1); color: #1877f2; }
.info-app h4 { font-size: 0.65rem; color: #ffffff; font-weight: 600; }
.info-app span { font-size: 0.5rem; color: rgba(255, 255, 255, 0.4); display: flex; align-items: center; gap: 2px; }
.info-app { flex: 1; text-align: left; }
.tag-app { font-size: 0.48rem; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.hot-tag { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.warm-tag { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.fab-app { position: absolute; bottom: 56px; right: 22px; width: 30px; height: 30px; background: #ffcc00; color: #000000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3); }
.bottom-nav-app { position: absolute; bottom: 12px; left: 0; width: 100%; background: #07070a; border-top: 1px solid rgba(255, 255, 255, 0.04); display: flex; justify-content: space-around; align-items: center; padding: 6px 0 10px 0; }
.bottom-nav-app div { display: flex; flex-direction: column; align-items: center; font-size: 0.45rem; color: rgba(255, 255, 255, 0.3); }
.bottom-nav-app div i { font-size: 0.7rem; margin-bottom: 2px; }
.bottom-nav-app div.active-nav-item { color: #ffcc00; }
.whatsapp-central-btn { background: #25d366; color: #ffffff !important; width: 24px; height: 24px; border-radius: 50%; justify-content: center !important; }

.stats-app-screen { display: flex; flex-direction: column; }
.period-tabs { display: flex; justify-content: space-between; gap: 4px; margin-bottom: 12px; background: rgba(255, 255, 255, 0.03); padding: 2px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.02); }
.period-tabs button { flex: 1; background: transparent; border: none; color: rgba(255, 255, 255, 0.4); font-size: 0.48rem; font-weight: 600; padding: 5px 2px; border-radius: 6px; cursor: pointer; }
.period-tabs button.active { background: rgba(255, 255, 255, 0.08); color: #ffcc00; }
.metrics-row-app { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; margin-bottom: 12px; }
.metric-box-app { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.04); border-radius: 10px; padding: 8px 10px; }
.metric-box-app span { font-size: 0.5rem; color: rgba(255, 255, 255, 0.4); display: block; }
.metric-box-app h3 { font-size: 0.9rem; font-weight: 700; color: #ffffff; margin: 2px 0; }
.metric-box-app p { font-size: 0.48rem; color: #00cc66; font-weight: 600; }
.chart-card-app { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.04); border-radius: 12px; padding: 10px; margin-bottom: 12px; }
.chart-header-app { display: flex; justify-content: space-between; align-items: center; font-size: 0.52rem; color: rgba(255, 255, 255, 0.5); margin-bottom: 12px; }
.chart-header-app div { color: #ffcc00; font-weight: 600; }
.bars-app { display: flex; align-items: flex-end; justify-content: space-between; height: 55px; gap: 3px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.bars-app span { flex: 1; background: linear-gradient(to top, rgba(255, 204, 0, 0.1), #ffcc00); border-radius: 2px 2px 0 0; }
.bottom-cards-app { display: flex; gap: 6px; margin-bottom: 14px; }
.conversion-card-app { flex: 0.9; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.04); border-radius: 10px; padding: 8px; }
.conversion-card-app span { font-size: 0.48rem; color: rgba(255, 255, 255, 0.4); display: block; }
.conversion-card-app h3 { font-size: 0.95rem; font-weight: 700; color: #ffffff; margin: 2px 0; }
.conversion-card-app p { font-size: 0.48rem; color: #00cc66; font-weight: 600; }
.origin-card-app { flex: 1.1; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.04); border-radius: 10px; padding: 8px; }
.origin-card-app > span { font-size: 0.48rem; color: rgba(255, 255, 255, 0.4); display: block; margin-bottom: 4px; }
.origin-item-app { font-size: 0.48rem; color: rgba(255, 255, 255, 0.6); display: flex; align-items: center; gap: 4px; margin-bottom: 2px; }
.origin-item-app b { margin-left: auto; color: #ffffff; }
.dot-app { width: 4px; height: 4px; border-radius: 50%; display: inline-block; }
.dot-app.blue { background: #0081fb; }
.dot-app.purple { background: #a855f7; }
.dot-app.green { background: #00cc66; }

/* ==========================================================================
   SEÇÃO DE INFRAESTRUTURA DE IA
   ========================================================================== */
.section-container { padding: 80px 8%; max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.section-header { text-align: center; margin-bottom: 54px; }
.section-subtitle { color: #ffcc00; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 12px; }
.section-header h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.4rem; font-weight: 700; color: #ffffff; }
.text-yellow { color: #ffcc00; }

.section-infrastructure { padding-top: 40px !important; padding-bottom: 40px !important; background-color: #050505; }
.tech-grid-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; z-index: 1; }
.premium-tech-layout, .premium-dashboard-layout { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; max-width: 1200px; margin: 0 auto; }
.tech-card-enterprise { background: linear-gradient(135deg, rgba(15, 15, 18, 0.7) 0%, rgba(8, 8, 10, 0.9) 100%); border: 1px solid rgba(255, 255, 255, 0.04); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.03); border-radius: 12px; padding: 20px 24px; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.card-glow-effect { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(244, 180, 0, 0.03), transparent 40%); pointer-events: none; }
.premium-tech-layout .tech-card-enterprise { display: flex; align-items: center; gap: 16px; }
.premium-tech-layout .tech-card-enterprise span { font-size: 0.95rem; font-weight: 600; color: rgba(255, 255, 255, 0.9); }
.premium-tech-layout .icon-glow { font-size: 1.2rem; color: #F4B400; background: rgba(244, 180, 0, 0.06); width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(244, 180, 0, 0.1); }
.metrics-separator-label { text-align: center; margin: 32px 0 20px 0; position: relative; z-index: 2; }
.metrics-separator-label span { font-size: 0.68rem; font-weight: 700; color: #F4B400; letter-spacing: 0.2em; background: rgba(244, 180, 0, 0.05); padding: 6px 14px; border-radius: 20px; border: 1px solid rgba(244, 180, 0, 0.12); display: inline-block; }
.metric-header-layout { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.metric-title { font-size: 0.8rem; font-weight: 600; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; }
.metric-body-layout { display: flex; justify-content: space-between; align-items: flex-end; }
.metric-body-layout .metric-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.8rem; font-weight: 700; color: #ffffff; line-height: 1; }
.tech-badge-pulse { background: rgba(0, 204, 102, 0.06); color: #00cc66; border: 1px solid rgba(0, 204, 102, 0.15); padding: 4px 8px; border-radius: 6px; font-size: 0.75rem; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; animation: smoothBadgePulse 3s infinite ease-in-out; }

@keyframes smoothBadgePulse { 0%, 100% { background: rgba(0, 204, 102, 0.06); border-color: rgba(0, 204, 102, 0.15); } 50% { background: rgba(0, 204, 102, 0.12); border-color: rgba(0, 204, 102, 0.3); } }
.animate-pulse-icon { animation: slowIconPulse 4s infinite ease-in-out; }
@keyframes slowIconPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* ==========================================================================
   SEÇÃO REFORMULADA: PERFORMANCE & ANALYTICS (EXCLUSIVO)
   ========================================================================== */
.section-analytics-perf {
    padding-top: 20px !important;
    padding-bottom: 40px !important;
    background-color: #050505;
    position: relative;
    overflow: hidden;
}

.analytics-mesh-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(244, 180, 0, 0.015) 1px, transparent 1px), linear-gradient(to right, rgba(255, 255, 255, 0.003) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 1;
}

.analytics-section-badge {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.analytics-section-badge span {
    font-size: 0.68rem;
    font-weight: 700;
    color: #F4B400;
    letter-spacing: 0.25em;
    background: rgba(244, 180, 0, 0.04);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(244, 180, 0, 0.1);
    display: inline-block;
}

.premium-analytics-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tech-glass-card {
    background: linear-gradient(145deg, rgba(16, 16, 20, 0.75) 0%, rgba(9, 9, 11, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-glow-reflection {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 180, 0, 0.01) 0%, transparent 60%);
    pointer-events: none;
}

.analytics-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.analytics-balance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.metrics-display-group { display: flex; flex-direction: column; gap: 4px; }

.metrics-display-group .value-large {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #ffffff;
    line-height: 1;
}

.trend-up-inline {
    font-size: 0.85rem;
    color: #00cc66;
    font-weight: 700;
    background: rgba(0, 204, 102, 0.06);
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: max-content;
    border: 1px solid rgba(0, 204, 102, 0.12);
}

.donut-chart-container { display: flex; align-items: center; justify-content: center; }

.donut-display-premium {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 9px solid rgba(255, 255, 255, 0.03);
    border-top-color: #F4B400;
    transform: rotate(45deg);
    position: relative;
    box-shadow: 0 0 15px rgba(244, 180, 0, 0.05);
}

.analytics-distribution-wrapper { display: flex; flex-direction: column; gap: 16px; }
.distribution-row { display: flex; flex-direction: column; gap: 6px; }
.distribution-info { display: flex; justify-content: space-between; align-items: center; }
.channel-name { font-size: 0.9rem; font-weight: 500; color: rgba(255, 255, 255, 0.85); display: flex; align-items: center; gap: 8px; }
.channel-percentage { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; font-weight: 700; color: #ffffff; }
.dot-indicator { width: 6px; height: 6px; border-radius: 50%; }
.dot-indicator.yellow { background-color: #F4B400; }
.dot-indicator.purple { background-color: #a855f7; }
.dot-indicator.green { background-color: #00cc66; }
.distribution-bar-bg { width: 100%; height: 6px; background: rgba(255, 255, 255, 0.03); border-radius: 4px; overflow: hidden; }
.distribution-bar-fill { height: 100%; border-radius: 4px; }
.distribution-bar-fill.yellow { background: linear-gradient(90deg, rgba(244, 180, 0, 0.4), #F4B400); }
.distribution-bar-fill.purple { background: linear-gradient(90deg, rgba(168, 85, 247, 0.4), #a855f7); }
.distribution-bar-fill.green { background: linear-gradient(90deg, rgba(0, 204, 102, 0.4), #00cc66); }

@media (min-width: 1025px) {
    .tech-glass-card:hover {
        transform: translateY(-4px);
        border-color: rgba(244, 180, 0, 0.25);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(244, 180, 0, 0.03);
    }
}

.live-data-pulse { animation: analyticsIndicatorPulse 2.5s infinite ease-in-out; }
@keyframes analyticsIndicatorPulse { 0%, 100% { background: rgba(0, 204, 102, 0.06); border-color: rgba(0, 204, 102, 0.12); } 50% { background: rgba(0, 204, 102, 0.14); border-color: rgba(0, 204, 102, 0.3); box-shadow: 0 0 8px rgba(0, 204, 102, 0.1); } }

/* ==========================================================================
   ESTRUTURAS RESTANTES DO SITE INTACTAS
   ========================================================================== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.spec-card { padding: 32px; text-align: left; }
.badge-card { background: rgba(255, 204, 0, 0.08); padding: 6px 14px; border-radius: 20px; font-size: 0.75rem; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 22px; color: #ffcc00; border: 1px solid rgba(255,204,0,0.15); }
.spec-card h3 { font-size: 1.4rem; margin-bottom: 22px; color: #ffffff; }
.spec-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.spec-card ul li { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); display: flex; align-items: center; gap: 10px; }
.text-green { color: #00cc66; }

.fluxo-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
.fluxo-step { padding: 32px; text-align: left; position: relative; }
.step-num { width: 36px; height: 36px; background: rgba(255,204,0,0.1); border: 1px solid #ffcc00; color: #ffcc00; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 20px; }
.fluxo-step h4 { font-size: 1.1rem; margin-bottom: 12px; color: #ffffff; }
.fluxo-step p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

.comparativo-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.comp-box { padding: 44px; text-align: left; }
.comp-box h3 { margin-bottom: 28px; font-size: 1.4rem; color: #ffffff; }
.comp-box ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.comp-box ul li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: rgba(255,255,255,0.7); }
.text-red { color: #ef4444; }
.vs-badge { background: #121216; border: 1px solid rgba(255, 255, 255, 0.08); width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #ffcc00; }

.economy-card { padding: 60px 40px; text-align: center; border-radius: 24px; position: relative; overflow: hidden; }
.eco-tag { font-size: 0.75rem; font-weight: 700; color: #ffcc00; letter-spacing: 2px; margin-bottom: 16px; }
.economy-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; }
.text-yellow-gradient { background: linear-gradient(90deg, #ffcc00, #ffffff); background-clip: text; -webkit-text-fill-color: transparent; }
.economy-card p { color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; line-height: 1.6; }
.animate-glow { box-shadow: 0 0 40px -10px rgba(255, 204, 0, 0.05); }

.integracoes-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 20px; }
.int-logo { padding: 20px 32px; display: flex; align-items: center; gap: 14px; font-weight: 500; font-size: 1rem; }
.int-logo i { font-size: 1.5rem; }
.style-wa { color: #25d366; }
.style-ig { color: #e1306c; }
.style-fb { color: #1877f2; }
.style-meta { color: #0081fb; }
.style-stripe { color: #635bff; }
.style-pix { color: #32bcad; }

.depoimentos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.depo-card { padding: 36px; text-align: left; display: flex; flex-direction: column; justify-content: space-between; }
.depo-card p { font-size: 1rem; line-height: 1.6; color: rgba(255,255,255,0.8); font-style: italic; margin-bottom: 24px; }
.user-info { display: flex; align-items: center; gap: 14px; }
.avatar-placeholder { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.user-1 { background-color: rgba(255, 204, 0, 0.1); }
.user-2 { background-color: rgba(168, 85, 247, 0.1); }
.user-3 { background-color: rgba(0, 204, 102, 0.1); }
.user-info h5 { font-size: 0.95rem; color: #ffffff; font-weight: 600; }
.user-info span { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

.cta-bottom-card { padding: 80px 40px; border-radius: 28px; text-align: center; position: relative; margin-top: 40px; }
.cta-icon-box { width: 64px; height: 64px; background: rgba(255,204,0,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: #ffcc00; margin: 0 auto 28px auto; }
.cta-bottom-card h3 { font-family: 'Inter', Arial, sans-serif; font-size: 2.4rem; font-weight: 700; font-style: normal; font-variant: normal; letter-spacing: normal; margin-bottom: 12px; }
.cta-sub { color: rgba(255,255,255,0.5); font-size: 1.1rem; margin-bottom: 36px; }
.cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-dark { background: #121216; border: 1px solid rgba(255,255,255,0.08); color: #ffffff; padding: 16px 32px; border-radius: 30px; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; }
.cta-footer-badges { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.cta-footer-badges i { color: #ffcc00; margin-right: 4px; }
.animate-float { animation: floatElement 3s ease-in-out infinite; }
@keyframes floatElement { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }

.site-footer { background: #010101; padding: 60px 8%; border-top: 1px solid rgba(255, 255, 255, 0.03); }
.footer-container { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; max-width: 1400px; margin: 0 auto; }
.footer-brand { flex: 1; min-width: 250px; }
.footer-brand p { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; margin-top: 12px; max-width: 300px; line-height: 1.5; }
.footer-columns-wrapper { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-column { min-width: 140px; display: flex; flex-direction: column; gap: 12px; }
.footer-column h4 { font-size: 1rem; color: #ffffff; font-weight: 600; margin-bottom: 4px; }
.footer-column a { color: rgba(255, 255, 255, 0.5); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-column a:hover { color: #ffcc00; }
.social-icons { display: flex; gap: 14px; }
.social-icons a { width: 36px; height: 36px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 1rem; transition: all 0.3s; }
.social-icons a:hover { background: #ffcc00; color: #000000; }

/* ==========================================================================
   RESPONSIVIDADE E ADAPTAÇÃO DE MÍDIA
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container-split { flex-direction: column; text-align: center; padding-top: 40px; gap: 50px; }
    .hero-text-side { max-width: 100%; }
    .hero-mockups-side { max-width: 100%; justify-content: center; }
    .btn-group-left { justify-content: center; }
    .comparativo-grid { grid-template-columns: 1fr; }
    .vs-badge { margin: 12px auto; }
    .nav-links, .nav-actions { display: none; }
    .menu-toggle { display: block; color: #ffffff; }
    
    .perspective-container { max-width: 320px; height: 460px; margin: 0 auto; }
    .phone-back-stats { display: none; }
    .phone-front-leads { right: 0; left: 0; margin: 0 auto; width: 260px; height: 480px; }
    .yellow-ambient-glow { right: 10%; width: 450px; height: 450px; }
    .footer-container { flex-direction: column; }
}
/* Fundo escuro que cobre o site inteiro */
.idioma-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Fundo preto transparente */
    backdrop-filter: blur(8px); /* Efeito borrado de fundo */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* Garante que fica na frente de tudo */
}

/* Caixa central do modal */
.idioma-modal-box {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.idioma-modal-box h3 {
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.idioma-modal-box p {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Alinhamento dos botões */
.idioma-botoes {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Estilo dos botões */
.btn-lang {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-lang:hover {
    background: #ffcc00;
    color: #000;
    border-color: #ffcc00;
    transform: translateY(-2px);
}
/* ==========================================================================
   AJUSTES MOBILE E COMPONENTES WATTENTIA)
   ========================================================================== */
html, body { 
    overflow-x: hidden; 
}

.navbar { 
    position: relative; 
    z-index: 1000; 
}

.menu-toggle {
    position: relative;
    z-index: 1002;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

@media (max-width: 768px) {
    .navbar {
        width: 100%;
        box-sizing: border-box;
        padding: 12px 16px;
        gap: 10px;
    }
    .navbar .logo {
        min-width: 0;
        flex: 1 1 auto;
        white-space: nowrap;
    }
    .nav-links {
        position: absolute !important;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        width: auto !important;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin: 0 !important;
        padding: 0 !important;
        background: rgba(10,10,10,.97);
        border: 1px solid rgba(255,204,0,.18);
        border-radius: 14px;
        box-shadow: 0 18px 45px rgba(0,0,0,.55);
        backdrop-filter: blur(18px);
        transition: max-height .28s ease, opacity .2s ease, transform .28s ease, padding .28s ease;
    }
    .nav-links.mobile-open {
        max-height: 420px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding: 8px !important;
    }
    .nav-links li { 
        width: 100%; 
        list-style: none; 
    }
    .nav-links a {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 13px 14px;
        border-radius: 10px;
    }
    .nav-links a:active,
    .nav-links a:hover { 
        background: rgba(255,204,0,.08); 
    }
    .lang-switcher-container {
        margin-left: 0 !important;
        flex: 0 0 auto;
    }
    .lang-select-dropdown {
        max-width: 72px;
        padding: 7px 6px !important;
        font-size: .78rem !important;
    }
    .menu-toggle {
        display: flex !important;
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 10px;
        background: rgba(255,255,255,.05);
        color: #fff;
    }
    .menu-toggle i { 
        font-size: 1.15rem; 
        pointer-events: none; 
    }

    .hero-container-split {
        padding: 105px 16px 55px !important;
    }
    .hero-text-side, .hero-mockups-side { 
        width: 100%; 
        min-width: 0; 
    }
    .hero-text-side h1 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.08;
    }
    .hero-desc { 
        font-size: .95rem; 
        line-height: 1.65; 
    }
    .btn-group-left, .btn-group-center {
        width: 100%;
        gap: 10px !important;
    }
    .btn-group-left > a, .btn-group-center > a {
        flex: 1 1 100%;
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
    .hero-mockups-side { 
        margin-top: 30px; 
    }
    .hero-mockups-side > div {
        max-width: 100% !important;
        padding: 13px !important;
        border-radius: 14px !important;
        box-sizing: border-box;
    }
    .hero-mockups-side > div > div:first-child {
        gap: 7px;
    }
    .hero-mockups-side > div > div:first-child > span:nth-child(2) {
        display: none;
    }
    .hero-mockups-side > div > div:nth-child(2) > div {
        grid-template-columns: 1fr !important;
    }
    .hero-mockups-side > div > div:nth-child(3) > div > div {
        display: block !important;
    }
    .hero-mockups-side > div > div:nth-child(3) > div > div span:last-child {
        display: block;
        margin-top: 2px;
    }
    .hero-mockups-side > div > div:last-child {
        gap: 10px;
        padding: 10px 12px !important;
    }
    .hero-mockups-side strong { 
        font-size: 1rem !important; 
    }

    .section-container {
        width: 100%;
        box-sizing: border-box;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .section-header h2 {
        font-size: clamp(1.65rem, 7vw, 2.2rem);
        line-height: 1.15;
    }
    .features-grid, .premium-tech-layout, .premium-dashboard-layout,
    .premium-analytics-layout, .comparativo-grid, .integracoes-logos,
    .depoimentos-grid, .fluxo-timeline {
        width: 100%;
        box-sizing: border-box;
    }
    .features-grid,
    .premium-tech-layout,
    .premium-dashboard-layout,
    .premium-analytics-layout,
    .depoimentos-grid {
        grid-template-columns: 1fr !important;
    }
    .comparativo-grid { 
        grid-template-columns: 1fr !important; 
    }
    .vs-badge { 
        margin: -8px auto; 
        z-index: 2; 
    }
    .integracoes-logos { 
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important; 
        gap: 10px !important; 
    }
    .int-logo { 
        min-width: 0; 
        padding: 14px 8px !important; 
        text-align: center; 
    }
    .int-logo span { 
        overflow-wrap: anywhere; 
        font-size: .82rem; 
    }
    .analytics-balance-row { 
        gap: 12px; 
    }
    .value-large { 
        font-size: clamp(2rem, 10vw, 3rem) !important; 
    }
    .economy-card, .cta-bottom-card { 
        width: 100%; 
        box-sizing: border-box; 
        padding: 26px 18px !important; 
    }
    .cta-actions { 
        flex-direction: column; 
        width: 100%; 
    }
    .cta-actions a { 
        width: 100%; 
        box-sizing: border-box; 
        justify-content: center; 
    }
    .cta-footer-badges { 
        flex-wrap: wrap; 
        gap: 12px !important; 
        justify-content: center; 
    }
    .footer-container { 
        padding-left: 16px; 
        padding-right: 16px; 
    }
    .footer-columns-wrapper { 
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important; 
        gap: 24px 16px; 
    }
}

@media (max-width: 420px) {
    .navbar { padding-left: 12px; padding-right: 12px; }
    .logo-icon { width: 32px; height: 32px; }
    .hero-container-split { padding-left: 12px !important; padding-right: 12px !important; }
    .section-container { padding-left: 12px !important; padding-right: 12px !important; }
    .integracoes-logos { grid-template-columns: 1fr 1fr !important; }
    .footer-columns-wrapper { grid-template-columns: 1fr 1fr !important; }
}

@media (min-width: 769px) {
    .menu-toggle { display: none !important; }
}
/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
   
.faq-container {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .faq-item {
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .faq-item:hover {
            border-color: rgba(255, 204, 0, 0.3);
            background: rgba(255, 204, 0, 0.01);
        }
        .faq-item.active {
            border-color: rgba(255, 204, 0, 0.5);
            background: rgba(255, 204, 0, 0.02);
            box-shadow: 0 0 30px rgba(255, 204, 0, 0.05);
        }
        .faq-question {
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            user-select: none;
        }
        .faq-question h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #fff;
            margin: 0;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }
        .faq-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            background: #ffcc00;
            color: #000;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .faq-answer-content {
            padding: 0 24px 24px 24px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 1rem;
        }
        .faq-item.active .faq-answer {
            max-height: 500px;
        }

/* ===== AJUSTES MOBILE WATTENTIA — ===== */
html, body { overflow-x: hidden; }
.navbar { position: relative; z-index: 1000; }
.menu-toggle {
    position: relative;
    z-index: 1002;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
@media (max-width: 768px) {
    .navbar {
        width: 100%;
        box-sizing: border-box;
        padding: 12px 16px;
        gap: 10px;
    }
    .navbar .logo {
        min-width: 0;
        flex: 1 1 auto;
        white-space: nowrap;
    }
    .nav-links {
        position: absolute !important;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        width: auto !important;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin: 0 !important;
        padding: 0 !important;
        background: rgba(10,10,10,.97);
        border: 1px solid rgba(255,204,0,.18);
        border-radius: 14px;
        box-shadow: 0 18px 45px rgba(0,0,0,.55);
        backdrop-filter: blur(18px);
        transition: max-height .28s ease, opacity .2s ease, transform .28s ease, padding .28s ease;
    }
    .nav-links.mobile-open {
        max-height: 420px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding: 8px !important;
    }
    .nav-links li { width: 100%; list-style: none; }
    .nav-links a {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 13px 14px;
        border-radius: 10px;
    }
    .nav-links a:active,
    .nav-links a:hover { background: rgba(255,204,0,.08); }
    .lang-switcher-container {
        margin-left: 0 !important;
        flex: 0 0 auto;
    }
    .lang-select-dropdown {
        max-width: 72px;
        padding: 7px 6px !important;
        font-size: .78rem !important;
    }
    .menu-toggle {
        display: flex !important;
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 10px;
        background: rgba(255,255,255,.05);
        color: #fff;
    }
    .menu-toggle i { font-size: 1.15rem; pointer-events: none; }

    .hero-container-split {
        padding: 105px 16px 55px !important;
    }
    .hero-text-side, .hero-mockups-side { width: 100%; min-width: 0; }
    .hero-text-side h1 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.08;
    }
    .hero-desc { font-size: .95rem; line-height: 1.65; }
    .btn-group-left, .btn-group-center {
        width: 100%;
        gap: 10px !important;
    }
    .btn-group-left > a, .btn-group-center > a {
        flex: 1 1 100%;
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
    .hero-mockups-side { margin-top: 30px; }
    .hero-mockups-side > div {
        max-width: 100% !important;
        padding: 13px !important;
        border-radius: 14px !important;
        box-sizing: border-box;
    }
    .hero-mockups-side > div > div:first-child {
        gap: 7px;
    }
    .hero-mockups-side > div > div:first-child > span:nth-child(2) {
        display: none;
    }
    .hero-mockups-side > div > div:nth-child(2) > div {
        grid-template-columns: 1fr !important;
    }
    .hero-mockups-side > div > div:nth-child(3) > div > div {
        display: block !important;
    }
    .hero-mockups-side > div > div:nth-child(3) > div > div span:last-child {
        display: block;
        margin-top: 2px;
    }
    .hero-mockups-side > div > div:last-child {
        gap: 10px;
        padding: 10px 12px !important;
    }
    .hero-mockups-side strong { font-size: 1rem !important; }

    .section-container {
        width: 100%;
        box-sizing: border-box;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .section-header h2 {
        font-size: clamp(1.65rem, 7vw, 2.2rem);
        line-height: 1.15;
    }
    .features-grid, .premium-tech-layout, .premium-dashboard-layout,
    .premium-analytics-layout, .comparativo-grid, .integracoes-logos,
    .depoimentos-grid, .fluxo-timeline {
        width: 100%;
        box-sizing: border-box;
    }
    .features-grid,
    .premium-tech-layout,
    .premium-dashboard-layout,
    .premium-analytics-layout,
    .depoimentos-grid {
        grid-template-columns: 1fr !important;
    }
    .comparativo-grid { grid-template-columns: 1fr !important; }
    .vs-badge { margin: -8px auto; z-index: 2; }
    .integracoes-logos { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px !important; }
    .int-logo { min-width: 0; padding: 14px 8px !important; text-align: center; }
    .int-logo span { overflow-wrap: anywhere; font-size: .82rem; }
    .analytics-balance-row { gap: 12px; }
    .value-large { font-size: clamp(2rem, 10vw, 3rem) !important; }
    .economy-card, .cta-bottom-card { width: 100%; box-sizing: border-box; padding: 26px 18px !important; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions a { width: 100%; box-sizing: border-box; justify-content: center; }
    .cta-footer-badges { flex-wrap: wrap; gap: 12px !important; justify-content: center; }
    .footer-container { padding-left: 16px; padding-right: 16px; }
    .footer-columns-wrapper { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 24px 16px; }
}
@media (max-width: 420px) {
    .navbar { padding-left: 12px; padding-right: 12px; }
    .logo-icon { width: 32px; height: 32px; }
    .hero-container-split { padding-left: 12px !important; padding-right: 12px !important; }
    .section-container { padding-left: 12px !important; padding-right: 12px !important; }
    .integracoes-logos { grid-template-columns: 1fr 1fr !important; }
    .footer-columns-wrapper { grid-template-columns: 1fr 1fr !important; }
}
@media (min-width: 769px) {
    .menu-toggle { display: none !important; }
}
.contact-input {
            width: 100%;
            padding: 16px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .contact-input:focus {
            border-color: #ffcc00;
        }
        .contact-label {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 8px;
            font-weight: 500;
        }

/* ===== AJUSTES MOBILE WATTENTIA — adicionados sem remover o CSS existente ===== */
html, body { overflow-x: hidden; }
.navbar { position: relative; z-index: 1000; }
.menu-toggle {
    position: relative;
    z-index: 1002;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
@media (max-width: 768px) {
    .navbar {
        width: 100%;
        box-sizing: border-box;
        padding: 12px 16px;
        gap: 10px;
    }
    .navbar .logo {
        min-width: 0;
        flex: 1 1 auto;
        white-space: nowrap;
    }
    .nav-links {
        position: absolute !important;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        width: auto !important;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin: 0 !important;
        padding: 0 !important;
        background: rgba(10,10,10,.97);
        border: 1px solid rgba(255,204,0,.18);
        border-radius: 14px;
        box-shadow: 0 18px 45px rgba(0,0,0,.55);
        backdrop-filter: blur(18px);
        transition: max-height .28s ease, opacity .2s ease, transform .28s ease, padding .28s ease;
    }
    .nav-links.mobile-open {
        max-height: 420px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding: 8px !important;
    }
    .nav-links li { width: 100%; list-style: none; }
    .nav-links a {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 13px 14px;
        border-radius: 10px;
    }
    .nav-links a:active,
    .nav-links a:hover { background: rgba(255,204,0,.08); }
    .lang-switcher-container {
        margin-left: 0 !important;
        flex: 0 0 auto;
    }
    .lang-select-dropdown {
        max-width: 72px;
        padding: 7px 6px !important;
        font-size: .78rem !important;
    }
    .menu-toggle {
        display: flex !important;
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 10px;
        background: rgba(255,255,255,.05);
        color: #fff;
    }
    .menu-toggle i { font-size: 1.15rem; pointer-events: none; }

    .hero-container-split {
        padding: 105px 16px 55px !important;
    }
    .hero-text-side, .hero-mockups-side { width: 100%; min-width: 0; }
    .hero-text-side h1 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.08;
    }
    .hero-desc { font-size: .95rem; line-height: 1.65; }
    .btn-group-left, .btn-group-center {
        width: 100%;
        gap: 10px !important;
    }
    .btn-group-left > a, .btn-group-center > a {
        flex: 1 1 100%;
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
    .hero-mockups-side { margin-top: 30px; }
    .hero-mockups-side > div {
        max-width: 100% !important;
        padding: 13px !important;
        border-radius: 14px !important;
        box-sizing: border-box;
    }
    .hero-mockups-side > div > div:first-child {
        gap: 7px;
    }
    .hero-mockups-side > div > div:first-child > span:nth-child(2) {
        display: none;
    }
    .hero-mockups-side > div > div:nth-child(2) > div {
        grid-template-columns: 1fr !important;
    }
    .hero-mockups-side > div > div:nth-child(3) > div > div {
        display: block !important;
    }
    .hero-mockups-side > div > div:nth-child(3) > div > div span:last-child {
        display: block;
        margin-top: 2px;
    }
    .hero-mockups-side > div > div:last-child {
        gap: 10px;
        padding: 10px 12px !important;
    }
    .hero-mockups-side strong { font-size: 1rem !important; }

    .section-container {
        width: 100%;
        box-sizing: border-box;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .section-header h2 {
        font-size: clamp(1.65rem, 7vw, 2.2rem);
        line-height: 1.15;
    }
    .features-grid, .premium-tech-layout, .premium-dashboard-layout,
    .premium-analytics-layout, .comparativo-grid, .integracoes-logos,
    .depoimentos-grid, .fluxo-timeline {
        width: 100%;
        box-sizing: border-box;
    }
    .features-grid,
    .premium-tech-layout,
    .premium-dashboard-layout,
    .premium-analytics-layout,
    .depoimentos-grid {
        grid-template-columns: 1fr !important;
    }
    .comparativo-grid { grid-template-columns: 1fr !important; }
    .vs-badge { margin: -8px auto; z-index: 2; }
    .integracoes-logos { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px !important; }
    .int-logo { min-width: 0; padding: 14px 8px !important; text-align: center; }
    .int-logo span { overflow-wrap: anywhere; font-size: .82rem; }
    .analytics-balance-row { gap: 12px; }
    .value-large { font-size: clamp(2rem, 10vw, 3rem) !important; }
    .economy-card, .cta-bottom-card { width: 100%; box-sizing: border-box; padding: 26px 18px !important; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions a { width: 100%; box-sizing: border-box; justify-content: center; }
    .cta-footer-badges { flex-wrap: wrap; gap: 12px !important; justify-content: center; }
    .footer-container { padding-left: 16px; padding-right: 16px; }
    .footer-columns-wrapper { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 24px 16px; }
}
@media (max-width: 420px) {
    .navbar { padding-left: 12px; padding-right: 12px; }
    .logo-icon { width: 32px; height: 32px; }
    .hero-container-split { padding-left: 12px !important; padding-right: 12px !important; }
    .section-container { padding-left: 12px !important; padding-right: 12px !important; }
    .integracoes-logos { grid-template-columns: 1fr 1fr !important; }
    .footer-columns-wrapper { grid-template-columns: 1fr 1fr !important; }
}
@media (min-width: 769px) {
    .menu-toggle { display: none !important; }
}

.__inline-style-1 {
    background: #000; color: #fff;
}

.__inline-style-2 {
    display: flex; align-items: center; margin-left: 15px;
}

.__inline-style-3 {
    background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.2); padding: 6px 10px; border-radius: 8px; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 0.85rem;
}

.__inline-style-4 {
    background: #111; color: #fff;
}

.__inline-style-5 {
    background: #111; color: #fff;
}

.__inline-style-6 {
    min-height: auto; padding-top: 140px; padding-bottom: 20px;
}

.__inline-style-7 {
    max-width: 100%; flex: 1; text-align: center; margin: 0 auto;
}

.__inline-style-8 {
    font-size: 3.8rem; letter-spacing: -0.04em;
}

.__inline-style-9 {
    margin: 20px auto 0 auto; max-width: 600px; color: rgba(255,255,255,0.7); font-size: 1.15rem;
}

.__inline-style-10 {
    padding-top: 40px; padding-bottom: 100px;
}

.__inline-style-11 {
    display: flex; flex-wrap: wrap; gap: 50px; justify-content: center; align-items: flex-start;
}

.__inline-style-12 {
    flex: 1; min-width: 300px; max-width: 400px; display: flex; flex-direction: column; gap: 30px;
}

.__inline-style-13 {
    padding: 32px; border-radius: 20px; background: rgba(255,255,255,0.01); border: 1px solid rgba(255,255,255,0.05);
}

.__inline-style-14 {
    color: #ffcc00; font-size: 1.5rem; margin-bottom: 16px;
}

.__inline-style-15 {
    color: #fff; font-size: 1.25rem; margin-bottom: 8px; font-family: 'Plus Jakarta Sans', sans-serif;
}

.__inline-style-16 {
    color: rgba(255,255,255,0.5); font-size: 0.95rem; margin-bottom: 12px;
}

.__inline-style-17 {
    color: #ffcc00; text-decoration: none; font-weight: 600; font-size: 1rem;
}

.__inline-style-18 {
    padding: 32px; border-radius: 20px; background: rgba(255,255,255,0.01); border: 1px solid rgba(255,255,255,0.05);
}

.__inline-style-19 {
    color: #25D366; font-size: 1.6rem; margin-bottom: 16px;
}

.__inline-style-20 {
    color: #fff; font-size: 1.25rem; margin-bottom: 8px; font-family: 'Plus Jakarta Sans', sans-serif;
}

.__inline-style-21 {
    color: rgba(255,255,255,0.5); font-size: 0.95rem; margin-bottom: 12px;
}

.__inline-style-22 {
    color: #32bea6; text-decoration: none; font-weight: 600; font-size: 1rem;
}

.__inline-style-23 {
    flex: 1.5; min-width: 320px; max-width: 550px; padding: 40px; border-radius: 24px; background: rgba(255,255,255,0.01); border: 1px solid rgba(255,255,255,0.05);
}

.__inline-style-24 {
    color: #fff; font-size: 1.5rem; font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 24px;
}

.__inline-style-25 {
    display: flex; flex-direction: column; gap: 20px;
}

.__inline-style-26 {
    resize: none;
}

.__inline-style-27 {
    padding: 16px; border: none; border-radius: 50px; font-weight: 700; font-size: 1rem; cursor: pointer; text-align: center; margin-top: 10px;
}

.__inline-style-28 {
    margin-right: 8px;
}
/*
============================================================
WATTENTIA — CSS DO INDEX
Arquivo: styles/index.css
Origem: index.html

IMPORTANTE:
- Todo o CSS visual do index.html está neste arquivo.
- O HTML não possui mais <style> nem style="...".
- Não remover as regras abaixo sem verificar o index.html.
============================================================
*/

/* ===== AJUSTES MOBILE WATTENTIA — adicionados sem remover o CSS existente ===== */
html, body { overflow-x: hidden; }
.navbar { position: relative; z-index: 1000; }
.menu-toggle {
    position: relative;
    z-index: 1002;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
@media (max-width: 768px) {
    .navbar {
        width: 100%;
        box-sizing: border-box;
        padding: 12px 16px;
        gap: 10px;
    }
    .navbar .logo {
        min-width: 0;
        flex: 1 1 auto;
        white-space: nowrap;
    }
    .nav-links {
        position: absolute !important;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        width: auto !important;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin: 0 !important;
        padding: 0 !important;
        background: rgba(10,10,10,.97);
        border: 1px solid rgba(255,204,0,.18);
        border-radius: 14px;
        box-shadow: 0 18px 45px rgba(0,0,0,.55);
        backdrop-filter: blur(18px);
        transition: max-height .28s ease, opacity .2s ease, transform .28s ease, padding .28s ease;
    }
    .nav-links.mobile-open {
        max-height: 420px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding: 8px !important;
    }
    .nav-links li { width: 100%; list-style: none; }
    .nav-links a {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 13px 14px;
        border-radius: 10px;
    }
    .nav-links a:active,
    .nav-links a:hover { background: rgba(255,204,0,.08); }
    .lang-switcher-container {
        margin-left: 0 !important;
        flex: 0 0 auto;
    }
    .lang-select-dropdown {
        max-width: 72px;
        padding: 7px 6px !important;
        font-size: .78rem !important;
    }
    .menu-toggle {
        display: flex !important;
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 10px;
        background: rgba(255,255,255,.05);
        color: #fff;
    }
    .menu-toggle i { font-size: 1.15rem; pointer-events: none; }

    .hero-container-split {
        padding: 105px 16px 55px !important;
    }
    .hero-text-side, .hero-mockups-side { width: 100%; min-width: 0; }
    .hero-text-side h1 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.08;
    }
    .hero-desc { font-size: .95rem; line-height: 1.65; }
    .btn-group-left, .btn-group-center {
        width: 100%;
        gap: 10px !important;
    }
    .btn-group-left > a, .btn-group-center > a {
        flex: 1 1 100%;
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
    .hero-mockups-side { margin-top: 30px; }
    .hero-mockups-side > div {
        max-width: 100% !important;
        padding: 13px !important;
        border-radius: 14px !important;
        box-sizing: border-box;
    }
    .hero-mockups-side > div > div:first-child {
        gap: 7px;
    }
    .hero-mockups-side > div > div:first-child > span:nth-child(2) {
        display: none;
    }
    .hero-mockups-side > div > div:nth-child(2) > div {
        grid-template-columns: 1fr !important;
    }
    .hero-mockups-side > div > div:nth-child(3) > div > div {
        display: block !important;
    }
    .hero-mockups-side > div > div:nth-child(3) > div > div span:last-child {
        display: block;
        margin-top: 2px;
    }
    .hero-mockups-side > div > div:last-child {
        gap: 10px;
        padding: 10px 12px !important;
    }
    .hero-mockups-side strong { font-size: 1rem !important; }

    .section-container {
        width: 100%;
        box-sizing: border-box;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .section-header h2 {
        font-size: clamp(1.65rem, 7vw, 2.2rem);
        line-height: 1.15;
    }
    .features-grid, .premium-tech-layout, .premium-dashboard-layout,
    .premium-analytics-layout, .comparativo-grid, .integracoes-logos,
    .depoimentos-grid, .fluxo-timeline {
        width: 100%;
        box-sizing: border-box;
    }
    .features-grid,
    .premium-tech-layout,
    .premium-dashboard-layout,
    .premium-analytics-layout,
    .depoimentos-grid {
        grid-template-columns: 1fr !important;
    }
    .comparativo-grid { grid-template-columns: 1fr !important; }
    .vs-badge { margin: -8px auto; z-index: 2; }
    .integracoes-logos { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px !important; }
    .int-logo { min-width: 0; padding: 14px 8px !important; text-align: center; }
    .int-logo span { overflow-wrap: anywhere; font-size: .82rem; }
    .analytics-balance-row { gap: 12px; }
    .value-large { font-size: clamp(2rem, 10vw, 3rem) !important; }
    .economy-card, .cta-bottom-card { width: 100%; box-sizing: border-box; padding: 26px 18px !important; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions a { width: 100%; box-sizing: border-box; justify-content: center; }
    .cta-footer-badges { flex-wrap: wrap; gap: 12px !important; justify-content: center; }
    .footer-container { padding-left: 16px; padding-right: 16px; }
    .footer-columns-wrapper { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 24px 16px; }
}
@media (max-width: 420px) {
    .navbar { padding-left: 12px; padding-right: 12px; }
    .logo-icon { width: 32px; height: 32px; }
    .hero-container-split { padding-left: 12px !important; padding-right: 12px !important; }
    .section-container { padding-left: 12px !important; padding-right: 12px !important; }
    .integracoes-logos { grid-template-columns: 1fr 1fr !important; }
    .footer-columns-wrapper { grid-template-columns: 1fr 1fr !important; }
}
@media (min-width: 769px) {
    .menu-toggle { display: none !important; }
}

/* ==========================================================
   CSS DO INDEX.HTML
   Este bloco foi extraído do <style> original do index.html.
   ========================================================== */

/* ==========================================================
   CSS DOS ELEMENTOS INLINE DO INDEX.HTML
   As classes abaixo substituem os antigos style="..." do HTML.
   ========================================================== */

.idx-style-1 {
    display: flex; align-items: center; margin-left: 15px;
}

.idx-style-2 {
    background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.2); padding: 6px 10px; border-radius: 8px; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 0.85rem;
}

.idx-style-3 {
    background: #111; color: #fff;
}

.idx-style-4 {
    background: #111; color: #fff;
}

.idx-style-5 {
    padding-top: 130px; padding-bottom: 80px;
}

.idx-style-6 {
    display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px;
}

.idx-style-7 {
    display: inline-flex; align-items: center; gap: 12px; background: #0a0a0a; border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 10px 20px; text-decoration: none; color: #fff; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.idx-style-8 {
    width: 24px; height: 24px;
}

.idx-style-9 {
    text-align: left; line-height: 1.2;
}

.idx-style-10 {
    font-size: 0.65rem; color: rgba(255,255,255,0.6); display: block; text-transform: uppercase; font-family: 'Inter', sans-serif;
}

.idx-style-11 {
    font-size: 0.95rem; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif;
}

.idx-style-12 {
    display: inline-flex; align-items: center; gap: 12px; background: #0a0a0a; border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 10px 20px; text-decoration: none; color: #fff; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.idx-style-13 {
    font-size: 1.7rem; color: #C0C0C0;
}

.idx-style-14 {
    text-align: left; line-height: 1.2;
}

.idx-style-15 {
    font-size: 0.65rem; color: rgba(255,255,255,0.6); display: block; text-transform: uppercase; font-family: 'Inter', sans-serif;
}

.idx-style-16 {
    font-size: 0.95rem; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif;
}

.idx-style-17 {
    display: flex; justify-content: center; align-items: center;
}

.idx-style-18 {
    width: 100%; max-width: 580px; background: rgba(15, 15, 15, 0.95); border: 1px solid rgba(255, 204, 0, 0.25); border-radius: 18px; padding: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(255,204,0,0.08); backdrop-filter: blur(12px);
}

.idx-style-19 {
    display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 12px; margin-bottom: 16px;
}

.idx-style-20 {
    display: flex; gap: 8px;
}

.idx-style-21 {
    width: 10px; height: 10px; background: #ff5f56; border-radius: 50%; display: inline-block;
}

.idx-style-22 {
    width: 10px; height: 10px; background: #ffbd2e; border-radius: 50%; display: inline-block;
}

.idx-style-23 {
    width: 10px; height: 10px; background: #27c93f; border-radius: 50%; display: inline-block;
}

.idx-style-24 {
    font-size: 0.75rem; color: rgba(255,255,255,0.5); font-family: monospace;
}

.idx-style-25 {
    font-size: 0.75rem; color: #27c93f; display: flex; align-items: center; gap: 5px; font-weight: 600;
}

.idx-style-26 {
    font-size: 0.5rem;
}

.idx-style-27 {
    margin-bottom: 18px;
}

.idx-style-28 {
    font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; font-weight: 700; letter-spacing: 0.05em; display: block; margin-bottom: 10px;
}

.idx-style-29 {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}

.idx-style-30 {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 10px 12px; border-radius: 10px; display: flex; align-items: center; gap: 10px;
}

.idx-style-31 {
    color: #ffcc00; font-size: 1.1rem;
}

.idx-style-32 {
    font-size: 0.85rem; color: #fff; display: block;
}

.idx-style-33 {
    font-size: 0.7rem; color: #27c93f;
}

.idx-style-34 {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 10px 12px; border-radius: 10px; display: flex; align-items: center; gap: 10px;
}

.idx-style-35 {
    color: #ffcc00; font-size: 1.1rem;
}

.idx-style-36 {
    font-size: 0.85rem; color: #fff; display: block;
}

.idx-style-37 {
    font-size: 0.7rem; color: #27c93f;
}

.idx-style-38 {
    background: #080808; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 14px; margin-bottom: 16px;
}

.idx-style-39 {
    font-size: 0.7rem; color: #ffcc00; font-family: monospace; font-weight: 700; display: block; margin-bottom: 8px;
}

.idx-style-40 {
    font-family: monospace; font-size: 0.75rem; color: rgba(255,255,255,0.8); line-height: 1.7;
}

.idx-style-41 {
    display: flex; justify-content: space-between;
}

.idx-style-42 {
    color: #27c93f;
}

.idx-style-43 {
    color: rgba(255,255,255,0.4);
}

.idx-style-44 {
    display: flex; justify-content: space-between;
}

.idx-style-45 {
    color: #ffcc00;
}

.idx-style-46 {
    color: rgba(255,255,255,0.4);
}

.idx-style-47 {
    display: flex; justify-content: space-between;
}

.idx-style-48 {
    color: #4285f4;
}

.idx-style-49 {
    color: rgba(255,255,255,0.4);
}

.idx-style-50 {
    display: flex; justify-content: space-between; align-items: center; background: rgba(255, 204, 0, 0.05); border: 1px solid rgba(255, 204, 0, 0.2); padding: 12px 16px; border-radius: 12px;
}

.idx-style-51 {
    font-size: 0.7rem; color: rgba(255,255,255,0.6); display: block;
}

.idx-style-52 {
    font-size: 1.2rem; color: #ffcc00; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif;
}

.idx-style-53 {
    text-align: right;
}

.idx-style-54 {
    font-size: 0.7rem; color: rgba(255,255,255,0.6); display: block;
}

.idx-style-55 {
    font-size: 1.2rem; color: #fff; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif;
}

.idx-style-56 {
    padding: 80px 20px;
}

.idx-style-57 {
    color: rgba(255,255,255,0.7); max-width: 600px; margin: 10px auto 0;
}

.idx-style-58 {
    text-align: center;
}

.idx-style-59 {
    margin: 0 auto 15px;
}

.idx-style-60 {
    color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.6;
}

.idx-style-61 {
    text-align: center;
}

.idx-style-62 {
    margin: 0 auto 15px;
}

.idx-style-63 {
    color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.6;
}

.idx-style-64 {
    text-align: center;
}

.idx-style-65 {
    margin: 0 auto 15px;
}

.idx-style-66 {
    color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.6;
}

.idx-style-67 {
    padding: 60px 20px;
}

.idx-style-68 {
    margin-bottom: 60px; gap: 24px;
}

.idx-style-69 {
    margin-top: 50px; margin-bottom: 40px;
}

.idx-style-70 {
    gap: 24px; margin-bottom: 50px;
}

.idx-style-71 {
    padding: 60px 20px 100px 20px; margin-top: 50px;
}

.idx-style-72 {
    margin-bottom: 40px;
}

.idx-style-73 {
    gap: 30px;
}

.idx-style-74 {
    width: 62%;
}

.idx-style-75 {
    width: 21%;
}

.idx-style-76 {
    width: 17%;
}

.idx-style-77 {
    color: #00b1ea;
}

.idx-style-78 {
    color: #4285f4;
}

.idx-style-79 {
    padding: 60px 20px 80px 20px;
}

.idx-style-80 {
    text-align: center;
}

.idx-style-81 {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 30px;
}

.idx-style-82 {
    display: inline-flex; align-items: center; gap: 12px; background: #0a0a0a; border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 12px 24px; text-decoration: none; color: #fff; transition: all 0.3s ease; box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.idx-style-83 {
    width: 26px; height: 26px;
}

.idx-style-84 {
    text-align: left; line-height: 1.2;
}

.idx-style-85 {
    font-size: 0.7rem; color: rgba(255,255,255,0.6); display: block; text-transform: uppercase;
}

.idx-style-86 {
    font-size: 1.05rem; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif;
}

.idx-style-87 {
    display: inline-flex; align-items: center; gap: 12px; background: #0a0a0a; border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 12px 24px; text-decoration: none; color: #fff; transition: all 0.3s ease; box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.idx-style-88 {
    font-size: 2rem; color: #C0C0C0;
}

.idx-style-89 {
    text-align: left; line-height: 1.2;
}

.idx-style-90 {
    font-size: 0.7rem; color: rgba(255,255,255,0.6); display: block; text-transform: uppercase;
}

.idx-style-91 {
    font-size: 1.05rem; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif;
}

.idx-style-92 {
    margin-top: 80px;
}
