/* Importação de fontes do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playwrite+MX:wght@100..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Reset geral + fonte padrão */
*{
    font-family: 'Poppins',sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Cor de fundo do corpo da página */
body{
    background-color: rgb(248, 106, 23);
}

/* Padding para dar espaço ao conteúdo abaixo do header fixo */
main {
  padding-top: 70px; /* Ajuste conforme a altura real do seu header */
}

/* Reset básico (repetido) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonte alternativa para o corpo */
body {
  font-family: Arial, sans-serif;
}

/* Estilização do header fixo no topo da página */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  border-bottom: 1px solid #ccc;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999; /* Fica sempre por cima */
  background-color: #f60; /* Evita que o fundo fique transparente */
  flex-wrap: wrap;
}

/* Tamanho máximo do logo */
.logo {
  max-width: 150px;
}

/* Deixa o logo responsivo */
.logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Lista do menu de navegação */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

/* Links do menu */
.nav-menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

/* Hover do menu */
.nav-menu a:hover {
  color: #555;
}

/* Container dos ícones (como carrinho, perfil etc.) */
.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Estilo dos ícones */
.header-icons i {
  cursor: pointer;
  font-size: 20px;
  color: #ffffff;
  transition: color 0.2s ease-in-out;
}

/* Hover dos ícones */
.header-icons i:hover {
  color: #555;
}

/* Menu hamburguer (para mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

/* Barrinhas do hamburguer */
.menu-toggle span {
  height: 2px;
  width: 25px;
  background: #ffffff;
  display: block;
  border-radius: 2px;
}

/* Media Query para telas menores que 900px */
@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(55, 55, 55, 0.1);
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 16px;
  }

  .nav-menu.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu ul {
    margin-top: 10px;
  }
}

/* Media Query para telas menores que 768px */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #111;
    padding: 20px;
    position: absolute;
    top: 100%; /* abaixo do header */
    right: 0;
    width: 100%;
    z-index: 999;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }
}

/* Seção principal com imagem de fundo */
#home {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  padding-left: 5%;
  color: white;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
    url('imagem/slide2.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

/* Container do conteúdo principal */
#cta {
  max-width: 400px;
  padding: 2rem;
}

/* Título principal */
.title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

/* Descrição abaixo do título */
.description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Hover no botão principal */
.botao1:hover {
  background-color: #484848;
  text-decoration: none;
  color: inherit;
}

/* Responsivo para seção home */
@media (max-width: 768px) {
  #home {
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background-position: center;
  }

  /* Troca imagem de fundo em dispositivos menores */
  @media (max-width: 768px) {
    #home {
      background-image: 
      linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
      url('imagem/imagem3.jpg');
      background-position: center;
    }
  }

  #cta {
    max-width: 100%;
    padding: 1rem;
  }

  .title {
    font-size: 2rem;
  }

  .description {
    font-size: 1rem;
  }
}

/* Texto centralizado com padding */
.text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  font-size: 1.6rem;
  line-height: 1.6;
}

/* Formatação de texto 1 */
.text_formatacao1 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: white;
}

/* Formatação de texto 2 */
.text_formatacao2 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
}

/* Responsivo texto */
@media (max-width: 768px) {
  .text {
    font-size: 1.2rem;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .text {
    font-size: 1rem;
    padding: 10px;
  }
}

/* Wrapper do carrossel */
.carrossel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
  
}

/* Container dos slides */
.carrossel-container {
  display: flex;
  transition: transform 0.6s ease;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

/* Esconde a barra de rolagem no Chrome */
.carrossel-container::-webkit-scrollbar {
  display: none;
}

/* Estilo de cada slide */
.slide {
  flex: 0 0 80%;
  margin-right: 20px;
  scroll-snap-align: start;
  background-color: #b5acac;
  color: #fff;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  
      
  
}

/* Imagem de fundo do slide */
.imagem {
  width: 100%;
  height: 700px;
  background-size: cover;
  background-position: center;
  
 
    
}

/* Conteúdo dentro do slide */
.conteudo {
  position: absolute;
  bottom: 30px;
  left: 40px;
  color: white;
  max-width: 50%;
  z-index: 2;
}

.conteudo h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.conteudo p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Link no slide */
.conteudo a {
  display: inline-block;
  color: white;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border-bottom: 2px solid white;
  padding-bottom: 3px;
  transition: 0.3s;
}

.conteudo a:hover {
  opacity: 0.7;
}

/* Botões de navegação do carrossel */
.seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
  border-radius: 5px;
}

.seta.esquerda {
  left: 10px;
}

.seta.direita {
  right: 10px;
}

/* Responsivo carrossel */
@media (max-width: 768px) {
  .slide {
    flex: 0 0 90%;
  }

  .imagem {
    height: 250px;
  }
}

/* Responsivo slide */
@media (max-width: 600px) {
  .conteudo h2 {
    font-size: 1.5rem;
    padding: 0px 0px;
    
  }

  .conteudo p {
    font-size: 0.8rem;
    
    
  }

  .conteudo a {
    font-size: 0.5rem;
    padding: 0px 10px;
  }
}

/* Container do FAQ em grid responsivo */
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-wrap: wrap;
}

/* Título geral */
h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

/* Item do FAQ */
.faq-item {
  margin-bottom: 30px;
}

.faq-item h2 {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
}

/* Colunas esquerda e direita do FAQ */
.left,
.right {
  display: flex;
  flex-direction: column;
}

/* Título dentro do FAQ container */
.faq-container h1 {
  width: 100%;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.left,
.right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

/* Grid dos produtos */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1500px;
  margin: 0 auto;
  padding-bottom: 40px;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Card de produto */
.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.card-content p {
  font-size: 14px;
  color: #555;
}

.card-content a {
  display: inline-block;
  margin-top: 15px;
  color: #c8702a;
  text-decoration: none;
  font-weight: bold;
}

.card-content a:hover {
  text-decoration: underline;
}

/* Rodapé principal */
.main-footer {
  background-color: #ffffff;
  color: rgb(4, 4, 4);
  padding: 40px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.main-footer h2 {
  margin-bottom: 10px;
}

.footer-content .subtitle {
  margin-bottom: 20px;
  color: #171616;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: #f7931e;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #000000;
}

.main-footer .copyright {
  font-size: 14px;
  color: #777;
}
