/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 /* Barra preta superior */
    .topbar {
      background:#333;
      height:25px;
    }
body {
  font-family: 'Overpass', sans-serif;
  background-color: #fff;
}
html, body {
  overflow-x: hidden;
}

p {
      margin-bottom: 0;
      text-align: center;
      margin-top: 5px;
      margin-left: 10px;
      margin-right: 5px;
      width: 100%;
      overflow-wrap: break-word;
      height: auto;
  }
  
h1 {
font-size: 30px;
color: #440503;
padding: 2px 0 10px 0;;
font-family: 'Segoe UI', sans-serif;
font-weight: 700;
text-align: center;
margin-bottom: 20px;
margin-top: 80px;
position: relative;
}

h1::after {
content: '';
display: block;
width: 100px;
height: 3px;
background: linear-gradient(to right, transparent, #440503, transparent);
margin: 10px auto 0 auto;
border-radius: 3px;
}

.navbar {
  backdrop-filter: blur(6px);
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.logo img {
  height: 40px;
}
.menu {
  display: flex;
  flex-direction: column;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #7a6452;
  user-select: none;
 }

.menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.menu ul li {
  position: relative;
}

.menu ul li a {
  text-decoration: none;
  color: #444;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.menu ul li a:hover {
  background-color: #b7c9a8;
  color: white;
}

/* Dropdown */
.dropdown {
  position: relative;  
  display: inline-block;
  font-size: 16px;
}
.dropbtn {
  font-size: 16px;   
  font-family: Arial, sans-serif;
  vertical-align: middle;
  color: black;
  text-decoration: none;
  padding: 0 10px;
  line-height: 1.5;  
  height: 100%;  
  display: flex;
  align-items: center;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background-color: whitesmoke;
  border-radius: 10px;
  overflow: visible;
  flex-direction: column;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}

.dropdown-content a {
  color: #5c4b41;
  padding: 12px 16px;
  text-align: left;
  display: block;
  transition: 0.3s;
}

.dropdown-content a:hover {
  background-color: #7a9e76;
  color: white;
}

.submenu a:hover {
  background-color: rgba(233, 171, 39, 0.979) !important;
  color: black !important;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-item {
  position: relative;
}
  /* Submenu que também será oculto inicialmente */
  .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;  
    background-color: #f9f9f9;
    min-width: 160px;
     box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
     z-index: 1;
     flex-direction: column;
}
        /* Exibe o submenu ao passar o mouse sobre a categoria */
  .dropdown.active .dropdown-content {
  display: flex;
}

/* Botão login/logout */
#login-logout-button {
  background-color: #b7c9a8;
  color: #2e3d29;
  border: none;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  margin-right: 30px;
}

#login-logout-button:hover {
  background-color: #7a9e76;
  color: white;
}
.veja-mais {
  width: 40%; 
  font-size: 12px;
  text-align: center;
  display: inline-block;
  padding: 4px 10px;
  background-color: #d4a373;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.veja-mais:hover {
  background-color: #b76e22;
}


.carrossel-container {
width: 100%;
overflow: hidden;
position: relative;
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-top:50px;
padding: 0 0 20px 0;
background-color: white;
box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.2); 
    
}

.carrossel {
 display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slider {
display: flex;
transition: transform 0.5s ease-in-out;
width:100%;

}
.slide {
    min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide img {
width: 100%;
height: 350px;
object-fit: cover;
border-radius: 8px;
transition: transform 0.3s ease;
}

.carrossel-btn {
position: absolute;
top: 70%;
transform: translateY(-50%);
background-color:   rgba(255, 255, 255, 0.05);
border: none;
font-size: 24px;
cursor: pointer;
z-index: 10;
border-radius: 0;
box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.carrossel-btn:hover {
background-color: rgba(255, 255, 255, 0.9);
}

.prev {
left: 10px;
}

.next {
right: 10px;
}
.dots {
text-align: center;
position: absolute;
bottom: 5px;
width: 100%;
}
.dot {
height: 12px;
width: 12px;
margin: 0 4px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
cursor: pointer;
transition: background-color 0.3s;
}
.dot.active {
background-color: black;
}

button {
      margin-top:0px;
      padding:2px;
width: 10%;
      }
      
.logged-in {
width: 10%;
 margin-right:10px;
}

.logged-out {
width: 10%;
margin-right:10px;
}
#responseMessage{
  margin-left:10px
}
.footer {
  background: linear-gradient(to right, #5f4b8b, #a78cc0); /* um degradê leve e elegante */
  color: #f0f0f0;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-box {
  flex: 1 1 300px;
  margin: 20px;
}

.footer-box h2 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
}
.footer-box p{
      text-align: justify;
}
.footer-box p,
.footer-box a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 16px;
  margin: 6px 0;
}

.footer-box i {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
}

.footer-box a:hover {
  text-decoration: underline;
  color: #ffd;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box ul li {
  margin: 10px 0;
}

.footer-box ul li a {
  color: #f0f0f0;
  transition: color 0.3s;
}

.footer-box ul li a:hover {
  color: #ffd;
}
  .footer-direitos p {
  font-size: 11px;           
  color: #555;                
  text-align: center;        
}


.container-nossoproduto {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 10px ;
  padding: 10px;
  background-color: white;
  box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.2);
  gap: 20px;
}

