/* ======================== RESET ======================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: 'Poppins', sans-serif;
}

/* ======================== CORES ======================== */
:root {
  --verde: #2E7D32;
  --laranja: #EF6C00;
  --cinza-cimento: #BDBDBD;
  --bege: #F5F5DC;
  --branco: #ffffff;
  --preto: #212121;
  --azul: #003b6f;
  --azul-claro: #00B0D8;
  --roxo: #5e4b8b;
  --cinza: #f2f2f2;
  --border: 0.1rem solid rgba(0, 59, 111, 0.2);
  --marrom: #6B3F2B;
  --cor-barro: #C76B3A;
  --cor-cinza-escuro: #333333;
  --preto-trans: rgba(0,0,0,0.45);
}

/* ======================== BODY ======================== */
body {
  background-color: var(--branco);
  color: var(--preto);
}

/* ======================== HEADER ======================== */
.header-principal {
  background: var(--branco);
  border-bottom: var(--border);
  padding: 1rem 2rem;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 0 20px;
}

.logo-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-container img {
  height: 100%;
  width: auto;
  display: block;
  max-height: 100px;
}

/* ======================== MENU ======================== */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.menu {
  display: flex;
  gap: 1.5rem;
}

.menu a {
  text-decoration: none;
  color: var(--preto);
  font-weight: 500;
  transition: 0.3s;
}

.menu a:hover {
  color: var(--verde);
}

/* ======================== MENU MOBILE ======================== */
.menu-toggle {
  display: none; 
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 2000;
}

.menu-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}



/* ======================== BOTÃO WHATSAPP ======================== */
.btn-whatsapp {
  background: var(--verde);
  color: var(--branco);
  padding: 0.8rem 3rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #1b5e20;
}

/* ======================== TIRA VERDE SUPERIOR ======================== */
.tira-verde {
  background-color: var(--verde);
  color: #fff;
  font-size: 0.95rem;
  padding: 6px 20px;
  width: 100%;
}

.tira-conteudo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.tira-contatos {
  display: flex;
  gap: 20px;
}

.tira-redes a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.tira-redes a:hover {
  color: #c8facc;
}

/* ======================== BANNER ======================== */
.capa-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}


.slides {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease;
  will-change: transform;
}

.slide {
  min-width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 80vh;
  background: #f5f5f5;
}

.slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: brightness(90%);
}


/* BANNER SECUNDÁRIO */
.banner-conteudo2 {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 90%;
  max-width: 900px;
}

.banner-conteudo2 h1, .banner-conteudo2 p {
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  font-size: clamp(1rem, 2vw + 1rem, 2.5rem);
}

