.logo-cookie {
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.logo-cookie img {
  height: 50px; /* 36 */
  vertical-align: middle;
  margin-right: 10px;
  display: block;
}

.cookie-consent {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: auto;
  right: auto;
  width: 900%;
  max-width: 800px;
  background: #12121A;
  color: #fff;
  padding: 30px;
  border-radius: 7px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  font-family: 'Segoe UI', Arial, sans-serif;
  transition: all 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-text h3 {
  margin-top: 0;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.cookie-text p {
  margin: 0;
  color: #b3b3cc;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  width: 100%;
}

.cookie-btn {
  padding: 14px 16px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 600; /*  */
  transition: all 0.2s;
  font-size: 1.1rem;
  flex: 1;
  text-align: center;
  min-width: 0;
}

.cookie-btn.accept {
  background: linear-gradient(-131deg, #c822cb, #e069e2, #c822cb);
  color: #ffffff;
}

.cookie-btn i { 
  font-weight: 100;
}

.cookie-btn.necessary {
  background: transparent;
  border: 1px solid #b3b3cc;
  color: #b3b3cc;
}

.cookie-btn.configure {
  background: transparent;
  color: #ffffff;
  border: 1px solid #c822cb;
}

.cookie-btn.save {
  background: linear-gradient(-131deg, #c822cb, #e069e2, #c822cb);
  color: #ffffff;
  margin-top: 15px;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Configuración avanzada */
.cookie-settings {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-settings h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #fff;
  font-size: 1.1rem;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 10px;
}

.cookie-option-text {
  font-weight: 500;
  color: #fff;
  min-width: 100px;
  display: inline-block;
}

.cookie-option-desc {
  color: #b3b3cc;
  font-size: 0.85rem;
  flex: 1;
}

/* Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-right: 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #c822cb00;
  transition: .4s;
  border-radius: 24px;
  box-shadow: 0 0 4px #c822cb;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: #ffffff;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #c822cb;

}

input:focus + .slider {
  box-shadow: 0 0 2px #c822cb;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    flex: none;
  }
  
  .cookie-option {
    flex-direction: column;
    gap: 5px;
  }
}


@media (max-width: 1100px) {
.cookie-consent {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: auto;
  right: auto;
  width: 90%;
  max-width: 80%;
  background: #12121A;
  color: #fff;
  padding: 30px;
  border-radius: 7px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  font-family: 'Segoe UI', Arial, sans-serif;
  transition: all 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
}