body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #e6e6e6;
    line-height: 1.6;
}

header {
    background-color: #000;
    padding: 1rem 0;
}

header nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

header nav a {
    color: #e6e6e6;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header nav a:hover {
    color: #d4af37;
}

main {
    padding: 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background-image: url('img/bg-home.png');
    background-size: cover;
    background-position: center;
    color: #e6e6e6;
}

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

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero .btn-primary {
    padding: 1rem 2rem;
    background-color: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.btn-primary {
    text-align: center;
    padding: 1rem 2rem;
    background-color: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.btn-primary:hover {
    background-color: #b38e30;
}

.hero .btn-primary:hover {
    background-color: #b38e30;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #000;
    color: #e6e6e6;
    margin-top: 2rem;
}

footer p {
    margin: 0;
}

section.about {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section.services {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


section img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section img.no-resize {
    width: auto;
    max-width: none;
    height: auto;
    box-shadow: none; /* Opcional: remove o box-shadow */
    border-radius: 0; /* Opcional: remove o arredondamento */
}


.contact {
    background: #2b2b2b;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact {
    background: #2b2b2b;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 2rem auto;
}

.contact h2 {
    text-align: center;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact label {
    font-weight: bold;
    color: #e6e6e6;
}

.contact input, .contact select, .contact textarea {
    background: #1a1a1a;
    color: #e6e6e6;
    border: 1px solid #555;
    padding: 0.8rem;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.contact input:focus, .contact select:focus, .contact textarea:focus {
    border-color: #d4af37;
}

.contact button {
    padding: 1rem;
    background-color: #d4af37;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact button:hover {
    background-color: #b38e30;
}
