/* Variáveis Globais */
:root {
    --primary-color: #0d6efd; /* Azul padrão Bootstrap para consistência */
    --primary-dark: #0056b3;
    --bg-light: #f9f9f9;
    --dark-bg: #1a1a1a;
}

/* Configurações Base */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}
/* Transição suave para a navbar */
.transition-all {
    transition: all 0.3s ease-in-out;
    padding-top: 20px;
    padding-bottom: 20px;
}

.logo-img {
    height: 60px;
    transition: all 0.3s ease-in-out;
}
.navbar-scrolled {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.navbar-scrolled .logo-img {
    height: 40px;
}
@media (max-width: 576px) {
    .btn-nav {
        font-size: 10px;
        padding: 5px 10px;
    }
}

/* Navegação */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #eee;
}

.navbar-brand {
    letter-spacing: -1px;
}

/* Seção Hero */
.hero-section {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, rgba(13, 110, 253, 0.05), transparent);
}

/* Títulos de Seção */
.section-title {
    font-weight: 800;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
}

/* Cards de Processo e Serviços */
.step-card, .card-service {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    height: 100%;
    transition: 0.3s;
    border: 1px solid #eee;
    position: relative;
}

.step-card:hover, .card-service:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* Números do Processo */
.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(13, 110, 253, 0.1);
    position: absolute;
    top: -5px;
    left: 20px;
}

/* Estilização dos Planos (Seção Escura) */
.bg-dark {
    background-color: var(--dark-bg) !important;
}

.card.bg-secondary {
    background-color: #2c2c2c !important;
    border: 1px solid #444;
}

/* Botões e Badges */
[class*="btn-"]{
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.bg-soft-primary {
    background-color: rgba(13, 110, 253, 0.1);
}

.tech-badge {
    background: #eee;
    color: #555;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin: 5px;
    display: inline-block;
}

/* Footer */
footer {
    background: #fff;
}