/* ==========================================================================
   CONFIGURAÇÕES GERAIS E VARIÁVEIS DE COR
   ========================================================================== */
:root {
    --systec-purple-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --systec-btn-grad: linear-gradient(90deg, #4e54c8 0%, #8f94fb 100%);
    --systec-text-dark: #1e272e;
    --systec-muted: #808e9b;
    --systec-purple-main: #6c5ce7; 
    --systec-purple-dark: #3c1361;
    --systec-bg-light: #f9f9fc;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: var(--systec-text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ==========================================================================
   BARRA DE NAVEGAÇÃO (NAVBAR)
   ========================================================================== */
.navbar {
    background-color: #ffffff !important; /* Garante que o fundo seja branco opaco */
    padding-top: 15px;
    padding-bottom: 15px;
    z-index: 1030; /* Garante que o menu fique por cima de absolutamente tudo */
}

.navbar-brand img {
    height: 42px;
    width: auto;
}

.nav-link {
    color: #000000 !important;
    font-size: 0.95rem;
    font-weight: 500;
    margin-left: 12px;
    margin-right: 12px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #4e54c8 !important;
}

/* Botão Superior Direito "Fale Conosco" */
.btn-fale-conosco {
    background: linear-gradient(90deg, #3c40c6 0%, #575fcf 100%);
    border: none;
    color: white !important;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    padding: 10px 28px;
    box-shadow: 0 4px 15px rgba(60, 64, 198, 0.2);
    transition: all 0.3s ease;
}

.btn-fale-conosco:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(60, 64, 198, 0.3);
}

/* ==========================================================================
   PRIMEIRA DOBRA (HERO SECTION)
   ========================================================================== */
.hero-section {
    /* Adicionamos um padding-top maior (de 140px) para compensar a altura do menu fixo */
    padding-top: 140px; 
    padding-bottom: 80px;
    background-image: radial-gradient(circle at 90% 10%, rgba(239, 239, 253, 0.5) 0%, rgba(255, 255, 255, 0) 50%);
}

/* Tag pequenininha com a estrela acima do título */
.hero-badge {
    background-color: #f1f1fa;
    color: #575fcf;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 25px;
}

.hero-badge i { 
    color: #ffa502; 
}

/* Título de Destaque */
.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.text-purple-brand { 
    color: #575fcf; 
}

.text-dark-brand { 
    color: #1e272e; 
}

/* Parágrafo descritivo */
.hero-description {
    font-size: 1.05rem;
    color: #57606f;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 520px;
}

/* Botão Chamativo "Começar Agora" */
.btn-comecar {
    background: linear-gradient(90deg, #3c40c6 0%, #575fcf 100%);
    border: none;
    color: white !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    padding: 15px 35px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(60, 64, 198, 0.25);
    transition: all 0.3s ease;
}

.btn-comecar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(60, 64, 198, 0.35);
}

/* Botão Outline "Ver Demonstração" */
.btn-demo {
    border: 2px solid #dcdde1;
    color: #2f3640;
    background: transparent;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    padding: 13px 32px;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    border-color: #575fcf;
    color: #575fcf;
    background-color: rgba(87, 95, 207, 0.02);
}

/* Grid numérico (1000+, 24/7, etc) */
.stats-grid {
    margin-top: 50px;
    border-top: 1px solid #f1f2f6;
    padding-top: 30px;
    max-width: 450px;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #3c40c6;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.85rem;
    color: #747d8c;
    font-weight: 500;
}

/* Moldura branca premium ao redor da foto do PDV */
.hero-image-wrapper {
    background: #ffffff;
    padding: 16px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    display: block;
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover { 
    transform: translateY(-3px); 
}

.hero-image-real {
    border-radius: 20px;
    width: 100%;
    height: auto;
    display: block;
}