.carrossel-setas {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
  scroll-snap-type: x mandatory;
}

.carrossel-setas::-webkit-scrollbar {
  display: none;
}

.caixa {
  flex: 0 0 auto;
  width: calc(16.667% - 20px);
  border-radius: 10px;
  text-align: center;
  scroll-snap-align: center;
}

.caixa img {
  width: 100%;
  border-radius: 10px;
  max-height: 250px;
  object-fit: cover;
}
.caixa:hover img {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.caixa p {
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-top: 8px;
  font-size: 16px;
  text-align: justify;
  color: #555;
}

.imagem-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.botao-sobre-imagem {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  opacity: 0.9;
  transition: 0.3s ease;
  border: 2px solid black;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 90%;
  white-space: nowrap;
  text-align: center;
}

.botao-sobre-imagem:hover {
  transform: translateX(-50%) scale(1.05);
  background-color: rgba(233, 171, 39, 0.979);
}

.titulo {
  margin: 10px 0;
  font-size: 20px;
}
  
.btn-anterior,
.btn-proximo {
  background-color: transparent;
  border: 2px solid black;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.btn-anterior {
  left: -3px;
}
.btn-proximo {
  right: -3px;
}
.btn-anterior:hover,
.btn-proximo:hover {
  background-color: rgba(233, 171, 39, 0.8);
  border-color: rgba(233, 171, 39, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.btn-anterior:active,
.btn-proximo:active {
  transform: translateY(-50%) scale(0.95);
  background-color: rgba(233, 171, 39, 1);
}

.btn-anterior svg,
.btn-proximo svg {
  width: 24px;
  height: 24px;
}

.container-nossoservico{
  display: flex;
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 20px;
  padding: 10px 5px;
  background: #fefefe;
} 
.artigo {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: calc(33.333% - 20px);
  flex-wrap: wrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  overflow: hidden;
  overflow: hidden;
display: flex;
flex-direction: column;
}
.img-artigo{
  position: relative;

}
.img-artigo img {
width: 100%;
display: block;
border-radius: 10px;
}
   
.artigo:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}  
.artigo a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 10px 20px;
}

.artigo h3 {
  font-size: 20px;
  margin: 12px 0 6px;
  color: #a44fb5;
}

.artigo p {
  font-size: 16px;
  color: #555;
  margin: 0 0 12px;
}

.texto-sobreposto {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
background: rgba(255, 255, 255, 0.85); /* fundo claro translúcido */
padding: 6px 12px;
box-sizing: border-box;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
font-size: 16px;
color: #444;
}

.texto-sobreposto p{
margin: 0;
text-align: justify;
font-size: 16px;
line-height: 1.3;
}

.catalogo-info {
  flex: 1 1 calc(20% - 10px);
   box-sizing: border-box;
   font-size: 14px;
   display: flex;
   flex-direction: column;
   padding: 5px;
   background-color: white;
   border-radius: 6px;
   margin: 3px;
   width: 100%;
   max-width: 280px;
   height: 480px; 
   border: 2px solid #ddd;
   align-items: center; 
   box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.5); 
   transition: transform 0.3s;
}
.produto-img {
      background-color: #b2b2b2;
      position: relative;
      margin-bottom: 0;
      margin-top: 0;
      width: 280px;
      height: 280px;
      object-fit: contain;
      transition: transform 0.3s ease;
      cursor: zoom-in;
      border-radius: 15px;
  }

  #produtos-container {
      overflow: visible;
      display: flex;
      margin: 0;
      margin-top: 10px;
      justify-content: center;
      gap: 10px;
      padding: 0;
      width: 100%;
      flex-wrap: wrap;
      align-items: stretch;
  }

