* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Arial, sans-serif;
}



body {
    margin: 0;
    height: 100vh;
    background: url("logo/obrafundo.png") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
  }

  /* Para celular */
  @media (max-width: 768px) {
    body {
      background: url("logo/obrafundo2.png") no-repeat center center;
      background-size: cover;
      background-attachment: fixed;
    }
  }
body.pagina-marmore {
  background: url("logo/obrafundo3.png") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}


header {
background-color: #c6fffa;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
padding: 5px 0;
position: sticky;
top: 0;
z-index: 100;
transition: transform 0.3s ease-in-out;
}

header.hidden {
transform: translateY(-100%);
}
.container {
  max-width: 1200px;  /* 🔥 limite visual */
  margin: 0 auto;     /* centraliza */
  padding: 0 20px;    /* respiro */
}

#container-marmore {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 30px auto;
      border-radius: 30px;
      gap: 10px;
      background-color: #c6fffa;
}

.logo {
text-align: center;
margin-bottom: 20px;
color: white;
}
.logo-preto {
  text-align: center;
  margin-bottom: 20px;
  color: black;
}
.logo-main {
font-size: 16px;
font-weight: 700;
color: #000000;
margin-bottom: 0;
line-height: 1;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.281);
}

.logo-cabel {
font-size: 48px;
font-weight: 900;
color: #000000;
margin: 0;
line-height: 1;
text-transform: uppercase;
letter-spacing: 1px;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.281);
}

.logo-subtitle {
font-size: 18px;
font-weight: 400;
color: #000000;
margin: 5px 0 0 0;
line-height: 1.2;
font-style: italic;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.281);
}

.imagens-principais{
  background-color: #c6fffa;
  padding: 20px 40px;
  margin: 0 auto;
}
.imagens-principais2{
  background-color: #c6fffa;
  padding: 200px 50px;
  margin: 10px;
  border-radius: 300px;
}
.carrossel {
      position: relative;
      width: 100%;
      max-width: 1200px;
      height: 400px;
      margin: 30px auto;
      overflow: hidden;
      border-radius: 60px;
      background-color: #c6fffa;
    }

    .carrossel img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: none;
      border-radius: 60px;
    }

    .carrossel img.active {
      display: block;
    }

    .controles {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 20px;
    }

    .controles button {
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 10px 10px;
      cursor: pointer;
      border-radius: 30px;
      font-size: 18px;
    }

    .controles button:hover {
      background: rgba(0, 0, 0, 0.8);
    }
hr {
border: none;
height: 1px;
background: #eee;
margin: 20px 0;
}

.desktop-menu {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 25px;
margin-bottom: 10px;
font-size: 13px;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.13);
}

.desktop-menu a {
text-decoration: none;
color: #000000;
transition: color 0.2s;
font-weight: 500;
padding: 5px 10px;
border-radius: 4px;
transition: 0.3s ease-out;
}

.desktop-menu a:hover {
background-color: #e7e7e7;
}

.mobile-menu {
display: none;
}

.menu-mobile-btn {
display: none;
}

.page-title {
margin: 25px 0 15px;
font-size: 18px;
font-weight: 600;
color: #ffffff;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.425);
}

.product-count {
color: #b4b4b4;
margin-bottom: 20px;
font-size: 10px;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.11);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 250px)); /* 🔥 mesmo tamanho */
  gap: 25px;
  justify-content: center;   /* 🔥 centraliza o grid */
  margin: 0 auto 40px;
}



.product-card {
background: rgb(255, 255, 255);
border-radius: 5px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.product-image {
background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
background-size: 200% 100%;
height: 150px;
display: flex;
align-items: center;
justify-content: center;
}
.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s;
}

.product-card:hover .product-image img {
transform: scale(1.05);
}

.product-info {
padding: 15px;
}

.product-name {
font-weight: 600;
margin-bottom: 10px;
font-size: 9px;
color: #000000;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.178);
}

footer {
background: #c6fffa;
color: rgb(0, 0, 0);
padding: 30px 0;
margin-top: 40px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.footer-content {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 30px;
}

.footer-section {
flex: 1;
min-width: 200px;
}

.footer-section h3 {
margin-bottom: 15px;
font-size: 18px;
}

.footer-section ul {
list-style: none;
}

.footer-section ul li {
margin-bottom: 8px;
}

.footer-section a {
color: #000000;
text-decoration: none;
transition: color 0.3s;
}

.footer-section a:hover {
color: #000000;
}

.copyright {
text-align: center;
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.1);
color: #aaa;
font-size: 14px;
}

