* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
  scroll-behavior: smooth;
}

header {
  position: relative;
} 

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  padding: 14px 30px;
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s, padding 0.3s;
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 30px;
}

nav .logo {
  font-size: 22px;
  font-weight: 700;
  color: #f5c08a;
  letter-spacing: 1.5px;
}

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

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hamburger {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

.cadastro {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('img/home.png') center/cover no-repeat;
  position: relative;
  padding: 100px 20px;
}

.cadastro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* ESCURECE O FUNDO */
  z-index: 1;
}

.cadastro .container {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  padding: 50px;
  border-radius: 14px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  animation: fadeIn 0.8s ease;
}

.cadastro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: #3a2415;
}

.form-cadastro input {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.form-cadastro input:focus {
  border-color: #f5c08a;
  outline: none;
  box-shadow: 0 0 6px rgba(245, 192, 138, 0.6);
}

.form-cadastro button {
  background: #f5c08a;
  color: #111;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.form-cadastro button:hover {
  background: #ffd7a8;
  transform: translateY(-2px);
}

.cadastro p {
  margin-top: 14px;
  font-size: 15px;
}

.cadastro p a {
  color: #f5c08a;
  font-weight: 600;
  text-decoration: none;
}

.cadastro p a:hover {
  text-decoration: underline;
}

.mensagem {
  margin-top: 10px;
  font-size: 14px;
  display: none;
  padding: 8px;
  border-radius: 6px;
  text-align: center;
}

.mensagem.sucesso {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.mensagem.erro {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

#servicoo{
  display: flex;
  justify-content: center;
  text-align: center;
  justify-items: center;
}

.produtos-carrossel{
text-align: center;
}

footer {
  background: #111;
  color: #d6d6d6;
  text-align: center;
  padding: 25px;
  font-size: 15px;
}

/* animação */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
