* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fff;
    color: #333;
}

header {
    background-color: #1E3A5F; /* Azul escuro */
    color: white;
    padding: 15px 0;
    text-align: center;
}

.logo img {
    max-width: 150px;
    height: auto;
}

.contact-info p {
    margin: 5px 0;
}

.hero {
    position: relative;
    background-image: url('banner.jpg'); /* Substituir pela imagem de fundo */
    background-size: cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Sombra transparente */
}

.hero-content {
    color: white;
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
}

.hero p {
    font-size: 24px;
}

.services {
    padding: 50px 0;
    background-color: #f4f4f4;
}

.services h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #1E3A5F;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-item {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-item h3 {
    font-size: 24px;
    color: #1E3A5F;
    margin-bottom: 15px;
}

.gallery {
    padding: 50px 0;
    background-color: #fff;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #1E3A5F;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #1E3A5F;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

footer p {
    font-size: 14px;
}
