/* --- ESTILO PERSONALIZADO WABP (COMPLETO) --- */

/* 1. Ajustes Globais e Layout */
html, body {
    height: 100%;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e293b;
    display: flex;
    flex-direction: column;
}

/* 2. Navbar Customizada (Fixa no topo) */
.navbar {
    padding: 1rem 0;
    background-color: #ffffff !important;
    border-bottom: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    position: fixed; /* Garante que ela não saia do topo */
    top: 0;
    width: 100%;
    z-index: 1030;
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #0f172a !important;
}

.navbar-brand span {
    color: #0d6efd;
}

.nav-link {
    color: #64748b !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: #0d6efd !important;
}

/* 3. Área Principal (O "Recheio") */
.main-content {
    flex: 1;
    width: 100%;
    /* 100px compensa a altura da navbar + respiro */
    padding-top: 40px; 
    display: flex;
    flex-direction: column;
}

/* Container para centralizar login e outras telas de form */
.auth-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    background-color: #f8fafc; /* Fundo levemente cinza para destacar o card */
}

/* 4. Estilos dos Cards Técnicos (Home) */
.card-tech {
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-tech:hover {
    border-color: #0d6efd;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(13, 110, 253, 0.05);
    color: #0d6efd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* 5. Utilidades e Botões */
.btn-primary {
    padding: 12px 28px;
    font-weight: 600;
}

.hover-white:hover {
    color: #fff !important;
    transition: color 0.3s ease;
}

/* Ajustes de tipografia na Home */
h1 {
    letter-spacing: -2px;
    line-height: 1.1;
}

.list-unstyled li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

/* --- FIM DO CSS --- */