/* --- CONFIGURAÇÃO DA SEÇÃO HERO --- */
.hero {
    position: relative;
    background-color: #050505;
    overflow: hidden;
    min-height: 95vh;
    display: flex;
    align-items: center;
}

/* LUZ CENTRALIZADA POTENCIALIZADA */
.main-glow {
position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.3) 0%, rgba(147, 51, 234, 0.1) 40%, transparent 70%);
    filter: blur(80px);
    z-index: 0; /* Fica atrás do conteúdo (que deve ter z-index maior ou ser relativo) */
    mix-blend-mode: screen;
    animation: pulseGlow 8s infinite ease-in-out;
    pointer-events: none; /* Garante que você consiga clicar nos botões */
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.1); }
}

/* CONTAINER 50/50 */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    gap: 40px;
}

.hero-text, .hero-visual {
    flex: 1;
}

/* --- ESTILO DO TEXTO (ESQUERDA) --- */
.badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(168, 85, 247, 0.5);
    border-radius: 50px;
    color: #a855f7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    background: rgba(168, 85, 247, 0.1);
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    color: #fff;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(90deg, #ffffff 0%, #a855f7 50%, #7000ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- JANELA DE VIDRO (GLASS CARD) --- */
.glass-card {
    position: relative;
    width: 500px;
    height: 500px;
    background: rgba(15, 15, 15, 0.7); 
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* ÍCONE CENTRAL (QUADRADO ROXO) */
.syna-icon-container {
    width: 120px;
    height: 120px;
    background: linear-gradient(180deg, #6366f1 0%, #a855f7 100%);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 15px 45px rgba(112, 0, 255, 0.4);
}

.syna-icon svg {
    width: 60px;
    height: 60px;
}

/* NOME DA MARCA - ESTILO PREMIUM */
.syna-brand {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

/* PÍLULA DE STATUS COM CIANO (BALÃOZINHO) */
.status-pill {
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #a200ff; /* Ponto roxo da imagem */
    border-radius: 50%;
    box-shadow: 0 0 15px #a200ff, 0 0 30px rgba(0, 242, 255, 0.5); /* Glow intenso */
    animation: blink 2s infinite;
    flex-shrink: 0;         /* Impede o ponto de achatar */
}

.status-text {
    color: #9000a3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;    /* Impede que o texto quebre linha */
    text-transform: uppercase;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* WIDGETS FLUTUANTES */
.float-widget {
    position: absolute;
    background: rgba(15, 15, 15, 0.85); /* Fundo escuro das fotos */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(112, 0, 255, 0.2);
    border-radius: 14px;
    padding: 10px 15px;
    display: flex;         /* Torna a box um container flex */
    align-items: center;    /* Centraliza verticalmente */
    justify-content: center;/* Centraliza horizontalmente */
    min-width: 180px;      /* Garante espaço para a frase */
    z-index: 10;
}

.code-preview {
    width: 120px;
    height: 60px;
    top: 20%;
    left: -30px;
    animation: floating 4s infinite ease-in-out;
}

.speed-gauge {
    width: 100px;
    height: 100px;
    bottom: 13%;
    right: -50px;
    animation: floating 5s infinite ease-in-out reverse;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.xrcquinha{
    font-size: 13px;
}
