/* ===========================================
   MINECRAFT GAMZYHOST - CSS AGRUPADO (TODO INCLUIDO)
   =========================================== */

/* VARIABLES CSS - CENTRALIZADAS PARA FÁCIL MODIFICACIÓN */
:root {
    --bg: #1d1a15;
    --surface: #25221d;
    --card: #2b2720;
    --primary: #f7a01e;
    --primary-rgb: 255, 189, 89;
    --primary-light: #ffc977;
    --primary-dark: #b88840;
    --text: #FFFFFF;
    --muted: #afa89d;
}

/* ===========================================
   HERO SECTION - TODOS LOS ESTILOS AGRUPADOS
   =========================================== */
.minecraft-hero {
  padding: clamp(4rem, 8vw, 6rem) 1.5rem clamp(3rem, 6vw, 4rem);
  background: radial-gradient(circle at top, rgba(247, 160, 30, 0.15) 0%, rgba(0, 0, 0, 0) 55%);
}

.minecraft-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: left;
}

.minecraft-hero-text {
  position: relative;
  z-index: 1;
  text-align: left;
  order: 2;
  width: 100%;
}

.minecraft-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
  width: 100%;
}

.minecraft-hero-kicker {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: clamp(0.75rem, 3vw, 0.9rem);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.minecraft-hero-title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.8rem, 6vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

.minecraft-hero-title span {
  color: var(--primary);
}

.minecraft-hero-subtitle {
  color: var(--muted);
  font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  line-height: 1.6;
  max-width: 32rem;
  margin-bottom: 1rem;
}

.minecraft-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  align-items: center;
}

.minecraft-hero-badges {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.minecraft-hero-badge {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background-color: rgb(19, 105, 24);
}

.minecraft-hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.minecraft-hero-card {
  position: absolute;
  left: clamp(-20%, -5vw, -10%);
  top: clamp(5%, 3vw, 10%);
  background: rgba(24, 20, 16, 0.95);
  border-radius: 0.75rem;
  padding: clamp(0.7rem, 2vw, 0.9rem) clamp(0.9rem, 3vw, 1.1rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  max-width: clamp(160px, 25vw, 210px);
  font-size: clamp(0.75rem, 2.5vw, 0.85rem);
}

.minecraft-hero-card-title {
  font-size: clamp(0.7rem, 2.5vw, 0.8rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

.minecraft-hero-card-text {
  font-size: clamp(0.8rem, 2.5vw, 0.85rem);
  color: #e5e5e5;
  margin-bottom: 0.35rem;
}

.minecraft-hero-card-ping {
  font-size: clamp(0.75rem, 2.5vw, 0.8rem);
  color: var(--muted);
}

/* ===========================================
   PRECIOS SECTION - TODOS LOS ESTILOS AGRUPADOS
   =========================================== */
.pricing-clean-section {
  background-color: var(--bg);
  padding: clamp(3rem, 8vw, 5rem) 1rem;
  color: white;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: visible;
}

.pricing-container {
  max-width: 1400px;
  width: clamp(60%, 90vw, 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
}

.pricing-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(1rem, 5vw, 2rem) auto;
  position: relative;
  padding-bottom: clamp(0, -2vw, -40px);
}

.pricing-header-center h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  width: auto;
  display: inline-block;
  padding-top: 2rem;
}

.pricing-header-center-2 {
  display: block;
  text-align: center;
  background-color: #f7a01e !important;
  color: #1d1a15 !important;
  padding: 0.5em 2em !important;
  border-radius: 6px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  margin: clamp(1rem, 3vw, 3rem) auto 1rem auto !important;
  max-width: 450px !important;
  width: fit-content;
}

.pricing-header-center-2 span {
  margin-top: clamp(0, 1vw, 1rem);
}

.pricing-header-center p {
  color: var(--muted);
  font-size: clamp(1rem, 3vw, 1.1rem);
  margin-bottom: clamp(2rem, 5vw, 40px);
}

/* LAYOUT PRINCIPAL */
.pricing-side-by-side {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: flex-start;
  margin-top: clamp(1rem, 3vw, 2rem);
}

.pricing-left-panel {
  width: 100%;
  flex-shrink: 0;
}

.pricing-main {
  flex-grow: 1;
}

/* PANEL IZQUIERDO - COMPLETO */
.pricing-left-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: clamp(1.25rem, 4vw, 1.5rem);
  backdrop-filter: blur(10px);
}

.control-group {
  margin-bottom: 1.5rem;
}

.control-label {
  display: block;
  color: #999;
  font-size: clamp(0.8rem, 2.5vw, 0.85rem);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.custom-select-box select {
  width: 100%;
  padding: 0.8rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  font-size: clamp(0.85rem, 2.5vw, 0.9rem);
  outline: none;
  cursor: pointer;
}

.control-buttons-vertical {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sub-loc-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.15rem;
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  color: #ccc;
  cursor: pointer;
  transition: all 0.2s;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

.sub-loc-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.sub-loc-btn.active {
  background: rgba(247, 160, 30, 0.15);
  border-color: var(--primary);
  color: #fff;
}

.sub-loc-btn .btn-row-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-loc-btn .btn-title {
  display: block;
  font-weight: 700;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  margin-bottom: 0.2rem;
}

.sub-loc-btn .btn-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: clamp(#c9c9c9, var(--primary), var(--primary));
}

.sub-loc-btn .btn-price-amount {
  color: var(--primary);
  font-size: 0.95rem;
}

.sub-loc-btn .btn-price-unit {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sub-loc-btn .btn-ping {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  color: #8cff8c;
}

/* GRID DE PLANES */
.pricing-grid-2x3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 4vw, 1.5rem);
  row-gap: clamp(2rem, 5vw, 2.5rem);
}

/* TARJETAS - TODOS LOS ESTILOS */
.price-card-clean {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: clamp(1.5rem, 6vw, 2rem);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
  height: 100%;
  overflow: visible;
}

.price-card-clean:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 189, 89, 0.5);
}

.price-card-clean.featured {
  background: #322d26;
  border: 1px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* ICONOS FLOTANTES */
.deco-item {
  position: absolute;
  pointer-events: none;
  z-index: 15;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.35));
}