.whatsapp-float { 
position: fixed; 
bottom: 15px; 
right: 15px; 
width: 50px; 
height: 50px; 
background-color: #25d366; 
border-radius: 50%; 
display: flex; 
align-items: center; 
justify-content: center; 
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); 
z-index: 1000; 
transition: all 0.3s ease; 
text-decoration: none; 
} 

.whatsapp-float:hover { 
transform: scale(1.1); 
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4); 
background-color: #128C7E; 
} 

.whatsapp-icon { 
width: 30px; 
height: 30px; 
fill: white; 
} 

.product-button {
background: #c6fffa;
color: rgb(0, 0, 0);
border: none;
padding: 12px 20px;
border-radius: 6px;
font-size: 11px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s;
margin-top: auto;
text-align: center;
text-decoration: none;
display: block;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.151);
}

.product-button:hover {
background: #c6fffa;
}

@media (max-width: 768px) {
.desktop-menu {
    display: none;
}

.menu-mobile-btn {
    display: block;
    position: absolute;
    left: 1px;
    top: 20px;
    font-size: 26px;
    cursor: pointer;
    color: black;
    padding: 10px;
    z-index: 1001;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #c6fffa;
    text-align: center;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #c6fffa;
    z-index: 1000;
}

.mobile-menu a {
    padding: 12px 0;
    display: block;
    color: black;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s;
}

.mobile-menu a:hover {
    background-color: #abf0ea;
}
.mobile-menu.show {
    display: flex;
}
.logo {
    text-align: center;
    margin-left: 40px;
    margin-right: 40px;
}

.products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.logo-main {
    font-size: 28px;
}

.logo-cabel {
    font-size: 40px;
}

.logo-subtitle {
    font-size: 16px;
}

.whatsapp-float { 
    width: 55px; 
    height: 55px; 
    bottom: 15px; 
    right: 15px; 
} 

.whatsapp-icon { 
    width: 26px; 
    height: 26px; 
} 
}

@media (max-width: 480px) {
.products-grid {
    grid-template-columns: 1fr;
}

.footer-content {
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
}

.logo-cabel {
    font-size: 36px;
}

.logo-subtitle {
    font-size: 14px;
}
}
.detalhes-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.detalhes-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.detalhes-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.detalhes-imagem img {
  width: 450px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.detalhes-info {
  flex: 1;
  min-width: 280px;
}

.detalhes-info h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ffffff;
}

.detalhes-info p {
  margin-bottom: 20px;
  color: white;
}

.detalhes-tabela {
  list-style: none;
  padding-left: 0;
  color: white;
}

.detalhes-tabela li {
  margin-bottom: 8px;
}

.detalhes-tabela span {
  font-weight: 600;
}

.botao-whats {
  margin-top: 25px;
}

.botao-whats a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 8px;
  transition: background 0.3s;
}

.botao-whats a:hover {
  background: #128C7E;
}

.botao-whats img {
  width: 24px;
  height: 24px;
}

.info-extra {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-top: 30px;
  font-size: 12px;
}

.info-extra h3 {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .detalhes-main {
    flex-direction: column;
    align-items: center;
  }

  .detalhes-info {
    text-align: center;
  }

  .botao-whats a {
    justify-content: center;
  }

  .detalhes-imagem img {
    width: 100%;
    max-width: 350px;
  }
}
.galeria {
  display: flex;
  gap: 15px; 
  justify-content: center; 
  flex-wrap: wrap; 
}

.galeria img {
  width: 150px; 
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.galeria img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.relacionados{
  text-align: center;
  color: white;
}

.relacionados-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px; 
}

.relacionado-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  padding: 15px;
  flex: 1 1 180px;
  max-width: 200px;
  transition: transform 0.3s;
}

.relacionado-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.relacionado-card h4 {
  font-size: 9px;
  margin-bottom: 10px; 
}

.relacionado-card button {
  background: #c6fffa;
  color: black;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.relacionado-card button:hover {
  background: #abf0ea;
}

@media (max-width: 768px) {
  .galeria img {
    width: 100%;
    max-width: 150px;
  }

  .relacionados-grid {
    flex-direction: column;
    align-items: center;
  }

  .relacionado-card {
    max-width: 250px;
  }
  }

.container-categorias{
  display: grid;
  margin: 10px;
  justify-items: center;
}
.categorias{
    background-color: #E8E8E8;
    display: flex;
    margin: 10px;
    gap: 10px;
    padding: 50px 50px;
    
}  
.box-categorias{
    background-color: black;
    padding: 80px 170px;
    display: flex;
    
}
.button-inicial{
  padding: 80px 60px;
  background-color: #c6fffa;
  border: 0;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.123);
  transition: 0.3s ease-out;
  border-radius: 5px;
}
.button-inicial:hover{
  background-color: #abf0ea;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.568);
}

