/* Reset ou ajustes básicos */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 'Lato', sans-serif;
  color: #333;
  background-color: #fff;
  margin-top: 0 !important;
}

.heading-minor {
  font-family: 'Raleway', sans-serif;
}

.footer .bi-instagram:hover {
  color: #c19a6b; /* tom dourado elegante */
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* ===== HEADER BASE ===== */
.header {
  background-color: #333;
  font-family: 'Raleway', sans-serif;
  margin-top: 0;
  padding-top: 0;
  padding: 5px !important;
}

.top-bar {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
  background-color: #f8f9fa;
}

.top-bar .container {
  align-items: center;
  gap: 0.1rem;
}

.logo img {
  height: 100px; /* menor e mais equilibrado */
  object-fit: contain;
}

.search-bar input {
  height: 36px; /* mais fino */
  font-size: 0.9rem;
  padding-left: 1rem;
  padding-right: 2.5rem;
}

.search-bar .search-btn {
  top: 3px;
  right: 10px;
  font-size: 0.9rem;
  color: black;
}

.icons {
  gap: 1.5rem;
}

.icons i {
  font-size: 1.1rem;
  color: #444;
}

.icons span {
  font-size: 0.8rem;
  display: block;
  margin-top: 2px;
}

.icons i:hover {
  color: #000;
}

.cart-count {
  font-size: 0.7rem;
}

.navbar {
  background-color: #fff;
  padding-top: 0.1rem !important;
  padding-bottom: 0.1rem !important;
  border-top: 1px solid #eee;
}

.navbar-nav .nav-link {
  font-size: 0.9rem;
  padding: 0.3rem 0.75rem;
  color: #444;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #000;
}

.dropdown-menu {
  border-radius: 0;
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}
.dropdown-menu.show {
  display: block;
  opacity: 1;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
  .top-bar {
    text-align: center;
  }

  .logo {
    width: 100%;
    justify-content: center;
  }

  .search-bar {
    width: 100%;
  }

  .icons {
    justify-content: center;
    width: 100%;
    gap: 1.5rem;
  }

  .icons span {
    font-size: 0.8rem;
  }

  .navbar-nav .nav-item {
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 0;
  }
}

@media (max-width: 576px) {
  .search-bar input {
    height: 38px;
    font-size: 0.9rem;
  }

  .icons i {
    font-size: 1.2rem;
  }

  .icons {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .zoom-area {
    display: none !important;
  }

  .main-img {
    width: 100%;
  }

  .imagem-zoom-container {
    flex-direction: column;
    align-items: center;
  }
  .cart_container {
        margin: 40px 15px;
        padding: 25px;
      }

      .cart_title {
        font-size: 1.6em;
      }

      .cart_item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .cart_item span {
        font-size: 0.95em;
      }

      .cart_btn-remove {
        align-self: flex-end;
      }

      .cart_summary {
        text-align: center;
      }
  .container-guia h2 {
    font-size: 2em;
  }

  .secao h3 {
    font-size: 1.4em;
  }

  .container-guia .intro {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .card-imagem p {
    font-size: 0.9em;
  }
  .titulo-garantia {
    font-size: 2rem;
  }
  .intro-garantia {
    font-size: 1rem;
  }
  .item-garantia h3 {
    font-size: 1.2rem;
  }
  .item-garantia p {
    font-size: 0.95rem;
  }
  .sobre-container {
        flex-direction: column;
        text-align: center;
      }

      .insta-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .insta-info {
        margin: 10px 0;
      }
  .top-bar {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }

  .search-bar input {
    height: 34px;
  }

  .icons {
    gap: 1rem;
  }

  .icons span {
    display: none; /* mostra só os ícones no mobile */
  }

  .navbar-nav .nav-link {
    padding: 0.4rem 0;
  }

  .carousel-caption h2 {
        font-size: 2rem;
      }
      .carousel-caption p {
        font-size: 1rem;
      }

      .sobre-nos {
    text-align: center;
  }
  .sobre-nos h2 {
    margin-top: 1rem;
  }
}

/* Abre o dropdown ao passar o mouse */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* remove o pequeno espaçamento do Bootstrap */
}

/* Garante que o link principal "Produtos" não fique ativo estranho */
.nav-item.dropdown:hover > .nav-link {
  color: #000; /* cor quando o mouse estiver em cima */
}


/* Altura do carrossel */
    .carousel-item {
      height: 100vh;
      min-height: 400px;
      background-position: center;
      background-size: cover;
      position: relative;
      transition: opacity 1.5s ease-in-out; /* suaviza a troca */
    }

    /* Sobreposição leve */
    .carousel-item::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.25);
    }

    /* Conteúdo central */
    .carousel-caption {
      bottom: 35%;
      z-index: 10;
      transition: opacity 1.2s ease, transform 1.2s ease;
    }

    .carousel-caption h2 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      color: #fff;
      text-shadow: 0 2px 4px rgba(0,0,0,0.6);
    }

    .carousel-caption p {
      font-size: 1.2rem;
      color: #fff;
    }

    .carousel-caption .btn {
      font-weight: 600;
      padding: 0.7rem 2rem;
      border-radius: 30px;
      background-color: #444;
      color: #fff;
      border: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .carousel-caption .btn:hover {
      background-color: #6c63ff;
      transform: scale(1.05);
    }

    /* Efeito suave no texto */
    .carousel-item.active .carousel-caption {
      opacity: 1;
      transform: translateY(0);
    }
    .carousel-item:not(.active) .carousel-caption {
      opacity: 0;
      transform: translateY(30px);
    }

    /* Animação do texto durante o slide */
    .carousel-item.active .carousel-caption {
      opacity: 1;
      transform: translateY(0);
    }

    .carousel-item:not(.active) .carousel-caption {
      opacity: 0;
      transform: translateY(30px);
    }

/* ===== INDICADORES (BOLINHAS) ===== */
    .carousel-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.6);
      transition: all 0.3s ease;
      border: none;
    }

    .carousel-indicators .active {
      background-color: #fff;
      width: 12px;
      height: 12px;
    }

