
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 7% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 30%; /* Could be more or less, depending on screen size */  
    
    
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.btn-producto-especial{
  display:inline-block;
  background:linear-gradient(90deg,#0066ff,#0099ff);
  color:white;
  padding:14px 28px;
  border-radius:50px;
  font-weight:bold;
  letter-spacing:.5px;
  text-decoration:none;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
  transition:.3s;
}

.btn-producto-especial:hover{
  transform:scale(1.05);
  box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.btn-producto-especial2{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 24px;
  background:#0066ff;
  color:#fff;
  text-decoration:none;
  border-radius:8px;
  font-size:18px;
  font-weight:600;
  transition:.3s;
}

.btn-producto-especial2:hover{
  background:#004ecc;
  transform:translateY(-2px);
}