/* =========================================
   GLOBAL PREMIUM DESIGN
========================================= */

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #000;
  color: white;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 80px 0;
}

/* ================= HEADINGS ================= */

h1 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  background: linear-gradient(90deg, #ffc500, #ff9601);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffc500;
}

h3 {
  font-size: 22px;
  font-weight: 700;
}

p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
}

/* ================= BOTONES ================= */

.btn-primary {
  background: linear-gradient(45deg, #ff9601, #ffc500);
  color: black;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 150, 1, 0.4);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(255, 150, 1, 0.6);
}

.btn-secondary {
  background: linear-gradient(45deg, #0074bd, #00a2ff);
  color: white;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(0, 116, 189, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
}