.card {
    overflow: hidden;
  transition: transform 0.3s ease;
}
.card img {
  width: 100%;
  display: block;
  transition: opacity 0.5s ease-in-out;
}
.card:hover {
  transform: translateY(-5px);
}
.card img.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.card:hover img.hover-image {
  opacity: 1;
}

.card:hover img.default-image {
  opacity: 0;
}
.card-img-top {
  object-fit: cover;
  height: 250px;
}
.btn-dark {
  background-color: #222;
  border-color: #222;
}
.btn-outline-dark {
  color: #222;
  border-color: #222;
}
.btn-outline-dark:hover {
  background-color: #222;
  color: #fff;
}
footer {
  font-size: 0.9rem;
  color: #777;
  background-color: #f8f9fa;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

.sobre-nos {
  background-color: #fff;
}

.sobre-nos h2 {
  font-size: 2rem;
  color: #111;
}

.sobre-nos p {
  font-size: 1rem;
  line-height: 1.6;
}

.sobre-img {
  width: 80%;
  max-width: 320px;
  object-fit: cover;
}

/* ===== Estilos gerais ===== */
.sobre-nos {
  width: 100%;
  background-color: #fff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.sobre-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

/* ===== Texto ===== */
.sobre-texto {
  flex: 1 1 500px;
}

.sobre-texto h2 {
  font-size: 2.4em;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

.sobre-texto p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.7;
}

.sobre-texto strong {
  color: #000;
  font-weight: 600;
}

/* ===== Imagens ===== */
.sobre-imagens {
  flex: 1 1 450px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-imagens img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.sobre-imagens img:hover {
  transform: scale(1.03);
}

/* Efeito de sobreposição */
.img-principal {
  width: 100%;
  max-width: 420px;
  z-index: 2;
}

.img-secundaria {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 60%;
  max-width: 250px;
  z-index: 1;
  opacity: 0.9;
}

/* ===== Responsividade ===== */
@media (max-width: 900px) {
  .entp_block {
    flex-direction: column;
    text-align: center;
  }

  .entp_image img {
    max-width: 90%;
  }

  .entp_subtitle {
    font-size: 1.5em;
  }

  .entp_text p,
  .entp_text ul li {
    font-size: 1em;
  }
  .sobre-content {
    flex-direction: column;
    text-align: center;
  }

  .sobre-imagens {
    position: relative;
    margin-top: 30px;
  }

  .img-secundaria {
    position: absolute;
    right: 10%;
    bottom: -15%;
    width: 50%;
  }

  .sobre-texto h2 {
    font-size: 2em;
  }

  .sobre-texto p {
    font-size: 1em;
  }
}

.garantia-section {
  width: 100%;
  background-color: #fff;
  padding: 60px 20px;
  color: #222;
}

.container-garantia {
  max-width: 1000px;
  margin: 0 auto;
}

.titulo-garantia {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.intro-garantia {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: center;
}

.conteudo-garantia {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.item-garantia h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.item-garantia p {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

.item-garantia ul {
  margin-top: 10px;
  padding-left: 20px;
}

.chamada-final {
  text-align: center;
  font-size: 1rem;
  color: #555;
}
/* ====== Estrutura geral ====== */
.guia-medidas {
  background-color: #fff;
  color: #333;
  padding: 70px 20px;
  display: flex;
  justify-content: center;
}

.container-guia {
  width: 100%;
  max-width: 1200px;
}

/* ====== Cabeçalho ====== */
.container-guia h2 {
  text-align: center;
  font-size: 2.4em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.container-guia .intro {
  text-align: center;
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

/* ====== Seções ====== */
.secao {
  margin-bottom: 60px;
}

.secao h3 {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  color: #111;
}

/* ====== Galeria ====== */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.card-imagem {
  background-color: #fafafa;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 500px;
}

.card-imagem:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.card-imagem img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.card-imagem p {
  padding: 15px 20px;
  font-size: 0.95em;
  color: #444;
  line-height: 1.5;
}
.entp_section {
  background-color: #ffffff;
  color: #333333;
  padding: 70px 20px;
  display: flex;
  justify-content: center;
}

.entp_container {
  width: 100%;
  max-width: 1200px;
}

.entp_title {
  text-align: center;
  font-size: 2.4em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
}

.entp_intro {
  text-align: center;
  font-size: 1.1em;
  color: #555555;
  max-width: 850px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.entp_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.entp_reverse {
  flex-direction: row-reverse;
}

.entp_text {
  flex: 1 1 500px;
}

.entp_subtitle {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111111;
}

.entp_text p {
  font-size: 1.05em;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.entp_text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.entp_text ul li {
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
}

.entp_text ul li::before {
  content: "•";
  color: #c19b76;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.entp_image {
  flex: 1 1 400px;
  text-align: center;
}

.entp_image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  object-fit: cover;
}
.cart-container {
      padding: 60px 0;
    }

    .cart-item {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      padding: 15px 20px;
      margin-bottom: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: transform 0.2s;
    }

    .cart-item:hover {
      transform: scale(1.02);
    }

    .cart-item h5 {
      margin: 0;
      font-size: 1rem;
      font-weight: 600;
    }

    .cart-item p {
      margin: 0;
      color: #555;
    }

    .remove-btn {
      color: #d9534f;
      cursor: pointer;
      font-size: 1.2rem;
      transition: color 0.3s;
    }

    .remove-btn:hover {
      color: #a94442;
    }

    .cart-summary {
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      text-align: center;
    }

    .btn-finalizar {
      background: #000;
      color: #fff;
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: 500;
      text-decoration: none;
      display: inline-block;
      transition: background 0.3s;
    }

    .btn-finalizar:hover {
      background: #333;
      color: #fff;
    }
    /* ======== ESTILO EXCLUSIVO DA PÁGINA DE RESULTADOS ======== */
    .res_container {
      max-width: 1100px;
      margin: 60px auto;
      font-family: "Poppins", sans-serif;
    }

    .res_title {
      text-align: center;
      margin-bottom: 30px;
      font-weight: 600;
    }

    .res_cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .res_card {
      border: 1px solid #ddd;
      border-radius: 12px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
      background-color: #fff;
    }

    .res_card:hover {
      transform: scale(1.03);
    }

    .res_card h5 {
      font-size: 1.1em;
      font-weight: 600;
      color: #000;
      margin-bottom: 8px;
    }

    .res_card p {
      color: #444;
      font-size: 0.95em;
      margin-bottom: 12px;
    }

    .res_btn {
      background-color: #000;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 8px 12px;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .res_btn:hover {
      background-color: #333;
    }

    .res_notfound {
      text-align: center;
      font-size: 1.1em;
      color: #777;
      margin-top: 50px;
    }

    .res_back {
      display: block;
      text-align: center;
      margin-top: 40px;
    }

    .res_back a {
      text-decoration: none;
      color: #000;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .res_back a:hover {
      color: #444;
      text-decoration: underline;
    }
/* === Efeito no ícone do carrinho === */
.bi-cart3.cart-animar {
  color: #28a745; /* verde sucesso */
  animation: shakeCart 0.6s ease;
}

@keyframes shakeCart {
  0% { transform: rotate(0); }
  20% { transform: rotate(-15deg); }
  40% { transform: rotate(15deg); }
  60% { transform: rotate(-10deg); }
  80% { transform: rotate(10deg); }
  100% { transform: rotate(0); }
}
/* === Tarja diagonal de produto indisponível === */
.badge-indisponivel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  background: rgba(200, 0, 0, 0.8);
  color: white;
  font-weight: 700;
  padding: 10px 60px;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.8);
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Escurece e desatura a imagem para destacar o aviso */
.card:not(:has(.bi-cart3)) .card-img-top {
  filter: grayscale(0.8) brightness(0.6);
}
/* === Container principal === */
.imagem-zoom-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

/* Imagem principal */
.main-img {
  width: 400px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: crosshair;
}

/* Lente */
#lens {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.7);
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.25);
  display: none;
  border-radius: 50%;
  pointer-events: none;
}

/* Área de zoom lateral */
.zoom-area {
  width: 350px;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ccc;
  background-repeat: no-repeat;
  background-size: 800px auto;
  display: none;
  box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

/* Miniaturas */
.thumb-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}

.thumb-img:hover {
  border-color: #aaa;
}