/* BOTÃO CONTATO */
.btn-contato {
  display: inline-block;
  background: var(--verde);
  color: var(--branco);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.btn-contato:hover {
  background: #fff;
  color: var(--verde);
  transform: translateY(-2px);
}


/* ======================== SEÇÃO SOBRE PRODUTOS ======================== */
.produtos-sobre {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 10%;
  background: #f4f4f4;
}

.produto-sobre {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  flex-wrap: wrap;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.produto-sobre:hover { transform: scale(1.01); }

.produto-sobre img {
  width: 40%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.produto-sobre img:hover {
  transform: scale(1.03);

}

.produtos-text {
  flex: 1;
  text-align: justify;
}

.produtos-text h2 {
  font-size: 2.4rem;
  color: #2c3e50;
  margin-bottom: 1.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  position: relative;
}

.produtos-text h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #3a5a40;
  margin-top: 10px;
}

.produtos-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.btn-saibamais {
  display: inline-block;
  padding: 12px 25px;
  background: var(--cor-cinza-escuro);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

/* ======================== SEÇÃO NÚMEROS ======================== */
.numeros {
  text-align: center;
  padding: 40px 0;
}

.numeros-flex {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.numero-item h3 {
  font-size: 28px;
  color: var(--azul);
}

.numero-item p {
  font-size: 16px;
  color: #555;
}



/* CONTAINER CATALAGO -------------------------------- */

.catalago {
  padding: 60px 20px;
  background: #fafafa;
  text-align: center;
}

.catalago h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.catalago p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

/* Menu de Categorias */

.list-opcao {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}

.list-opcao a {
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 20px;
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  transition: all 0.3s;
}

.list-opcao a:hover,
.list-opcao .ativo {
  background:var(--verde);
  color: #fff;
  border-color: var(--verde);
}

/* Grid de Produtos */
.grid-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card-produto {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
}

.card-produto:hover {
  transform: translateY(-5px);
}

.card-produto img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.card-produto h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.card-produto p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 10px;
}

.card-produto .preco {
  font-weight: bold;
  color: #27ae60;
  display: block;
  margin-bottom: 15px;
}

.btn-whats {
  display: inline-block;
  padding: 10px 20px;
  background: var(--verde);
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-whats:hover {
  background: #1ebe57;
}

/* Sessão personalizada */
.personalizado {
  margin-top: 50px;
}

.btn-solicitar {
  display: inline-block;
  padding: 12px 25px;
  background: var(--verde);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-solicitar:hover {
  background: #219150;
}



/* ------------------ CATÁLOGO CIMENTO ------------------ */
.container {
  display: flex;
  align-items: flex-start; 
  background: var(--branco);
}

/*-----------------CATALAGO BARRO----------------------*/

.container-vasobarro{
  display: flex;
  align-items: flex-start;
  background:var(--branco);
}

/*------------------------CATALAGO VARIADOS-------------------*/


.container-variados{
  display: flex;
  align-items: flex-start;
  background:var(--branco);
}


/* ------------------ Sidebar lateral ------------------ */
.sidebar {
  width: 220px;
  background-color: #fff;              
  padding: 20px;
  border-left: 4px solid var(--cinza-cimento);         
  min-height: 100vh;
  position: sticky;
  top: 0;
}

.sidebar h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
  padding: 8px;
  background-color: #f5f5f5; 
  border-bottom: 1px solid #ddd; 
}


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

.sidebar ul li {
  margin: 0;
  border-bottom: 1px solid #eee; 
}

.sidebar ul li:last-child {
  border-bottom: none; 
}

.sidebar ul li a {
  display: block;              
  padding: 10px 12px;          
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 4px;          
}

.sidebar ul li a:hover {
  background-color: #f5f5f5;   
  color: var(--verde);         
  padding-left: 18px;         
}

/* ------------------ Conteúdo da pagina catalago ------------------ */
.content {
  flex: 1;
  padding: 3px;
  background-color: var(--verde);
}

.content h2 {
  font-size: 3rem;
  text-transform: uppercase;
  color: var(--branco);
  font-weight: bold;
  text-align: center;
  padding: 2rem ;

}
.content p {
    color: var(--branco);
    font-size: 1.5rem ;
    text-align: center;
    padding: 10px;
  }

.aviso {
  color: #777;
  font-weight: normal;
  font-style: italic;
  font-size: 13px;     
  text-align: center;  
  margin-top: 8px;
  opacity: 0.8;
}




  /*------------------- catalago (fundo) lista barro-----------------*/
.content-list {
  flex: 1;
  padding: 3px;
  background-color: var(--cor-barro);
}

.content-list h2 {
  font-size: 3rem;
  text-transform: uppercase;
  color: var(--branco);
  font-weight: bold;
  text-align: center;
  padding: 2rem ;

}
.content-list p {
    color: var(--branco);
    font-size: 1.5rem ;
    text-align: center;
    padding: 10px;
  }


    /*------------------- catalago lista barro-----------------*/
.content-variado {
  flex: 1;
  padding: 3px;
  background-color: var(--branco);
}

.content-variado h2 {
  font-size: 3rem;
  text-transform: uppercase;
  color: var(--branco);
  font-weight: bold;
  text-align: center;
  padding: 2rem ;

}
.content-variado p {
    color: var(--branco);
    font-size: 1.5rem ;
    text-align: center;
    padding: 10px;
  }




/*---------------------------container (capa) catalago barro--------------*/

.container-barro {
  flex: 1;
  padding: 3px;
  background-color: var(--cor-barro);
}

.container-barro h2 {
  font-size: 3rem;
  text-transform: uppercase;
  color: var(--branco);
  font-weight: bold;
  text-align: center;
  padding: 2rem ;

}
.container-barro p {
    color: var(--branco);
    font-size: 1.5rem ;
    text-align: center;
    padding: 10px;
  }

/* ------------------ Lista de Vasos de barro ------------------ */


.list-barro {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; 
  gap: 40px;
  padding: 50px 20px;
  background-color: #fafafa;
  flex: 1; 
}

.list-vbarro{
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  padding: 20px;
  width: 220px;
  text-align: center;
  transition: transform 0.2s;

}
.list-vbarro h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--preto); 
  margin-bottom: 8px;
  font-family: 'Marcellus', serif;
}

.list-vbarro .descricao {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 8px;
}

.list-vbarro .tamanhos {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.80rem;
  color: #555;
  text-align: left;
}

.list-vbarro.tamanhos li {
  margin: 4px 0;
  padding-left: 12px;
  position: relative;
}



.list-vbarro img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease; 
}

.list-vbarro img:hover {
  transform: scale(1.2); 
  z-index: 2;
  position: relative;
}

.list-vbarro p:first-of-type {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--marrom);
  margin-bottom: 8px;
}

