html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

.et_pb_row {
  max-width: 100% !important;
  margin: 0 auto !important;
}

.et_pb_section {
  overflow: hidden !important;
  max-width: 100% !important;
}

/* Corrige containers específicos */

.et_pb_row_1, .et_pb_section_2 {
  width: 100% !important;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar {
}

.ancora-com-padding::before {
  content: "";
  display: flex;
  height: 35px;
  margin-top: -35px;
  visibility: hidden;
}

@media (min-width:360px) {
  .d-xs-block {
    display: none!important;
  }
}

@media (min-width:360px) {
  .d-xs-none {
    display: none!important;
  }
}

.bootstrap-iso .carousel-inner .carousel-item > .row {
  display: flex;
}

.bootstrap-iso .carousel-control-prev, .bootstrap-iso .carousel-control-next {
  width: 5%;
}

.bootstrap-iso .carousel-control-prev-icon, .bootstrap-iso .carousel-control-next-icon {
  background-color: #00000080;
  border-radius: 50%;
}

.bootstrap-iso .card {
  margin: 5px 2px;
}

/* Responsivo: mostra 2 cards no mobile, 4 no tablet, 6 no desktop */

@media (max-width: 767.98px) {
  .bootstrap-iso .col-md-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .bootstrap-iso .col-md-2 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 1200px) {
  .bootstrap-iso .col-md-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }
}

.category-slide {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  height: 250px;
}

.category-card {
  flex: 0 0 calc(12.5% - 1rem);
  /*background: #FFFFFF;*/
  /*border-radius: 8px;*/
  text-align: center;
  padding: 12px 6px;
}

.category-card img {
  width: auto;
  height: auto;
  object-fit: cover;
  /*border-radius: 50%;*/
  /*margin-bottom: 6px;*/
}

@media (max-width: 992px) {
  .category-card {
    flex: 0 0 calc(25% - 1rem);
  }
}

/* 4 por slide em md */

@media (max-width: 768px) {
  .category-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

/* 2 por slide em sm */

@media (max-width: 576px) {
  .category-card {
    flex: 0 0 100%;
  }
}

/* 1 por slide em xs */

/* Corrige a barra horizontal */

.swiper-button-next::after, .swiper-button-prev::after {
  font-family: swiper-icons;
  font-size: 20px!important;
}

/* Header normal */

#mainHeader {
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  z-index: 1000;
}

/* Header fixo quando rolar */

#mainHeader.fixed-top {
  position: fixed;
  padding-top: -8px!important;
  top: -15px!important;
  left: 0;
  animation: slideDown 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Adiciona padding ao body para compensar o header fixo */

body.with-fixed-header {
  padding-top: 80px;
}

/* Esconde a imagem inicialmente */

.card-hover-effect {
  position: relative;
  display: inline-block;
}

.card-hover-effect .botoes-comprar {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.0);
  padding: 0 14px;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-hover-effect:hover .botoes-comprar {
  opacity: 1;
  visibility: visible;
}

.product-action-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.product-action-btn svg {
  width: 18px;
  height: 18px;
  fill: #FFFFFF;
}

.action-share {
  background: #5f5f5f;
}

.action-share svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
  display: block;
}

.action-details {
  background: #18b84a;
}

/* como o coração foi removido, isso não é mais necessário */
.action-favorite {
  display: none;
}

.product-toast {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(30, 30, 30, 0.96);
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 15px;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.product-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
/* A imagem do produto deve ter posição relativa */

.card-hover-effect .imagem-produto {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
}

.card-link a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

footer a {
  color: #00387A;
}

/* Opcional: Mudar a cor do link quando o mouse passa por cima */

footer a:hover {
  color: #00387A;
}

/* Botón flotante de WhatsApp */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
  transform: scale(1.1);
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

/* Responsive para móviles */

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}

/* Para tablets */

@media (max-width: 1024px) and (min-width: 769px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
}

.quantity-container {
  display: inline-flex;
  align-items: center;
  border: 2px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.quantity-btn {
  background: #f3f3f3;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.quantity-btn:hover {
  background: #ddd;
}

.quantity-input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: none;
  font-size: 18px;
  outline: none;
}