.descricao {
      margin-bottom: 0;
      text-align: justify;
      margin-top: 5px;
      width: 100%;
      word-wrap: break-word;
      height: auto;
  }
  .filtros-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 10px;
    margin: 10px;
    padding-left: 10px;
  }
  
  .filtro-item {
    display: flex;
    flex-direction: column;
  }

    /* Wrapper com seta personalizada */
  .select-wrapper {
    position: relative;
    width: 160px;
  }
  
  .select-wrapper::after {
    content: '▼';
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #8b4513;
    font-size: 12px;
  }
  
  select {
    width: 100%;
    padding: 10px 10px;
    padding-right: 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
  }
  
  select:focus {
    border-color: #a0522d;
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.2);
    outline: none;
  }
  
  /* Botão estilizado */
  .filtro-botao {
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 45px;
    width: 150px;
  }
  
  .filtro-botao:hover {
    background: linear-gradient(135deg, #a0522d, #8b4513);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }

  .botao-voltar {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6b4f3b;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .botao-voltar:hover {
    background-color: #4a3529;
  }
  .botao-topo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #8d5e45;
  color: white;
  padding: 12px 15px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}

.botao-topo:hover {
  background-color: #a76c4f;
}
    .buttons {
    text-align: center;
    margin: 30px 0;
  }

  .buttons a {
    display: inline-block;
    background: #8d5e45;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    margin: 15px;
    transition: background 0.3s;
  }

  .buttons a:hover {
    background: #a76c4f;
  }
   .hashtags {
      margin-top: 30px;
      text-align: center;
      color: #9c6644;
      font-style: italic;
      font-size: 0.95em;
    }
    .hashtags span {
      margin-right: 12px;
    }

/* Responsivo */

@media (max-width: 480px) {
    .carrossel-container {
        margin:30px 5px 10px 5px;
    }
  .catalogo-info {
    flex: 1 1 calc(50% - 5px);
    font-size: 12px;
    height: auto; 
    padding: 2px;
   width: 100%;
 }
 #produtos-container {
       gap:0;
        width: 100%;
        justify-content: center;
   }
   h1{
    font-size: 18px;
   }
 
 .produto-img {
       width: 100%;
       height: 240px;
        max-height:280px;
      
   }
 
 .catalogo-img:hover {
   transform: scale(1.05); /* Zoom menor em telas pequenas */
 }
   
 .descricao {
      width: 100%;
       word-wrap: break-word;
       height: auto;
   }
   .footer-box h2 {
    font-size: 18px;
    text-align: center;
  }

  .footer-box p,
  .footer-box a {
    font-size: 14px;
    text-align: justify;
  }

  .footer-box i {
    font-size: 16px;
  }

  .footer-box ul li {
    margin: 8px 0;
  }

  .footer-box {
    padding: 10px;
  }
   
 }
 
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 30px;
    background-color: white;
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .menu.active {
    display: flex;
  }

  .menu ul {
    flex-direction: column;
    width: 100%;
  }

  .menu ul li {
    width: 100%;
    text-align: left;
    padding: 10px;
  }
  .menu ul li a {
    padding: 10px 0;
  }
  .dropdown-content {
    position: relative;
    box-shadow: none;
    width: 100%;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
.logo img {
margin-left: 2px;
}

h1{
font-size: 24px;
}
.titulo {
    font-size: 1em;
  }
.carrossel-texto {
  max-width: none;
 font-size: 14px;
  margin-left: 3px;  
}
.logged-in {
margin-right:10px;
width: 10%;
}
.logged-out {
width: 10%;
margin-right:10px;
}
#responseMessage{
margin-left:10px
}
.box {
flex: 1 1 100%; 
}

.carrossel-btn {
  font-size: 18px;
  top: 60%;
}
.caixa {
  min-width: 200px;
  max-width: 220px;
}

.caixa img {
  max-height: 150px;
}

.caixa p {
  font-size: 12px;
  text-align: justify;
}

.botao-sobre-imagem {
  font-size: 14px;
  padding: 6px 10px;
}

.btn-anterior,
.btn-proximo {
  font-size: 2em;
  padding: 6px;
}

.artigo {
  width:  90%;   
}
.artigo p{
  font-size: 14px;
}
texto-sobreposto {
font-size: 14px;
padding: 10px;
}
.slide {
  height: 280px;
}

.slider img {
  object-fit: contain;
}
.footer-direitos p {
  font-size: 10px;  
}

}