/* Sección de Cóctel */
#coctel {
  background: linear-gradient(135deg, #fef9f3 0%, #f7f0e8 100%);
  padding: 80px 0;
  position: relative;
}

#coctel .bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(45deg, #d4a574 0, #d4a574 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
  pointer-events: none;
}

#coctel .container {
  position: relative;
  z-index: 1;
}

#coctel .title-badge {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #d4a574 0%, #c99a6a 100%);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
  margin-bottom: 15px;
}

#coctel .title-badge h2 {
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0;
}

#coctel .menu-category-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(212, 165, 116, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

#coctel .category-title {
  color: #d4a574;
  font-weight: 600;
  font-size: 1.4rem;
}

#coctel .menu-items {
  column-count: 2;
  column-gap: 2.5rem;
}

#coctel .menu-item {
  margin-bottom: 1rem;
  padding-left: 20px;
  position: relative;
}

#coctel .menu-item-icon {
  font-size: 0.7rem;
  color: #d4a574;
  position: absolute;
  left: 0;
  top: 6px;
}

#coctel .rincon-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(212, 165, 116, 0.2);
  transition: transform 0.3s ease;
  border: 2px solid rgba(212, 165, 116, 0.3);
  padding: 1.5rem;
}

#coctel .rincon-card:hover {
  transform: translateY(-5px);
}

#coctel .rincon-icon {
  font-size: 2.5rem;
  color: #d4a574;
}

#coctel .rincon-title {
  margin-top: 1rem;
  margin-bottom: 0;
  font-weight: bold;
  font-size: 1.1rem;
}

#coctel .bebidas-box {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  border: 2px dashed rgba(212, 165, 116, 0.4);
  padding: 1.5rem;
}

#coctel .bebidas-box h4 {
  color: #d4a574;
  font-weight: 600;
}

#coctel .bebidas-box .lead {
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  #coctel .menu-items {
    column-count: 1;
  }
}