.quantity-input::-webkit-outer-spin-button, .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-input[type=number] {
  -moz-appearance: textfield;
}

/* Div Flutuante Inteligente */

.floating-buy-widget {
  position: fixed;
  right: -400px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  pointer-events: none;
}

.floating-buy-widget.active {
  right: 30px;
  opacity: 1;
  pointer-events: all;
}

.floating-buy-widget.above-footer {
  position: absolute;
  top: auto;
  bottom: 120px;
  transform: none;
  right: 30px;
}

.floating-buy-widget.hidden {
  right: -400px;
  opacity: 0;
  pointer-events: none;
}

/* Card da Div Flutuante */

.floating-card {
  background: #f4f4f4;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: none;
  width: 50%;
  max-width: 100vw;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header h5 {
  margin: 0;
  font-weight: 700;
}

.close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.card-body {
  padding: 25px;
}

/* Produto Info */

.product-info {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.product-image {
  flex-shrink: 0;
}

.image-placeholder {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.product-details {
  flex: 1;
}

.product-details h6 {
  margin: 0 0 5px 0;
  font-weight: 700;
  color: #2d3748;
}

.product-details .text-muted {
  font-size: 0.85em;
  margin-bottom: 10px;
}

/* Preços */

.pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}

.original-price {
  text-decoration: line-through;
  color: #a0aec0;
  font-size: 0.9em;
}

.current-price {
  font-size: 1.4em;
  font-weight: 800;
  color: #48bb78;
}

.discount-badge {
  background: #fed7d7;
  color: #c53030;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8em;
  font-weight: 700;
}

/* Features */

.features {
  margin: 15px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9em;
}

.feature-item i {
  color: #48bb78;
  font-size: 0.8em;
}

/* Botão de Compra */

.buy-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #48bb78, #38a169);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(72, 187, 120, 0.4);
  background: linear-gradient(135deg, #38a169, #2f855a);
}

.buy-btn:active {
  transform: translateY(0);
}

.security-badges {
  text-align: center;
}

/* Animações */

@keyframes slideInRight {
  0% {
    transform: translateX(100%) translateY(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
}

.floating-buy-widget.active {
  animation: slideInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Efeito de flutuação sutil */

.floating-card {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* Responsividade */

@media (max-width: 768px) {
  .floating-buy-widget.active {
    right: 15px;
  }
}

@media (max-width: 768px) {
  .floating-buy-widget.above-footer {
    right: 15px;
    bottom: 100px;
  }
}

@media (max-width: 768px) {
  .floating-card {
    width: 320px;
  }
}

@media (max-width: 768px) {
  .product-info {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .image-placeholder {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .floating-card {
    width: 320px;
  }
}

@media (max-width: 480px) {
  .card-body {
    padding: 20px;
  }
}

/* focus visible */

.ps-button:focus, .ps-value:focus {
  outline: 3px solid rgba(14,165,164,0.14);
  outline-offset: 3px;
}

.track {
  position: relative;
  width: 260px;
  height: 4px;
  background: #d1d5db;
  border-radius: 4px;
}

.fill {
  position: absolute;
  height: 100%;
  background: #0ea5a4;
  border-radius: 4px;
  left: 0;
  top: 0;
  width: 0%;
}

.thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  border: 2px solid #0ea5a4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: box-shadow 0.15s ease;
}

.thumb:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.value {
  font-weight: bold;
  font-size: 18px;
  color: #0f172a;
}

.hover-effect:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-radius: 8px;
  cursor: pointer;
}

.frase1{ 
  background-color: #2787F5;
  border-radius: 6px;
  color: #FFF;
  margin-top:5px; 
  font-size: 13px;
  line-height: 25px;
}
.frase2{  
  background-color: #FF9D0A;
  border-radius: 6px;
  color: #FFF;
  margin-top:5px; 
  font-size: 13px;
  line-height: 25px;
}
.iconesListagem{
  border-bottom: 1px solid #C1C1C1; 
  border-top: 1px solid #C1C1C1; 
  margin-top:10px; 
  text-align: center; 
  padding-top: 5px; 
  padding-bottom: 5px;
}