.list-vbarro p:last-of-type {
  font-size: 0.9rem;
  color: #555;
}
  

/* ------------------ Lista de Vasos cimento------------------ */
.lista-vasos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; 
  gap: 40px;
  padding: 50px 20px;
  background-color: #fafafa;
  flex: 1; 
}

.list-vcimento {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  padding: 20px;
  width: 220px;
  text-align: center;
  transition: transform 0.2s;
}

.list-vcimento h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--preto); 
  margin-bottom: 8px;
  font-family: 'Marcellus', serif;
  letter-spacing: 0.5px;

}

.list-vcimento .descricao {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 8px;
}

.list-vcimento .tamanhos {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.80rem;
  color: #555;
  text-align: left;
}

.list-vcimento .tamanhos li {
  margin: 4px 0;
  padding-left: 12px;
  position: relative;
}

.list-vcimento .tamanhos li::before {
  content: "*"; 
  position: absolute;
  left: 0;
  color: #2E7D32; 
}


.list-vcimento:hover {
  transform: translateY(-5px);
}

.list-vcimento img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.list-vcimento img:hover {
  transform: scale(1.6); 
  z-index: 2;
  position: relative;
}


.list-vcimento p:first-of-type {
  font-weight: 600;
  font-size: 1.2rem;
  color: #2E7D32;
  margin-bottom: 8px;
}

.list-vcimento p:last-of-type {
  font-size: 0.9rem;
  color: #555;
}

.img-hover {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
 
}

.img-hover img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.6s ease; 
  display: block;
  transform-origin: center center; 
}

.img-hover .foto-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0; 
   transform: scale(1);
  
}

.img-hover:hover .foto-hover {
  opacity: 1;
  transform: scale(1.09);
}

.img-hover:hover .foto-principal {
  opacity: 0; 
}







/*------------------Produtos variados catalago----------------*/

.content-variados {
  flex: 1;
  padding: 3px;
  background-color: #DAD2C1;
}

.content-variados h2 {
  font-size: 3rem;
  text-transform: uppercase;
  color: #3E4E32;
  font-weight: bold;
  text-align: center;
  padding: 2rem ;

}
.content-variados p {
    color: #5B6B45;
    font-size: 1.5rem ;
    text-align: center;
    padding: 10px;
  }

