/* Estilos Globais */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Estilos de Cabeçalho */
header {
    background-color: #343a40;
    color: #fff;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.navbar-nav .nav-link {
    color: #fff;
    padding: 0.8rem;
}

.navbar-nav .nav-link:hover {
    color: #ffc107;
}

/* Hero Section (Página Inicial) */
.hero {
    background-color: #000000;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero .btn {
    padding: 10px 20px;
    font-size: 1.1rem;
}

/* Seções de Serviços */
.services {
    margin-top: 50px;
}

.services h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

.services .col-md-4 {
    text-align: center;
    margin-bottom: 20px;
}

.services h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Estilos de Formulários */
form .form-group {
    margin-bottom: 20px;
}

form .btn {
    background-color: #007bff;
    color: #fff;
    border: none;
}

form .btn:hover {
    background-color: #0056b3;
}

/* Seção de Portfólio */
.portfolio img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.portfolio h2 {
    font-size: 1.5rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Rodapé */
footer {
    background-color: #343a40;
    color: #fff;
    padding: 20px 0;
}

footer p, footer a {
    color: #fff;
    margin: 0;
}

footer a:hover {
    color: #ffc107;
}

/* Ajustes para Dispositivos Móveis */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .navbar-nav {
        text-align: center;
    }

    .services .col-md-4 {
        margin-bottom: 30px;
    }
}
