/* CSS Sofa Modela RJ */

/* Reset básico */
body, h1, h2, h3, h4, p, ul, li {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Menu fixo */
.menu-header {
  background-color: #0055aa;
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
}
.logo {
  font-weight: bold;
  font-size: 20px;
}
.menu-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
.menu-nav ul li a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
.menu-nav ul li a:hover,
.menu-nav ul li a.active {
  color: #ffeb3b;
  text-decoration: underline;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
}

/* Responsivo menu */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .menu-nav {
    display: none;
    background-color: #0055aa;
    width: 100%;
  }
  .menu-nav.active {
    display: block;
  }
  .menu-nav ul {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }
}

/* Hero section */
.hero {
  padding: 100px 20px 40px;
  text-align: center;
  background: linear-gradient(to right, #0055aa, #0088cc);
  color: #fff;
}
.hero h1 {
  font-size: 32px;
  margin-bottom: 15px;
}
.hero p {
  font-size: 18px;
}

/* Seções comuns */
section {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}
section h2 {
  color: #0055aa;
  font-size: 26px;
  margin-bottom: 15px;
}
section h3 {
  font-size: 20px;
  margin-top: 20px;
}
section ul {
  margin-top: 10px;
  padding-left: 20px;
}
section ul li {
  margin-bottom: 8px;
}

/* imagem */

.galeria-imagens img {
  width: 60%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}
.imagem-produto {
  margin-bottom: 30px;
}

/* video */
.video-apresentacao video {
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

/* Responsividade para tablete e celular */
@media (max-width: 768px) {
  .video-apresentacao video {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}

/* Depoimentos */
.depoimentos blockquote {
  background-color: #eef;
  border-left: 6px solid #0055aa;
  padding: 15px;
  margin: 20px 0;
  font-style: italic;
}

/* Responsividade para tablete e celular */
@media (max-width: 768px) {
  .depoimentos blockquote {
    padding: 10px;
    margin: 15px 0;
  }
}

/* FAQ */
.faq h3 {
  margin-top: 25px;
  color: #333;
}

.faq p {
  margin-bottom: 15px;
}

/* Responsividade para tablete e celular */
@media (max-width: 768px) {
  .faq h3 {
    margin-top: 20px;
    font-size: 18px;
  }
  
  .faq p {
    margin-bottom: 10px;
    font-size: 16px;
  }
}

/* Ajustes adicionais para celular */
@media (max-width: 480px) {
  .video-apresentacao video {
    border-radius: 5px;
  }
  
  .depoimentos blockquote {
    border-left: 4px solid #0055aa;
  }
  
  .faq h3 {
    font-size: 16px;
  }
  
  .faq p {
    font-size: 14px;
  }
}

/* Formulário */
.contato form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.contato input, .contato textarea {
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 6px;
}
.contato button {
  background-color: #0055aa;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
.contato button:hover {
  background-color: #004080;
}

/* WhatsApp botão */
.whatsapp-botao {
  display: inline-block;
  margin-top: 20px;
  background-color: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}
.whatsapp-botao:hover {
  background-color: #1DA851;
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}
footer h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
