body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
    color: #1a1a1a;
}
body {
    padding-top: 100px; /* Ajuste conforme a altura real do seu header */
}
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}
.navbar-brand img {
    height: 80px;
}
.navbar .nav-link {
    color: #0077b6 !important; /* Azul da logo */
    font-weight: 600;
}
.hero {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    height: 100vh;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
}
.hero p {
    font-size: 1.2rem;
}
.btn-primary {
    background-color: #0077b6;
    border: none;
}
.btn-primary:hover {
    background-color: #005f91;
}
.product-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-card img {
    height: 64px;
}
#sobre {
    background-color: #f0f2f5;
}
.footer {
    font-size: 0.95rem;
    background-color: #1a1a1a;
    color: #ccc;
}

.footer p {
    margin: 0.3rem 0;
}