/*----------------Lista catalago ------------*/

.lista-variados {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; 
  gap: 70px;
  padding: 60px 40px;
  background-color: #fafafa;
  flex: 1; 
}

.list-vvariados{
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  padding: 20px;
  width: 220px;
  text-align: center;
  transition: opacity 0.3s ease; 

}
.list-vvariados h4 {
  font-size: 1rem; 
  font-weight: 600;
  color:#333333; 
  margin-bottom: 6px;
  padding: 15px;
  font-family: 'Marcellus', serif;
}


.list-vvariados img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease; 
}

.list-vvariados img:hover {
  z-index: 2;
  position: relative;
}

.btn-variados{
  display: inline-block;
  background: var(--verde);
  color: var(--branco);
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 4rem;
}



/*MUDA DE COR NO SIDEBAR */
.sidebar a.ativo {
  background: var(--verde);
  color: #fff;
  border-radius: 4px;
  padding-left: 12px;
}




/* Lista vertical */
.lista-vertical {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-vertical li {
  margin-bottom: 10px;
}

.lista-vertical li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.lista-vertical li a:hover {
  color: #EF6C00;
}



/* --- Seção Polietileno (versão menor) --- */
.secao-polietileno {
  position: relative;
  width: 100%;
  margin: 20px 0;
  overflow: hidden;
  border-radius: 12px;

}

.container-polietileno {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.img-polietileno {
  width: 100%;
  height: 690px; 
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}

.texto-polietileno {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 12px 20px;
  border-radius: 8px;
  max-width: 420px;
}

.texto-polietileno h2 {
  font-size: 1.6rem; 
  margin-bottom: 6px;
}

.texto-polietileno p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.btn-polietileno {
  background: #9c6530;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.3s;
}

.btn-polietileno:hover {
  background: #70451d;
}



/* ------------------ pagina Contato ------------------ */
.contato {
  background-color: #fafafa;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contato h2 {
  font-size: 2.5rem;
  color: #2E7D32; 
  margin-bottom: 30px;
}

.contato h3 {
  font-size: 1.8rem;
  color: #2E7D32;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Formulário */

.contato form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.contato label {
  text-align: left;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c3e50;
}

.contato input,
.contato textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
  transition: border 0.3s, box-shadow 0.3s;
}

.contato input:focus,
.contato textarea:focus {
  border-color: #2E7D32;
  box-shadow: 0 0 5px rgba(46, 125, 50, 0.5);
  outline: none;
}

.contato button {
  padding: 12px 25px;
  background-color: #2E7D32;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.contato button:hover {
  background-color: #219150;
  transform: translateY(-2px);
}

/* Mapa */
.contato iframe {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  border: 0;
  margin-top: 20px;
}
.endereco-loja{
  color: var(--preto);
  padding: 60px 20px 30px 20px;
}


/*Endereço no index*/

.endereco {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  background-color: #f8f8f8; 
}

.horario-endereco {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  gap: 40px; 
}

.info {
  flex: 1; 
  min-width: 280px;
}

.horario-atendimento h3 {
  color: #333;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 12px;
  border-bottom: 2px solid #ccc; 
  padding-bottom: 5px;
}

.horario-atendimento ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.horario-atendimento li {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.mapa {
  flex: 1; 
  min-width: 300px;
}

.mapa iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


 /*politica de venda */
/*criar o CSS DE POLITICA DE VENDA AQUI8*/


.container-venda {
  max-width: 1200px;
  padding: 3rem 1rem;
}

.conteudo-venda h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #2c3e50; 
}

.conteudo-venda section {
  margin-bottom: 2rem;
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/*Politica de frete---------------------------------------*/

.container-frete {
    max-width: 900px; 
    margin: 50px auto; 
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: 'Arial', sans-serif;
    color: #333;
}

.frete-texto h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c7a7b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.frete-texto p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.frete-texto p:last-child {
    margin-bottom: 0;
}


/* =================== CONTEÚDO POLÍTICA DE TROCA =================== */


.container-trocaedevolucao {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px 20px;
    background-color: #fff7f0;
    border-left: 6px solid #f97316; 
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: 'Arial', sans-serif;
    color: #333;
}

.troca-devolucao-texto h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--cor-cinza-escuro); 
    display: flex;
    align-items: center;
    gap: 10px;
}

.troca-devolucao-texto p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.troca-devolucao-texto ul {
    margin: 15px 0;
    padding-left: 20px;
}

.troca-devolucao-texto ul li {
    margin-bottom: 10px;
    font-weight: 500;
}


/* quem somos--------------------------------------------------------- */

.quem-somos {
  padding: 80px 5%;
  background-color: #fafafa;
}

/* Layout principal */
.container-sobre {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}


.imagem-sobre img {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.imagem-sobre img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}


.texto-sobre {
  flex: 1;
  min-width: 300px;
}

.texto-sobre h2 {
  font-size: 2.3rem;
  color: #2E7D32;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.texto-sobre h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #4CAF50;
  margin-top: 10px;
  border-radius: 2px;
}

.texto-sobre p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #3a3a3a;
  margin-bottom: 18px;
  text-align: justify;
  text-indent: 20px; 
}

