body {
    font-family: 'Volkswagen', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}
.navbar {
    background-color: #001e50;
}
.navbar-brand img {
    max-height: 50px;
}
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: bold;
}
.hero {
    background: url('../images/fundo_oficina.png') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adiciona um overlay escuro */
    backdrop-filter: blur(8px); /* Aplica o efeito de blur */
    z-index: 1;
}
.hero h1, .hero p {
    position: relative;
    z-index: 2; /* Garante que o texto fique acima do blur */
}
.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}
.hero p {
    font-size: 1.25rem;
}
.video-container {
    max-width: 800px;
    margin: 0 auto;
}
.btn-primary {
    background-color: #001e50;
    border: none;
}
.btn-primary:hover {
    background-color: #003580;
}
footer {
    background-color: #001e50;
    color: white;
}