/* Tipografía premium para web de licores */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #E5E7EB;
  background: #0F172A;
}

h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: #F5F5F5;
  margin-bottom: 32px;
}

@media (max-width: 600px) {
  h1 { font-size: 36px; }
}

h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.2px;
  color: #FFD700;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  h2, h3 { font-size: 20px; }
}

p, .description {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.1px;
  color: #E5E7EB;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  p, .description { font-size: 14px; }
}

.price {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #FFD700;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

@media (max-width: 600px) {
  .price { font-size: 16px; }
}

.button, button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #FFF;
  background: #16A34A;
  padding: 14px 32px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  line-height: 1.2;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.button:hover, button:hover, .btn:hover {
  background: #15803D;
}
