body {
  font-family: 'Helvetica Neue', sans-serif;
  background: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  width: 98%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  width: 250px;
  margin: 30px auto;
  display: block;
}

.page-title {
  text-align: center;
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #212529;
  font-weight: 700;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.product-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
}

.product-name {
  font-size: 1em;
  margin: 10px 0;
  color: #111;
  font-weight: 600;
  text-align: left;
  line-height: 0.2;
}

.product-brand,
.product-title,
.product-volume {
  display: block;
  text-align: left;
  line-height: 1.2;
}

.product-description {
  font-size: 1em;
  color: #555;
  line-height: 1.3;
  margin-bottom: 15px;
  text-align: justify;
}

.product-benefits {
  list-style: none;
  padding: 0;
  text-align: justify;
  margin-top: 10px;
}

.product-benefits li {
  margin-bottom: 10px;
  padding-left: 1.1em;
  position: relative;
  font-size: 0.90em;
  line-height: 1.3;
}

.product-benefits li::before {
  content: "✓";
  color: #58a4b0;
  position: absolute;
  left: 0;
}


/* Carrusel */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: auto;
}

.carousel {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.carousel-image {
  min-width: 100%;
  display: none;
  border-radius: 12px;
}

.carousel-image.active {
  display: block;
}

.carousel-prev,
.carousel-next {
  display: none;
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* Indicadores */
.carousel-indicators {
  text-align: center;
  margin-top: 12px;
}

.carousel-indicators .dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-indicators .dot.active {
  background-color: #333;
}

/* Miniaturas */
.carousel-thumbnails {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 6px;
  flex-wrap: wrap;
}

.carousel-thumbnails img {
  width: 60px;
  height: auto;
  border-radius: 6px;
  opacity: 0.6;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.carousel-thumbnails img:hover,
.carousel-thumbnails img.active {
  opacity: 1;
  border-color: #58a4b0;
}

@media (max-width: 600px) {
  .carousel-container {
    max-width: 95vw;
  }

  .carousel-thumbnails img {
    width: 18vw;
  }
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.toggle-button,
.whatsapp-button,
.sharep-button {
  flex: 1 1 100%;
  max-width: 100%;
  text-align: center;
  font-size: 14px;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  line-height: 1.2;
}

.toggle-button {
  background-color: #8A1428;
  color: white;
}
.toggle-button:hover {
  background-color: #6a0f20;
}

.whatsapp-button {
  background-color: #25D366;
  color: white;
  border: none;
}
.whatsapp-button:hover {
  background-color: #1ebe5d;
}

.sharep-button {
  background-color: #25D366;
  color: white;
}
.sharep-button:hover {
  background-color: #1ebe5d;
}


.imageMini {
  width: 100%;
  max-width: 400px;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