.texto-sobre .assinatura-nomes {
  margin-top: 30px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2c2c2c;
  text-align: center;
  letter-spacing: 0.4px;
}

.texto-sobre .assinatura-cargo {
  margin-top: 4px;
  font-size: 1rem;
  font-style: italic;
  color: #757575;
  text-align: center;
}



/* footer FINAL DO SITE */

.footer {
  background: #2E7D32; 
  color: #FFFFFF;      
  padding: 60px 20px 30px 20px;
  font-family: 'Poppins', sans-serif;
}

.container-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: flex-start;
}

.footer-col { flex: 1; min-width: 220px; }
.lista-vertical {
  list-style: none; 
  padding: 0;
  margin: 0;
}

.lista-vertical li {
  margin-bottom: 10px; 
}

.lista-vertical li a {
  text-decoration: none;
  color: var(--branco); 
  font-weight: 500;
  transition: color 0.3s;
}

.lista-vertical li a:hover,
.lista-vertical li a.ativo {
  color: #27ae60; 
}



.footer-col h4 {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #FFFFFF; 
  text-transform: uppercase;
  position: relative;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #F5F5DC; 
  margin-top: 6px;
  border-radius: 2px;
}

.footer-col p, .footer-col a {
  font-size: 0.95em;
  margin-bottom: 12px;
  color: #FFFFFF; 
  text-decoration: none;
  line-height: 1.6;
}