.telescope-float {
  top: clamp(-40px, -8vw, -30px);
  right: clamp(-35px, -6vw, -25px);
  width: clamp(60px, 15vw, 85px) !important;
}

.price-card-clean.featured .sword-float {
  top: clamp(-55px, -10vw, -45px);
  right: clamp(-35px, -6vw, -30px);
  width: clamp(100px, 20vw, 150px) !important;
}

.price-card-clean[data-ram="12"] .gold-float {
  top: clamp(-40px, -8vw, -35px);
  right: clamp(-25px, -4vw, -20px);
  width: clamp(100px, 20vw, 150px) !important;
}

/* ELEMENTOS DE TARJETAS */
.badge-popular {
  position: absolute;
  top: clamp(-12px, -2vw, -10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #000;
  font-weight: 800;
  font-size: clamp(0.7rem, 2vw, 0.75rem);
  padding: 0.35rem 1rem;
  border-radius: 99px;
  text-transform: uppercase;
  box-shadow: none;
  z-index: 10;
  white-space: nowrap;
}

.card-top h3 {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: #fff;
}

.price-tag {
  font-size: clamp(1.5rem, 6vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}

.price-tag span {
  font-size: 0.9rem;
  color: #888;
  font-weight: 400;
}

.gold-text {
  color: var(--primary);
}

.desc {
  font-size: 0.9rem;
  color: #ccc;
  min-height: 40px;
  margin-bottom: 1.5rem;
}

.badge-clean {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 1rem;
  color: #ccc;
}

.features-clean {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.features-clean li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #ccc;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.features-clean li i {
  color: var(--primary);
}

.features-clean li:last-child {
  border-bottom: none;
}

/* BOTONES */
.btn-style-8 {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-style-8:hover {
  background-color: var(--primary);
  color: #1d1a15;
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(247, 160, 30, 0.4);
  transform: translateY(-2px);
}

.btn-style-8:hover svg,
.btn-style-8:hover i {
  stroke: #1d1a15;
  fill: #1d1a15;
}

/* ELEMENTOS EXTRA */
.highlight-bg {
  background-color: #f7a01e !important;
  color: #1d1a15 !important;
  padding: 0.25em 0.5em !important;
  border-radius: 4px !important;
  display: inline-block !important;
  font-weight: 900 !important;
  font-size: 1.1em !important;
  line-height: 1 !important;
  transform: skew(-15deg) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}

.highlight-bg-2 {
  background-color: rgb(34, 161, 41) !important;
  color: #1d1a15 !important;
  padding: 0.25em 0.5em !important;
  border-radius: 4px !important;
  display: inline-block !important;
  font-weight: 900 !important;
  font-size: 1.1em !important;
  line-height: 1 !important;
  transform: skew(-15deg) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}

.highlight-bg span {
  display: inline-block !important;
  transform: skew(5deg) !important;
}

/* ===========================================
   RESPONSIVE - TODOS LOS BREAKPOINTS AGRUPADOS
   =========================================== */
@media (max-width: 900px) {
  .minecraft-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .minecraft-hero {
    padding-top: 5.5rem;
  }
  .minecraft-hero-visual {
    order: -1;
  }
  .minecraft-hero-title {
    font-size: clamp(1.8rem, 5vw, 2.3rem);
  }
}

@media (max-width: 1100px) {
  .pricing-side-by-side {
    flex-direction: column;
  }
  .pricing-left-panel {
    width: 100%;
    position: static;
    margin-bottom: 2rem;
  }
  .pricing-grid-2x3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid-2x3 {
    grid-template-columns: 1fr;
  }
}

/* TABLET */
@media (min-width: 768px) {
  .minecraft-hero {
    padding: 5rem 1.5rem 4rem;
  }
  .minecraft-hero-inner {
    flex-direction: row;
    gap: 2.5rem;
    text-align: left;
  }
  .minecraft-hero-text {
    order: 1;
    flex: 1.3;
  }
  .minecraft-hero-visual {
    order: 2;
    flex: 1;
  }
  .minecraft-hero-actions {
    align-items: flex-start;
  }
  .minecraft-hero-badges {
    justify-content: flex-start;
  }
  
  .pricing-side-by-side {
    flex-direction: row;
    gap: 2.5rem;
  }
  .pricing-left-panel {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 8rem;
    z-index: 10;
  }
  .pricing-grid-2x3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-locations {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .loc-tag {
    width: 100%;
    max-width: 280px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .minecraft-hero-inner {
    grid-template-columns: 1.3fr 1fr;
  }
  .minecraft-hero-image {
    max-width: 520px;
  }
  .minecraft-hero-card {
    left: -10%;
    top: 10%;
    max-width: 210px;
    padding: 0.9rem 1.1rem;
  }
  .minecraft-hero-card-title {
    font-size: 0.8rem;
  }
  .minecraft-hero-card-text {
    font-size: 0.85rem;
  }
  
  .pricing-grid-2x3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    row-gap: 2.5rem;
  }
  .pricing-side-by-side {
    gap: 3rem;
  }
  .pricing-left-panel {
    width: 340px;
  }
  .pricing-locations {
    gap: 1rem;
  }
  .loc-tag {
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
    min-width: 160px;
  }
}

/* LARGE DESKTOP */
@media (min-width: 1366px) {
  .minecraft-hero-title {
    font-size: 3rem;
  }
  .pricing-container {
    padding: 0 clamp(1rem, 3vw, 2rem);
  }
}

/* EXTRA LARGE */
@media (min-width: 1600px) {
  .pricing-grid-2x3 {
    grid-template-columns: repeat(3, 350px);
    justify-content: center;
  }
}

/* TAGS LOCALIZACIÓN (INCLUIDOS) */
.pricing-locations {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
}

.loc-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  min-width: 140px;
  text-align: center;
}

.loc-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.loc-tag:hover::before {
  left: 100%;
}

.loc-tag:hover {
  background: rgba(247, 160, 30, 0.15);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(247, 160, 30, 0.3);
}

.loc-tag.active {
  background: linear-gradient(135deg, var(--primary), #ff8c00);
  color: #1a1a1a;
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(247, 160, 30, 0.4);
  font-weight: 800;
}

.loc-tag.active:hover {
  transform: translateY(-1px);
}

.pricing-highlight {
  font-size: clamp(1rem, 3vw, 1.1rem);
  color: var(--muted);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-weight: 500;
}

.pricing-highlight strong {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.highlight-arrow {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--primary);
  margin: 0 0.25rem;
}

.badge-kicker {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), #ff8c00);
  color: #000;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(247, 160, 30, 0.4);
  letter-spacing: -0.02em;
  font-weight: 900;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.pricing-header-badges {
  margin-bottom: 1rem;
}


