@charset "UTF-8";
/* CSS Document */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.entrada {
  height: 100vh;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
}

.background-slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.bg-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.bg-slide.active {
  opacity: 1;
}

/* Página principal */
body.pagina-main {
  font-family: Arial, sans-serif;
  background-color: #f1f1f1;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}

/* Header */
header {
  background-color: #333;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 2;
}

header h1 {
  text-align: center;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.menu li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
}

/* Botões */
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: #0077cc;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
}

/* Formulário */
.form-contato label {
  display: block;
  margin-top: 1rem;
}

.form-contato input,
.form-contato textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Footer */
footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 2rem 0;
}

footer .redes-sociais a {
  margin: 0 10px;
  color: #ccc;
  font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background: #444;
    position: absolute;
    top: 70px;
    width: 100%;
    left: 0;
  }

  .menu.ativo {
    display: flex;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 1rem;
  }
}