.font-categorias{
  font-family: Arial, Helvetica, sans-serif;
  color: black;
}
@media (max-width: 768px) {
  .categorias {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
  }

  .categorias::-webkit-scrollbar {
    height: 6px;
  }

  .categorias::-webkit-scrollbar-thumb {
    background-color: #c6fffa;
    border-radius: 4px;
  }

  .button-inicial {
    flex: 0 0 auto;
    scroll-snap-align: center;
    min-width: 150px;
    text-align: center;
  }

  .container-categorias {
    justify-items: start;
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  .container-categorias {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;

   
    scrollbar-width: none; 
    -ms-overflow-style: none; 
  }

  .container-categorias::-webkit-scrollbar {
    display: none; 
  }

  .categorias {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px;
  }

  .button-inicial {
    flex: 0 0 auto;
    min-width: 200px;
  }
}
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 5px; 
    
  }

  .product-image img {
    height: 150px
  }
} 


.beneficios-cabel {
  background-color: transparent;
  padding: 60px 20px;
  text-align: center;
}

.beneficios-cabel h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitulo-cabel {
  font-size: 16px;
  margin-bottom: 40px;
  color: #555;
}

.cards-cabel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.beneficio-cabel {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficio-cabel:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.beneficio-cabel img {
  width: 60px;
  margin-bottom: 20px;
}

.beneficio-cabel h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.beneficio-cabel p {
  font-size: 14px;
  color: #666;
}
.banner {
  width: 100%;
  display: flex;
  justify-content: center; 
  margin: 10px 0;
  gap: 10px;
  border-radius: 10px;
}
.banner-img2 {
  width: 100%;
  max-width: 800px; 
  height: auto;      
  display: block;
  border-radius: 10px; 
}
.banner-img3 {
  width: 100%;
  max-width: 400px; 
  height: auto;      
  display: block;
  border-radius: 10px; 
}


@media (max-width: 768px) {
  .banner {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .banner a {
    display: block;
    margin: 0;
  }

  .banner-img2 {
    margin-bottom: 0;
  }

  .banner-img3 {
    margin-bottom: 0;
    max-width: 180px;
  }

  .categorias-section {
    margin-top: 20px; 
    padding-top: 0;
  }
}
.logo-marmore {
  text-align: center;
  color: white;
  margin-top: 10px;
}
.categorias-marmore {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 50px;
}
.categorias-marmore2{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 50px;
}
.imagens-marmore2 {
  display: flex;
  justify-content: center;
  gap: 80px;
  width: 600px;
  height: 600px;
  border-radius: 50px;
}
.categorias-marmore.invertido {
  flex-direction: row-reverse;
  
}
.imagens-marmore {
  display: flex;
  gap: 20px;
}

.img-marmore {
  width: 400px;
  border-radius: 10px;
}
.texto-marmore {
  max-width: 400px;
  color: #fff;
}
@media (max-width: 768px) {
  .categorias-marmore {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .categorias-marmore.invertido {
  flex-direction: row-reverse;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
  .imagens-marmore {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
  }
  .img-marmore {
    width: 48%;
    max-width: 48%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }
  .texto-marmore {
    font-size: 10px;
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    background: rgba(0,0,0,0.6);
    border-radius: 10px;
  }
  .categorias-marmore2{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 10px;
}
.imagens-marmore2 {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 150px;
  height: 150px;
  border-radius: 50px;
}
}
.galeria-marmore {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 25px;
  padding: 40px;
}

/* Card */
.item-marmore {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
}

.item-marmore:hover {
  transform: scale(1.05);
}

/* Imagem */
.item-marmore img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Texto */
.item-marmore p {
  color: #fff;
  padding: 10px;
  font-size: 14px;
}
@media (max-width: 768px) {

  .galeria-marmore {
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px;
    padding: 10px;
  }

  .item-marmore img {
    height: 100px; /* menor pra caber melhor */
  }

  .item-marmore p {
    font-size: 10px;
  }

}



