/* Importando uma fonte moderna do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

/* Variáveis de Cores da Marca MAZZ */
:root {
    --primary-color: #0d3b66; /* Azul Escuro Profissional */
    --secondary-color: #198754; /* Verde (Sucesso/Aprovação) */
    --accent-color: #fafafa;
    --text-dark: #333333;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: var(--text-dark);
}

/* =========================================
   Barra de Navegação (Navbar)
   ========================================= */
.navbar {
    background-color: #ffffff !important;
    border-bottom: 4px solid var(--primary-color);
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}

.nav-link {
    color: #555555 !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* =========================================
   Botões Personalizados
   ========================================= */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #082644;
    border-color: #082644;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* =========================================
   Cartões (Cards)
   ========================================= */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    border: 1px solid #eef0f2 !important;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

/* =========================================
   Títulos e Textos
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

/* =========================================
   Hero Section (Banner Principal)
   ========================================= */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    color: white;
    padding: 100px 0;
}
.hero-section h1 {
    color: white; /* Garante que o título do banner fique branco */
}

/* =========================================
   Botão Flutuante WhatsApp
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    color: #FFF;
    transform: scale(1.1);
}

/* Ajuste para celular */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}
