/* =========================
   CONFIGURAÇÕES GERAIS
========================= */

body {
    background: #f5f7fb;
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================
   NAVBAR
========================= */

.logo-box {
    background: white;
    padding: 6px 12px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
}

.logo-img {
    height: 80px;
}


/* =========================
   HOME
========================= */

.home-title {
    font-weight: bold;
}

.home-subtitle {
    color: #6c757d;
}


/* =========================
   CARDS
========================= */

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-img-custom {
    height: 320px;
    object-fit: contain;
    padding: 20px;
}

.card {
    border: none;
}

.card-title {
    font-weight: bold;
}