/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background: #fff;
    color: #3c3a8c;
    padding: 20px 0;
}

header .logo img {
    height: 100px;
	
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

nav ul li {
    margin-left: 20px;
	
}

nav ul li a {
    color: #3c3a8c;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary {
    background: #ff6b6b;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.sobre, .servicos, .projetos, .contato {
    padding: 60px 0;
	top: 60px;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.servicos-grid, .projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.servico-item, .projeto-item {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.servico-item img, .projeto-item img {
    max-width: 100%;
    border-radius: 5px;
}

footer {
    background: #fff;
    color: black;
    padding: 40px 0;
    text-align: center;
}

footer .footer-info {
    margin-bottom: 20px;
}

footer .footer-social a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

footer .footer-copy {
    margin-top: 20px;
    font-size: 0.9rem;
}
