/* ========================================
   ESTILOS BASE (Desktop First)
   ======================================== */

.btn-comprar-descripcion {
  background-color: #28a745;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  float: right;
  transition: all 0.3s ease-in-out;
}

.btn-comprar-descripcion:hover {
  background-color: #218838;
  transform: scale(1.05);
}

.text-center {
  text-align: center;
}


.img-fluid {
  height: 330px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.text {
  overflow: hidden;
}

.read-more-btn {
  display: none;
  border: 1px solid #ccc;
  margin-bottom: -1px;
}









.btn-360 {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgb(247 247 247);
  color: #000000;
  border: none;
  border-radius: 20px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 100;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;

}

.btn-360:hover {
  color: white;
  background-color: rgba(0, 0, 0, 0.85);
}

.btn-360:active {
  transform: translateY(0);
}

.btn-360 i {
  margin-right: 4px;
  font-size: 10px;
}

.novedad-texto {
  position: absolute;
  left: 7px;
  font-size: 12px;
  font-weight: bold;
  color: red;
  z-index: 10000;
  margin-bottom: 1px;
  animation: parpadeo 1s ease-out 3;
}

.clickable__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

.clickable__link:hover {
  color: #103964;
}

.clickable__link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: #4576aa;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}

.clickable__link:hover::after {
  width: 100%;
}

.fabricacion-texto p {
  font-size: 0.9rem !important;
  margin-bottom: 0.5rem !important;
  font-family: inherit;
  line-height: 1.1;
  color: inherit;
}



.product-question {
  max-width: 100%;
  margin: 20px auto;
  border-radius: 8px;
}

.product-title {
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

.question-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ddd;
  background-color: #f8f9fa;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.question-text {
  flex: 1;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.question-text strong {
  color: #333;
  font-size: 1.1rem;
}

.question-button {  
  color: #fff;
  background-color: #4576aa;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 4px;
  display: flex;
  align-items: center;
  width: auto;
}

.question-button i {
  margin-right: 8px;
}

.question-button:hover {
  background-color: #0056b3;
}

.question-box a:hover {
  color: #ffffff !important;
  text-decoration: none;
}

/* ========================================
   TABLET Y Mﾃ天ILES (max-width: 768px)
   ======================================== */

@media screen and (max-width: 768px) {

  /* Tﾃｭtulos */
  .h2,
  h2 {
    font-size: 1.2rem;
  }

  /* Cajas y contenido */
  .box {
    margin: 40px 0;
    border-top: 1px solid #ccc;
    padding: 10px;
  }

  .div-contenido {
    margin: 10px;
    padding: 2px !important;
    border: 1px solid #ddd;
  }

  .h3__textcolores {
    padding-top: 5px;
  }

  .col-sm-6 {
    padding-right: 3px;
    padding-left: 3px;
  }

  /* Enlaces clickeables */
  .clickable__link {
    display: inline;
    width: initial;
    height: initial;
  }

  /* Secciﾃｳn de preguntas */
  .question-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .question-text {
    margin-bottom: 20px;
  }

  .question-button {
    padding: 8px 16px;
    font-size: 0.8rem;
    width: 100%;
    justify-content: center;
  }

  .question-button i {
    margin-right: 6px;
  }
}

.btn-info {
    background-color: #3e7079;
}