@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* Reset e Estilos Gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  background: #d4a373;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  margin-top: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #c08c5a;
  transform: translateY(-3px);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: #333;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #d4a373;
  margin: 15px auto;
}

/* Cabeçalho */
header {
  background: rgb(0, 0, 0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 4px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  h2{
    color: #fff;
    font-family:'Libre Baskerville';
    font-size: 15px;
    margin-left: 30px;
  }
}

.logo img {
  width:100px;
  height: 100px;
  border: 1.1px #ddd solid;
  border-radius: 50%;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 600;
  transition: color 0.3s;
  color: #ddd;
}

nav ul li a:hover {
  color: #d4a373;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #333;
  padding: 10px;
}


@media (max-width: 850px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100vh;
    background: #212121ed;
    transition: all 0.3s ease;
    z-index: 1000;
    padding-top: 60px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    padding: 20px;
  }
  
  .nav-menu ul li {
    margin: 15px 0;
  }
}

/* Banner */
.banner {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("bannerFundo.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0 5%;
  margin-top: 70px;
}

.banner-content {
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.banner h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.banner p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Serviços */
.servicos {
  padding: 80px 5%;
  background: white;
}

.servicos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.servico-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.servico-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.servico-item i {
  font-size: 2.5rem;
  color: #d4a373;
  margin-bottom: 20px;
}

.servico-item h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Sobre */
.sobre {
  padding: 80px 5%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.sobre-content {
  flex: 1;
  min-width: 300px;
}

.sobre-img {
  flex: 1;
  min-width: 300px;
}

.sobre-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Galeria */
.galeria {
  padding: 80px 5%;
  background: #f9f9f9;
}

.galeria-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.galeria-item {
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.galeria-item:hover img {
  transform: scale(1.1);
}

/* Contato */
.contato {
  padding: 80px 5%;
  background: white;
}

.contato-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.contato-info,
.contato-form {
  flex: 1;
  min-width: 300px;
}

.contato-info p {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.contato-info i {
  margin-right: 10px;
  color: #d4a373;
}

.social-media {
  margin-top: 30px;
}

.social-media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f9f9f9;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
  
}

.social-media a:hover {
  background: #d4a373;
  color: white;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.contato-form textarea {
  height: 150px;
  resize: vertical;
}

/* Rodapé */
footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: white;
}

/* Responsivo */
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: white;
    transition: all 0.3s;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
  }

  nav ul li {
    margin: 15px 0;
  }

  .menu-toggle {
    display: block;
  }

  .banner h2 {
    font-size: 2.2rem;
  }
}

footer a {
color: #0099ff;
cursor: pointer;
text-decoration: underline;
}