.footer-col a:hover { color: #EF6C00; }

.footer i { margin-right: 8px; color: #FFFFFF; font-size: 1.1em; }

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85em;
  color: #F5F5DC; 
  border-top: 1px solid #BDBDBD;
  padding-top: 15px;
}
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


/* ------------------ Rodapé ------------------ */
.footer {
  background: #2E7D32;
  color: #fff;
  padding: 60px 20px 30px 20px;
}

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

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h4 {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #F5F5DC;
  margin-top: 6px;
  border-radius: 2px;
}

.footer-col p, 
.footer-col a {
  font-size: 0.95em;
  margin-bottom: 12px;
  color: #fff;
  text-decoration: none;
  line-height: 1.6;
}

.footer-col a:hover {
  color: #EF6C00; 
}

.footer i {
  margin-right: 8px;
  color: #fff;
  font-size: 1.1em;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 10px 0;
  font-size: 0.85em;
  color: #F5F5DC;
  border-top: 1px solid #BDBDBD;
 
}

.footer-bottom .footer-credit {
  font-size: 0.95em;
  margin: 3px 0 0 0; 
  color: #F5F5DC;
  padding: 0.9px;
}

.footer-bottom .footer-credit span {
  font-weight: bold;
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--verde);
  font-size: 20px;
  padding: 16px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


.whatsapp-float:hover {
  transform: scale(1.1);
  opacity: 0.9;
}
 
/* ------------------ RESPONSIVIDADE GERAL ------------------ */



/*Tira verde*/
@media(max-width:768px){
  .tira-conteudo{
    font-size: 0.6rem;
  
  }
  
  .tira-redes{
    font-size: 0.2rem;
  }

}


/*menu para celular */
@media (max-width: 768px) {
  .logo-container img {
    width: 90px;
    height: auto;
  }

}

/* MOBILE */
@media (max-width: 768px){
  
  .menu-toggle {
    display: flex;
    width: 20px;
    
  }

 

  /* Menu lateral retrátil */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 70vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
    z-index: 1500;
  }

  
  .nav-menu.active {
    right: 0;
  }

  /*lista dos menus*/
  .nav-menu ul.menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 1rem;
  }

  .nav-menu ul.menu li a {
    font-size: 1.1rem;
    color: #333;
    text-decoration: none;
    padding: 10px 0;
  }

  /* Botão WhatsApp mais discreto */
  .whatsapp-button {
    margin-top: 1.5rem;
  }

  .whatsapp-button .btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .whatsapp-button .btn-whatsapp i {
    font-size: 1.1rem;
  }

}
 


