/* ===========================
   RESET
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  background: #f5f5f5;
}

/* ===========================
   HEADER
=========================== */
header {
  width: 100%;
  background: #1d1d1d;
  height: 100px;
  position: fixed; /* fixo no topo */
  top: 0;
  left: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
}


/* Logo apenas no HEADER */
.logo img {
  max-height: 100px; /* diminui só no header */
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.menu {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100px;
  width: 100%;
}
.menu ul {
  display: flex;
  list-style: none;
  gap: 70px;
}
.menu-left { justify-content: flex-end; display: flex; padding-right: 40px; }
.menu-right { justify-content: flex-start; display: flex; align-items: center; gap: 60px; padding-left: 40px; }
.menu ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  transition: color .3s ease;
  font-size: 13px;
}
.menu ul li a:hover { color: #f2ca30; }
.logo {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 0 30px;
}
.social { display: flex; gap: 10px; }
.social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: #242424; color: #fff; font-size: 14px;
  transition: all .3s ease;
}
.social a:hover { background: #373737; }
.hamburger { display: none; font-size: 26px; color: #fff; cursor: pointer; position: absolute; right: 20px; }

/* ===========================
   MOBILE MENU
=========================== */
/* Esconde no desktop */
.mobile-menu { display: none; }

/* Só no mobile */
@media (max-width: 768px) {
  .mobile-menu {
    display: block;
    position: absolute;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100%;
    background: #1d1d1d;
    padding: 30px 20px;
    transition: right .3s ease;
    z-index: 2000;
  }
  .mobile-menu.active { right: 0; }
  .mobile-menu .close-btn { font-size: 22px; color: #fff; cursor: pointer; margin-bottom: 20px; text-align: right; }
  .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 20px; }
  .mobile-menu ul li a { text-decoration: none; color: #fff; font-size: 15px; font-weight: 700; transition: color .3s ease; }
  .mobile-menu ul li a:hover { color: #f2ca30; }
}

/* ===========================
   SLIDER PRINCIPAL
=========================== */
.slider {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
  margin-top: 100px;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Slide base */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Imagem */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 🔹 Overlay degradê atrás do título e botão */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(29, 29, 29, 0.95) 0%,
    rgba(29, 29, 29, 0.75) 40%,
    rgba(29, 29, 29, 0.0) 70%
  );
  z-index: 1;
}

/* Conteúdo dentro do slide */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 0px; /* margem lateral igual ao resto do site */
  color: #fff;
  z-index: 2; /* acima do degradê */
}

/* 🔹 Apenas título com sombra */
.slide-content h2 {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.1;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

/* 🔹 Botão CTA */
.btn-cta {
  background: none;
  border: 3px solid #f2ca30;
  color: #f2ca30;
  padding: 16px 42px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 35px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta:hover {
  background: #f2ca30;
  color: #1d1d1d;
}

/* Botões navegação */
.slider .prev,
.slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1d1d1d;
  color: #fff;
  border: none;
  padding: 14px;
  cursor: pointer;
  font-size: 22px;
  z-index: 998;
}
.slider .prev { left: 0; border-radius: 0 5px 5px 0; }
.slider .next { right: 0; border-radius: 5px 0 0 5px; }
.slider .prev:hover,
.slider .next:hover { background: #333; }

/* Responsivo */
@media (max-width: 768px) {
  .slider { height: 1000px; }
  .slide-content {
    align-items: center;
    text-align: center;
  }
  .slide-content h2 {
    font-size: 36px;
  }
}



/* ===========================
   SOBRE
=========================== */
.about {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 100px 20px 100px; /* topo, lados, baixo */
  overflow: hidden;
}
.about-rect {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 200px; height: 400px; background: #1d1d1d; transition: all .6s ease;
}
.about-rect.expanded { top: 0; transform: none; height: 100%; }
.about-container {
  position: relative; max-width: 1100px; margin: 0 auto; width: 100%;
  display: flex; justify-content: space-between; align-items: center; z-index: 2;
}
.about-text { flex: 1; padding-right: 40px; }
.about-text h2 {
  font-size: 68px; font-weight: 800;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 0.5;
  margin-bottom: 60px;
  color: #1d1d1d;
}
.about-text h2 span { display: block; font-weight: 800; }
.about-text p {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px; line-height: 1.8; color: #333;
}
.about-image { flex: 1; display: flex; justify-content: center; align-items: center; }
.about-image img { max-width: 100%; max-height: 500px; object-fit: cover; border-radius: 10px; }

/* Botão Ver Mais */
.about-more-btn { margin-top: 20px; text-align: left; }
.about-more-btn button {
  background: none; border: 2px solid #1d1d1d; color: #1d1d1d;
  padding: 12px 30px; font-size: 16px; font-weight: 600;
  border-radius: 25px; cursor: pointer; transition: all .3s ease;
}
.about-more-btn button:hover { background: #1d1d1d; color: #fff; }

/* ===========================
   SOBRE - SESSÃO ESCONDIDA
=========================== */
.about-more { display: none; margin-top: 40px; padding: 40px 0; }
.about-more-container {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;
}

/* Cards */
.info-box {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 15px;
  background: #ffffff;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.info-box .icon {
  width: 65px; height: 65px; font-size: 28px;
  background: #f2ca30; color: #1d1d1d;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; margin-bottom: 15px;
}
.info-box h3 {
  font-size: 24px; font-weight: 800;
  color: #1d1d1d; margin-bottom: 8px;
}
.info-box p {
  font-size: 18px; line-height: 1.7;
  color: #444;
}
.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  background: #f2ca30;
}
.info-box:hover .icon { background: #1d1d1d; color: #f2ca30; }
.info-box:hover h3,
.info-box:hover p { color: #1d1d1d; }



/* ===========================
   SLIDER DE CATEGORIAS
=========================== */
.categories-slider {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  background: #1d1d1d;
}

.categories-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.category-item {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.category-item.active {
  opacity: 1;
  z-index: 2;
}

.category-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center; /* mostra mais do topo */
}

/* Texto sobreposto */
.category-text {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center; /* centraliza verticalmente */
  box-sizing: border-box;
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.8);
  overflow: hidden;
}

/* Degradê */
.category-text::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, #1d1d1d, rgba(29,29,29,0) 60%);
  z-index: 1;
}

/* Container para alinhar igual ao resto do site */
.category-text .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Estilo do título */
.category-text h2 {
  font-size: 56px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  color: #fff;
}


/* ===========================
   RESPONSIVO
=========================== */
@media (max-width: 768px) {
  .menu { display: none; }
  .container { justify-content: space-between; padding: 0 20px; }
  .logo { text-align: left; font-size: 20px; margin-left: 10px; padding: 0; }
  .hamburger { display: block; }
  .slider { height: 400px; }
  .slider .prev, .slider .next { font-size: 16px; padding: 10px; }
  .about { flex-direction: column; height: auto; padding: 40px 20px; }
  .about-rect { display: none; }
  .about-container { flex-direction: column; text-align: center; }
  .about-text { padding: 0; margin-bottom: 20px; }
  .about-image img { max-width: 100%; border-radius: 10px; }
  .about-more-container { grid-template-columns: 1fr; gap: 20px; }
  .slide-content h2 { font-size: 36px; text-align: center; }
  .slide-content { align-items: center; text-align: center; }
}

/* ===========================
   ABOUT2 SECTION
=========================== */
.about2 {
  width: 100%;
  background: #f1cf00;
  padding: 80px 20px;
}
.about2-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.about2-text { flex: 1; }
.about2-text h2 {
  font-size: 68px;
  font-weight: 800;
  line-height: 0.5;
  color: #1d1d1d;
  margin-bottom: 60px;
}
.about2-text h2 span { display: block; }
.about2-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #1d1d1d;
}
.about2-image { flex: 1; display: flex; justify-content: center; }
.about2-image img {
  max-width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .about2-container { flex-direction: column; text-align: center; }
  .about2-text h2 { font-size: 42px; }
}

/* ===========================
   CATÁLOGO
=========================== */
.catalogo {
  width: 100%;
  height: 180px;
  background: #1d1d1d url("images/bg-catalogo.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}
.catalogo-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.catalogo-text h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
}
.catalogo-button .btn-download {
  background: none;
  border: 3px solid #f2ca30;
  color: #f2ca30;
  padding: 20px 50px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 35px;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
}
.catalogo-button .btn-download:hover {
  background: #f2ca30;
  color: #1d1d1d;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  width: 100%;
  background: #f1cf00;
  padding: 60px 20px 20px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-col {
  flex: 1;
  min-width: 250px;
}
.footer-logo {
  font-size: 28px;
  font-weight: 800;
  color: #1d1d1d;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-col h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1d1d1d;
}
.footer-col p {
  font-size: 15px;
  color: #1d1d1d;
  margin-bottom: 8px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  text-decoration: none;
  color: #1d1d1d;
  font-weight: 600;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover {
  color: #333;
}
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1d1d1d;
  color: #f1cf00;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: #333;
  color: #fff;
}
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-form input,
.footer-form textarea {
  padding: 12px 15px;
  border: 2px solid #1d1d1d;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
}
.footer-form textarea {
  min-height: 100px;
  resize: none;
}
.footer-form button {
  background: none;
  border: 2px solid #1d1d1d;
  color: #1d1d1d;
  padding: 12px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer-form button:hover {
  background: #1d1d1d;
  color: #f1cf00;
}
.footer-copy {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 20px;
  color: #1d1d1d;
  font-size: 14px;
}

/* ===========================
   FOOTER (UPDATE)
=========================== */
.footer {
  background: #1d1d1d;
}
.footer-col p {
  font-size: 16px;
  color: #f5f5f5;
}
.footer-col ul li a {
  font-size: 16px;
  color: #f5f5f5;
}
.footer-col ul li a:hover {
  color: #f2ca30;
}
.footer-col h3 {
  font-size: 24px;
  color: #f2ca30;
}
.footer-copy {
  text-align: center;
  padding: 15px 0;
  color: #fff;
  font-size: 15px;
}
.footer-copy a.drweb {
  color: #fff;
  text-decoration: none;
  font-weight: bold;         
  transition: all 0.3s ease-in-out;
}
.footer-copy a.drweb:hover {
  color: #FFD700;
  text-shadow: 0 0 4px #FFD700,
               0 0 6px #FFD700;
}

/* ===========================
   FOOTER (UPDATE V3)
=========================== */
.footer {
  background: linear-gradient(180deg, #242424, #1d1d1d);
}
.footer-social a {
  background: #242424;
  color: #f2ca30;
}
.footer-social a:hover {
  background: #f2ca30;
  color: #1d1d1d;
}
.footer-form button {
  background: none;
  border: 3px solid #f2ca30;
  color: #f2ca30;
  padding: 20px 50px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 35px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer-form button:hover {
  background: #f2ca30;
  color: #1d1d1d;
}
.footer-copy {
  border-top: 1px solid #4a4a4a;
}

/* ===========================
   FOOTER (UPDATE V4)
=========================== */
.footer-col p i {
  margin-right: 8px;
  color: #f1cf00;
}
.footer-form button {
  padding: 14px 40px;
  font-size: 18px;
}

/* ===========================
   CLIENTES
=========================== */
.clientes {
  width: 100%;
  background: #fff;
  padding: 60px 20px;
}
.container-clientes {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.clientes-track {
  display: flex;
  gap: 60px;
  animation: scrollClientes 30s linear infinite;
  width: max-content;
}
.cliente-item {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cliente-item img {
  max-width: 200px;
  max-height: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter .4s ease;
}
.cliente-item img:hover {
  filter: grayscale(0%);
}
@keyframes scrollClientes {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ALERTA DO FORMULÁRIO */
.form-alert {
  margin-top: 12px;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  display: none;
  transition: opacity 0.5s ease;
}
.form-alert.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-alert.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ===========================
   PRODUTOS
=========================== */
.produtos {
  width: 100%;
  background: #fff;
  padding: 80px 20px;
}
.container-produtos {
  max-width: 1100px;
  margin: 0 auto;
}
.categorias-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.categorias-inner {
  display: flex;
  gap: 10px;
  overflow: hidden;
  flex: 1;
}
.categoria {
  background: #f5f5f5;
  border: 2px solid #1d1d1d;
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  flex: none;
  transition: all .3s ease;
}
.categoria.active, .categoria:hover {
  background: #f2ca30;
  border-color: #f2ca30;
  color: #1d1d1d;
}
.prev-cat, .next-cat {
  background: #1d1d1d;
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 6px;
}
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.produto-item {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
}
.produto-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.produto-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.produto-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1d1d1d;
}

/* ===========================
   MODAL PRODUTO
=========================== */
.modal-produto {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}
.modal-produto img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}
.close-modal {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
.close-modal:hover {
  color: #f2ca30;
}
#caption {
  text-align: center;
  color: #fff;
  margin-top: 15px;
  font-size: 18px;
}

/* ===========================
   PAGINAÇÃO PRODUTOS
=========================== */
#paginacao-produtos {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 30px;
}
#paginacao-produtos .btn-pagina {
  all: unset;
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
#paginacao-produtos .btn-pagina:hover {
  background: #444;
}
#paginacao-produtos .btn-pagina.active {
  background: #f2ca30;
  color: #000;
  font-weight: 700;
}

.vetor-tradicao {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.about-image video {
  width: 500px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}


/* Container do álbum */
.album-fotos {
  position: relative;
  width: 100%;
  max-width: 600px;     /* largura total do conjunto */
  height: 360px;        /* altura para caber a sobreposição */
  margin: 60px auto;
}

/* Base das fotos */
.album-fotos .foto {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.4s ease;
}
.album-fotos .foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

/* Foto 1 (maior, ao topo e ao fundo, centralizada) */
.album-fotos .foto1 {
  width: 400px;
  height: 260px;
  top: 0;
  left: 0;               /* centraliza com left/right e margin auto */
  right: 0;
  margin: 0 auto;
  z-index: 1;            /* fica por baixo das 2 e 3 */
}

/* Foto 2 (abaixo, à esquerda, por cima da 1) */
.album-fotos .foto2 {
  width: 200px;
  height: 140px;
  top: 190px;            /* fica abaixo da 1, sobrepondo um pouco */
  left: 40px;            /* passa um pouco para o lado esquerdo */
  transform: rotate(-6deg);
  z-index: 4;            /* SOBRE a foto 1 */
}

/* Foto 3 (abaixo, à direita, por cima da 1) */
.album-fotos .foto3 {
  width: 200px;
  height: 140px;
  top: 190px;            /* fica abaixo da 1, sobrepondo um pouco */
  right: 40px;           /* passa um pouco para o lado direito */
  transform: rotate(6deg);
  z-index: 4;            /* SOBRE a foto 1 */
}

/* Hover: destaque com zoom e sombra */
.album-fotos .foto:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.album-fotos .foto2:hover,
.album-fotos .foto3:hover {
  transform: rotate(0deg);          /* ficam retinhas ao passar o mouse */
}
.album-fotos .foto:hover img {
  transform: scale(1.08);           /* zoom suave */
}

/* Responsivo */
@media (max-width: 768px) {
  .album-fotos {
    max-width: 100%;
    height: auto;
  }
  .album-fotos .foto {
    position: relative;
    width: 100% !important;
    height: auto !important;
    top: unset; left: unset; right: unset;
    margin: 0 0 12px 0;
    transform: none !important;
    z-index: 1 !important;
  }
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.icon-arrow {
  animation: arrowBlink 1.2s infinite;
}

@keyframes arrowBlink {
  0%   { opacity: 1; transform: translateX(0); }
  25%  { opacity: 0.5; transform: translateX(4px); }
  50%  { opacity: 1; transform: translateX(0); }
  75%  { opacity: 0.5; transform: translateX(6px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* ===========================
   OTIMIZAÇÃO MOBILE GLOBAL
=========================== */
@media (max-width: 768px) {

  /* HEADER */
  header {
    height: 100px;
    padding: 0 15px;
  }
  .logo img {
    max-height: 60px;
  }
  .menu { display: none; }

  /* SLIDER PRINCIPAL */
  .slider {
    height: 380px;
    margin-top: 70px;
  }
  .slide-content {
    align-items: center;
    text-align: center;
    padding: 0 15px;
  }
  .slide-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .btn-cta {
    padding: 12px 28px;
    font-size: 16px;
  }

  /* SOBRE */
  .about {
    padding: 40px 15px;
  }
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .about-text h2 {
    font-size: 36px;

  }
  .about-text p {
    font-size: 16px;
  }

  /* ABOUT2 */
  .about2-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .about2-text h2 {
    font-size: 32px;

  }
  .about2-text p {
    font-size: 16px;
  }

  /* SLIDER DE CATEGORIAS */
  .categories-slider {
    height: 220px;
  }
  .category-text h2 {
    font-size: 28px;
    text-align: center;
  }
  .category-text .container {
    padding: 0 15px;
    text-align: center;
  }

  /* PRODUTOS */
  .produtos {
    padding: 40px 15px;
  }
  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .produto-item img {
    height: 160px;
  }

  /* FOOTER */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .footer-col {
    min-width: unset;
    width: 100%;
  }

  /* CLIENTES */
  .footer-copy a.drweb::before {
    content: "\A";
    white-space: pre;
    display: block;
  }

  .footer-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .clientes {
    padding: 40px 15px;
  }
  .cliente-item img {
    max-width: 140px;
    max-height: 80px;
  }

  /* ALBUM DE FOTOS */
  .album-fotos {
    margin: 40px auto;
  }
}
/* =====================
   MOBILE CUSTOM PATCHES
===================== */
@media (max-width: 768px) {
  header { display:flex; justify-content:space-between; align-items:center; padding:0 15px; height:100px; }
  .logo { height:50px; width:auto; }
  .hamburger { font-size:28px; cursor:pointer; }
  .mobile-menu { position:fixed; top:0; right:-100%; width:70%; height:100%; background:#1d1d1d; transition:0.3s; padding:20px; z-index:3000; }
  .mobile-menu.active { right:0; }
  .mobile-menu .close-btn { font-size:28px; color:#fff; cursor:pointer; text-align:right; }
  .mobile-menu ul { list-style:none; padding:0; margin:30px 0; }
  .mobile-menu li { margin:20px 0; }
  .mobile-menu a { color:#fff; font-size:18px; text-decoration:none; }

  /* Slider principal */
  .slider { height:520px; }
  .slide-content h2 { font-size:clamp(32px,12vw,46px); line-height:1.2; }

  .about-text h2 {
  font-size: clamp(32px, 12vw, 46px);
  line-height: 0.5; 
}
	
  .about-more { text-align:center; margin-top:20px; }
  .btn-about { margin-top:20px; }

  /* Categories */
  .category-text h2 { font-size:clamp(24px,7vw,32px); }

  /* About2 */
  .about2-text h2 { font-size: clamp(32px, 12vw, 46px);
    line-height: 0.5; }

  /* Catalogo */
  .catalogo-container h2 { text-align:center; font-size:clamp(24px,7vw,32px); margin-bottom:15px; }
  .catalogo-container .btn-download { display:block; margin:0 auto; }

  /* Footer */
  .about-more-btn {
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }
  .about-more-btn button {
    display: inline-block;
    margin: 0 auto;
  }
  .about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-image .about-more-btn {
    margin-top: 20px;
  }

  .footer-social { display:flex; justify-content:center; margin-top:15px; }
}

/* ===========================
   LOGO MOBILE FIX
=========================== */
.logo-mobile { display: none; }

@media (max-width: 768px) {
  .logo-mobile {
    display: block;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
  }
  .logo-mobile img {
    height: 55px;
    width: auto;
  }
  header .logo { display: none; } /* esconde a logo desktop */
}


/* ===========================
   BOTÃO FIXO WHATSAPP
=========================== */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 5000;
  background: #25D366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 1.6s infinite; /* efeito pulsar */
}

.whatsapp-button img {
  width: 42px;
  height: 42px;
  display: block;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* 🔹 Animação de pulsar */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


.categoria,
.categoria:visited,
.categoria:active {
  color: #1d1d1d; /* cor padrão quando está "off" */
  text-decoration: none;
}

/* Força estilo dos links de telefone no rodapé */
.footer a[href^="tel"],
.footer a[href^="tel"]:visited,
.footer a[href^="tel"]:active {
  color: #f5f5f5;   /* mesma cor que você usa no footer */
  text-decoration: none;
  font-weight: 600; /* igual aos outros links */
}

.footer a[href^="tel"]:hover {
  color: #f2ca30;   /* segue seu hover padrão */
}


/* ===========================
   CATÁLOGO MOBILE FIX
   Título em cima, botão embaixo centralizado
=========================== */
@media (max-width: 768px) {
  .catalogo {
    padding: 40px 20px; /* mais respiro vertical */
    height: auto;       /* deixa altura automática */
  }

  .catalogo-container {
    flex-direction: column;   /* título em cima, botão embaixo */
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .catalogo-text h2 {
    font-size: 30px;   /* menor título no mobile */
  }

  .catalogo-button .btn-download {
    padding: 10px 28px;  /* botão menor */
    font-size: 15px;
    border: 2px solid #f2ca30;
    border-radius: 25px;
    display: inline-block;
    margin: 0 auto;
  }
}


/* ===========================
   ABOUT MOBILE FIX
   Apenas mobile: texto → imagem → botão → sessão oculta
=========================== */
@media (max-width: 768px) {
  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    order: 1;
  }

  .about-image {
    order: 2;
    margin: 15px 0;
  }

  .about-more-btn {
    order: 3;
    margin-top: 15px;
    text-align: center;
    width: 100%;
  }

  /* sessão oculta continua abaixo */
  .about-more {
    order: 4;
    margin-top: 15px;
  }
}

