/* Reset e configurações gerais */
body, h1, h2, h3, p, ul, li, a, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
body {
  background-color: #16202B;
  color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}


/* Header */
header {
  background: rgba(0, 0, 0, 0.7);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    height: 50px;
}

header nav a {
    margin-left: 20px;
    color: #fff;
    transition: color 0.3s;
}

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

/* Main - Página inicial */
.home-main {
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
}

.home-main .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Ajuste a opacidade se necessário */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.home-main .container {
    z-index: 1;
}

.home-main h1, .home-main h2 {
  margin-bottom: 15px;
  color: #ffd700;
  font-weight: bold;
}

.home-main p {
    margin-bottom: 30px;
    font-size: 1.2em;
    color: #fff;
}


/* Main - Sobre */
.sobre-main {
    padding: 50px 0;
}

.sobre-main h2, .sobre-main h3 {
  margin-bottom: 20px;
    color: #ffd700;
    font-weight: bold;
}
.sobre-main ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.sobre-main li {
    list-style: none;
    padding-bottom: 10px;
}

/* Main - Serviços */
.servicos-main {
    padding: 50px 0;
}

.servicos-main h2 {
  margin-bottom: 30px;
  color: #ffd700;
  font-weight: bold;
}


.servicos-main .servico {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.servicos-main .servico h3 {
  margin-bottom: 10px;
  color: #ffd700;
    font-weight: bold;
}

/* Main - Contato */
.contato-main {
    padding: 50px 0;
}

.contato-main h2 {
    margin-bottom: 20px;
    color: #ffd700;
    font-weight: bold;
}

.contato-main form {
    display: flex;
    flex-direction: column;
}

.contato-main label {
    margin-top: 10px;
    margin-bottom: 5px;
}

.contato-main input, .contato-main textarea {
    padding: 10px;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid #444;
    border-radius: 5px;
}

.contato-main input:focus, .contato-main textarea:focus {
    outline: none;
    border-color: #ffd700;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info a {
    color: #ffd700;
}

/* Button */
.button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ffd700;
  color: #16202B;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out;
}

.button:hover {
  background-color: #e6be0b;
}


/* Footer */
footer {
    text-align: center;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.7);
    color: #ddd;
}