/*OS BANNER PRINCIPAIS AQUI */
/* celular */
@media (max-width: 768px) {

  
  .slide {
    width: 100%;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
  }

  
  .banner-conteudo2 {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .btn-contato {
    font-size: 0.5rem;
    padding: 7px 20px;
  }

 
}


 /*  Seção Nosso Catálogo */
@media (max-width: 768px) {

  .catalago-list h2 {
    font-size: 22px; 
  }

  .catalago-list p {
    font-size: 15px; 
  }

  .list-opcao li {
    font-size: 16px; 
  }

  .list-opcao {
    flex-direction: column; 
    gap: 15px;
    align-items: center;
  }
}

  
 
 /* Responsivo numeros */
@media (max-width: 768px) {
  .numeros-flex {
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    gap: 25px;
  }

  .numero-item h3 {
    font-size: 22px;
    color: var(--azul);
  }

  .numero-item p {
    font-size: 14px;
  }
}



  /*catalago index*/
  @media (max-width: 768px) {
  .grid-produtos {
    grid-template-columns: 1fr;
  }

  .card-produto img {
    height: 150px;
  }

  .card-produto h3 {
    font-size: 1rem;
  }

  .card-produto p {
    font-size: 0.8rem;
  }

  .btn-whats{
    font-size: 13px;

  }

  }


  
/*OPÇÃO PARA FAZER VASO POR MEDIDA*/

@media (max-width:768px){
  .personalizado h3{
    font-size: 18px;
  }
  .personalizado p{
    font-size: 14px;
  }
  .btn-solicitar{
    font-size: 13px;
  }
  
}

@media (max-width: 768px) {

  /* Container Polietileno */
  .container-polietileno {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 10px; 
    box-sizing: border-box;
  }

  .img-polietileno {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  .texto-polietileno {
    width: 100%;         
    max-width: 300px;    
  }

  .texto-polietileno h2 {
    font-size: 1.2rem; 
    margin-bottom: 5px;
  }

  .texto-polietileno p {
    font-size: 0.9rem;
    line-height: 1.2;  
  }

  .btn-polietileno {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  /* Outros blocos do site SOBRE */
  .produto-sobre {
    flex-direction: column;
    text-align: center;
  }

  .produto-sobre img {
    width: 100%;
    height: auto;
  }

  .produtos-text h2 {
    font-size: 1.4rem;
  }

  .produtos-text p {
    font-size: 0.95rem;
  }

  .endereco {
    flex-direction: column;
  }

  .mapa iframe {
    height: 150px;
  }

}


/*ENDEREÇO CEKULAR*/ 
@media (max-width: 768px) {
  .horario-endereco {
    flex-direction: column; 
    align-items: flex-start; 
  }

  .horario-atendimento h3 {
    font-size: 14px; 
  }

  .horario-atendimento ul li {
    font-size: 13px; 
  }
}

/*RoDAPE CELULAR*/


@media (max-width: 768px) {
  .footer {
    text-align: left; 
    padding: 30px 15px;
  }

  .container-footer {
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
    gap: 15px;
  }

  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .footer-col p,
  .footer-col a {
    font-size: 12px;
    line-height: 1.4;
  }

  /* Ícones */
  .fa-solid.fa-phone,
  .fa-solid.fa-envelope,
  .fa-brands.fa-facebook-f,
  .fa-brands.fa-instagram {
    font-size: 12px;
    margin-right: 5px;
  }

  .lista-vertical li {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .footer-bottom {
    font-size: 10px;
    margin-top: 15px;
  }
}

/*PAGINA SOBRE--------------------------------------*/

@media (max-width: 768px) {
  .texto-sobre h2 {
    font-size: 1.5rem; 
    text-align: left; 
    margin-bottom: 10px;
  }

  .texto-sobre p {
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: justify; 
  }

  .assinatura-nomes, .assinatura-cargo {
    font-size: 0.85rem;
    text-align: center;
  }

  .container-sobre {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .imagem-sobre img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }
}
/*--------------------------------------CATALAGOS________________________*/

@media (max-width: 768px) {
  .content-variados {
    width: 100%;              
    margin: 0 auto;          
    text-align: center;       
    padding: 10px;            
  }

  .content-variados h2 {
    font-size: 18px;          
    line-height: 1.3;
  }

  .content-variados p {
    font-size: 13px;        
    line-height: 1.4;
  }

  .content-variados .aviso {
    font-size: 10px;         
    color: #666;
  }

  /* Container principal empilha sidebar e produtos */
  .container-variados {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 15px 10px;
    background: #fafafa;
  }

  /* ===== Sidebar ===== */
  .sidebar {
    position: relative;
    width: 100%;
    min-height: auto; 
    height: auto;    
    border-left: none;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }

  .sidebar h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #3E4E32;
    font-weight: bold;
    text-transform: uppercase;
    background: none;
    border-bottom: none;
    padding: 0;
  }

  .sidebar ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .sidebar ul li {
    border: none;
  }

  .sidebar ul li a {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.85rem;
    text-decoration: none;
    color: #3E4E32;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .sidebar ul li a:hover,
  .sidebar ul li a.ativo {
    background: var(--verde);
    color: #fff;
    border-color: var(--verde);
  }

  /* ===== Lista de Produtos ===== */
  .lista-variados {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
    width: 100%;
    justify-items: center;
  }

  .list-vvariados {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 10px;
    width: 100%;
    max-width: 180px;
    text-align: center;
    transition: transform 0.2s ease;
  }

  .list-vvariados:hover {
    transform: scale(1.02);
  }

  .list-vvariados img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .list-vvariados h4 {
    font-size: 0.9rem;
    margin: 8px 0;
    color: #333;
  }

  .btn-variados {
    display: inline-block;
    width: 100%;
    background: var(--verde);
    color: var(--branco);
    padding: 8px 0;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    transition: background 0.3s ease;
  }

  .btn-variados:hover {
    background: #3E4E32;
  }
}



/*--------------------------------------VASOS DE BARRO---------------------*/


/*CATÁLOGO VASOS DE BARRO */


@media (max-width: 768px) {

  .container-barro h2{
    font-size: 26px;

  }
  .container-barro .aviso{
    font-size: 16px;
  }
  
  .container-vasobarro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 15px 10px;
    background: #fafafa;
   
  }


  .container-vasobarro .sidebar {
    width: 100%;
    min-height: auto;
    height: auto;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }

  .container-vasobarro .sidebar h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #3E4E32;
    font-weight: bold;
    text-transform: uppercase;
  }

  .container-vasobarro .sidebar ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .container-vasobarro .sidebar ul li a {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.85rem;
    text-decoration: none;
    color: #3E4E32;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .container-vasobarro .sidebar ul li a:hover,
  .container-vasobarro .sidebar ul li a.ativo {
    background: var(--verde);
    color: #fff;
    border-color: var(--verde);
  }

  /* Lista de produtos */
  .list-barro {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 15px;
    width: 100%;
    justify-items: center;
    padding: 10px;
    background: transparent;
     background-color: var(--cinza);
  }

  .list-vbarro {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 12px;
    width: 100%;
    max-width: 100%; 
    text-align: center;
    transition: transform 0.2s ease;
  }

  .list-vbarro:hover {
    transform: scale(1.02);
  }

  .list-vbarro img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .list-vbarro h4 {
    font-size: 1rem;
    margin: 8px 0;
    color: #333;
  }

  .list-vbarro .descricao {
    font-size: 0.8rem;
    color: #555;
   
  }

.list-vbarro .tamanhos {
  font-size: 0.75rem;
  text-align: center; 
  padding: 0;
  margin: 0; 
  list-style: none; 
}

.list-vbarro .tamanhos li {
  display: inline-block; 
  margin: 1px 0; 
}
}



/*--------------------------VASOS DE CIMENTO-----------------------------*/

@MEDIA(max-width:768px){
  .content h2{
    font-size: 25px;
  }

  .content p{
    font-size: 20px;
  }

  .content .aviso{
    font-size: 13px;
  }

  .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 15px 10px;
    background: #fafafa;
  }

   .lista-vasos{
    display: grid;
    grid-template-columns: 1fr; 
    gap: 15px;
    width: 100%;
    justify-items: center;
    padding: 10px;
    background: transparent;
    background-color: var(--cinza);
  }

   .list-vcimento{
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 12px;
    width: 100%;
    max-width: 100%; 
    text-align: center;
    transition: transform 0.2s ease;
    background-color: var(--cinza);
  }

  .list-vcimento img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .list-vcimento  h4 {
    font-size: 1rem;
    margin: 8px 0;
    color: #333;
  }

  .list-vcimento  .descricao {
    font-size: 0.8rem;
    color: #555;
   
  }

  .list-vcimento  .tamanhos {
  font-size: 0.75rem;
  text-align: center; 
  padding: 0;
  margin: 0; 
  list-style: none; 
}

  .v .tamanhos li {
  display: inline-block;
  margin: 1px 0; 
}
}

/*--------------------------politica Frete-----------------------------*/
@media(max-width:768){
  .frete-texto h1{
    font-size: 20px;
  }

  .frete-texto p{
    font-size: 12px;
  }
}

/*--------------------------politica vendas-----------------------------*/

@MEDIA(max-width:768px){
  .conteudo-venda h1{
    font-size: 20px;
  }
  .conteudo-venda h2{
    font-size: 20px;
  }
  .conteudo-venda p{
    font-size: 16px;
  }
  .conteudo-venda li{
    font-size: 16px;
  }
}


/*--------------------------politica devolução-----------------------------*/

@MEDIA(max-width:768px){
  .troca-devolucao-texto h1{
    font-size: 23px;
  }

  .troca-devolucao-texto p{
    font-size: 16px;
  }
 
  .troca-devolucao-texto li{
    font-size: 16px;
  }
}


/* Mostrar apenas zap flutuante  */
@media (min-width: 769px) {
  .whatsapp-float {
    display: none;
  }
}





