@charset "UTF-8";
.download .download-buttons .btn, .btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.download .download-buttons .btn:hover, .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #050811;
  color: #f8f9fa;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 10% 20%, rgba(9, 20, 39, 0.8) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(41, 10, 49, 0.6) 0%, transparent 20%);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1200px) {
  .container {
    padding: 0;
  }
}

.animate-in {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #f8f9fa;
}
.section-header .section-subtitle {
  font-size: 1.1rem;
  color: rgba(248, 249, 250, 0.7);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  z-index: -1;
  transition: opacity 0.3s;
}
.btn:hover::before {
  opacity: 0.8;
}
.btn:active {
  transform: translateY(-1px);
}
.btn i {
  margin-right: 0.5rem;
  font-size: 1.1em;
}
.btn .btn-subtext {
  display: block;
  font-size: 0.7rem;
  opacity: 0.9;
  margin-top: 0.2rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.btn.btn-primary {
  background: linear-gradient(135deg, #0078d7, rgb(0, 102, 182.75));
  color: #f8f9fa;
}
.btn.btn-accent {
  background: linear-gradient(135deg, #00ff88, rgb(0, 216.75, 115.6));
  color: #050811;
}
.btn.btn-accent .btn-subtext {
  color: rgba(5, 8, 17, 0.8);
}
.btn.btn-secondary {
  background: linear-gradient(135deg, #0078d7, #00b4d8);
  color: #f8f9fa;
}
.btn.btn-large {
  padding: 1.5rem;
  min-width: 300px;
}
.btn.btn-large .btn-content {
  margin-left: 1rem;
  text-align: left;
}
.btn.btn-large .btn-content .btn-title {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}
.btn.btn-large .btn-content .btn-subtitle {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 8, 17, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  height: 80px;
}
.navbar .nav-brand {
  display: flex;
  align-items: center;
}
.navbar .nav-brand .brand-icon {
  font-size: 2rem;
  margin-right: 0.5rem;
}
.navbar .nav-brand .brand-text {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  line-height: 1;
  color: #f8f9fa;
}
.navbar .nav-brand .brand-text strong {
  color: #00ff88;
  font-size: 1.1rem;
  display: block;
  font-weight: 900;
}
.navbar .nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar .nav-menu .nav-link {
  color: #f8f9fa;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
}
.navbar .nav-menu .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #00ff88;
  transition: width 0.3s;
}
.navbar .nav-menu .nav-link:hover {
  color: #00ff88;
}
.navbar .nav-menu .nav-link:hover::after {
  width: 100%;
}
.navbar .nav-menu .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}
.navbar .mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  color: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
}
.navbar .mobile-toggle:hover {
  background: rgba(0, 255, 136, 0.2);
}
.navbar .mobile-toggle.active {
  background: #00ff88;
  color: #050811;
}
@media (max-width: 768px) {
  .navbar .mobile-toggle {
    display: flex !important;
  }
  .navbar .nav-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(5, 8, 17, 0.98);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 0;
    gap: 1.5rem;
    z-index: 999;
    border-top: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
  }
  .navbar .nav-menu.active {
    display: flex;
    animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .navbar .nav-menu .nav-link {
    font-size: 1.2rem;
    padding: 0.75rem 2rem;
    width: 80%;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  .navbar .nav-menu .nav-link:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(5px);
  }
  .navbar .nav-menu .nav-link:hover::after {
    display: none;
  }
  .navbar .nav-menu .btn {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    width: 80%;
    justify-content: center;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  padding-top: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero .hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 8, 17, 0.9), rgba(9, 20, 39, 0.95));
}
.hero .hero-background .hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00ff88;
  border-radius: 50%;
  animation: floatParticle calc(15s * var(--i, 1)) infinite linear;
}
@keyframes floatParticle {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(calc(100px * var(--i, 1)));
    opacity: 0;
  }
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}
.hero .hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, #00ff88, rgb(0, 204, 108.8));
  color: #050811;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero .hero-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #f8f9fa;
}
.hero .hero-title .title-line {
  display: block;
}
.hero .hero-title .title-highlight {
  color: #00ff88;
  position: relative;
}
.hero .hero-title .title-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  z-index: -1;
  border-radius: 4px;
}
.hero .hero-subtitle {
  font-size: 1.1rem;
  color: rgba(248, 249, 250, 0.8);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 400;
}
.hero .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.hero .hero-buttons .btn {
  min-width: 250px;
  flex-direction: column;
  padding: 1.5rem 2rem;
}
.hero .hero-scroll {
  color: rgba(248, 249, 250, 0.6);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}
.hero .hero-scroll i {
  font-size: 1.2rem;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.story {
  padding: 4rem 0;
  background: #0a0e17;
  position: relative;
}
.story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(0, 120, 215, 0.05) 0%, transparent 50%);
}
.story .story-content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .story .story-content {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }
}
.story .story-content .story-text {
  flex: 1;
  min-width: 0;
}
.story .story-content .story-text .story-paragraph {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}
.story .story-content .story-text .story-paragraph h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #00ff88;
}
.story .story-content .story-text .story-paragraph p {
  color: rgba(248, 249, 250, 0.9);
  line-height: 1.7;
  font-size: 1.05rem;
}
.story .story-content .story-text .story-paragraph p strong {
  color: #00ff88;
  font-weight: 700;
}
.story .story-content .story-text .story-quote {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 4px solid #00ff88;
  background: rgba(5, 8, 17, 0.5);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(248, 249, 250, 0.9);
}
.story .story-content .story-text .story-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 600;
  color: #00ff88;
  font-size: 0.9rem;
}
.story .story-content .story-visual {
  flex: 0 0 300px;
  margin-top: 2rem;
  align-self: flex-start;
}
@media (min-width: 768px) {
  .story .story-content .story-visual {
    margin-top: 0;
  }
}
.story .story-content .story-visual .story-card {
  background: rgba(5, 8, 17, 0.7);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 255, 136, 0.2);
}
.story .story-content .story-visual .story-card .card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}
.story .story-content .story-visual .story-card .card-header h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f8f9fa;
}
.story .story-content .story-visual .story-card .card-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.story .story-content .story-visual .story-card .card-step .step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00ff88, #0078d7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #050811;
  flex-shrink: 0;
}
.story .story-content .story-visual .story-card .card-step .step-content h5 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #f8f9fa;
}
.story .story-content .story-visual .story-card .card-step .step-content p {
  font-size: 0.9rem;
  color: rgba(248, 249, 250, 0.7);
}
.story .story-content .story-visual .story-card .card-arrow {
  text-align: center;
  color: #00ff88;
  margin: 0.75rem 0 0.75rem 20px;
  font-size: 0.9rem;
}

.enemies {
  padding: 4rem 0;
  background: #050811;
  position: relative;
}
.enemies::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.03) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(0, 180, 216, 0.03) 0%, transparent 50%);
}
.enemies .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.enemies .section-header .section-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #f8f9fa;
}
.enemies .section-header .section-subtitle {
  font-size: 1.1rem;
  color: rgba(248, 249, 250, 0.7);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}
.enemies .enemies-teaser {
  background: rgba(10, 14, 23, 0.6);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 4rem;
  border: 1px solid rgba(0, 255, 136, 0.2);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .enemies .enemies-teaser {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}
.enemies .enemies-teaser .teaser-content {
  flex: 1;
}
.enemies .enemies-teaser .teaser-content h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f8f9fa;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.enemies .enemies-teaser .teaser-content h3 i {
  color: #00b4d8;
}
.enemies .enemies-teaser .teaser-content p {
  color: rgba(248, 249, 250, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.enemies .enemies-teaser .teaser-content p strong {
  color: #00ff88;
}
.enemies .enemies-teaser .teaser-content .teaser-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.enemies .enemies-teaser .teaser-content .teaser-features .feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(248, 249, 250, 0.8);
  font-size: 0.95rem;
}
.enemies .enemies-teaser .teaser-content .teaser-features .feature i {
  color: #00ff88;
  font-size: 1.1rem;
}
.enemies .enemies-teaser .teaser-visual {
  flex: 0 0 250px;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .enemies .enemies-teaser .teaser-visual {
    margin-top: 0;
  }
}
.enemies .enemies-teaser .teaser-visual .mystery-card {
  background: linear-gradient(135deg, rgba(10, 14, 23, 0.8), rgba(5, 8, 17, 0.9));
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  border: 2px dashed rgba(0, 255, 136, 0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% {
    border-color: rgba(0, 255, 136, 0.4);
  }
  50% {
    border-color: rgba(0, 255, 136, 0.8);
  }
}
.enemies .enemies-teaser .teaser-visual .mystery-card .mystery-icon {
  font-size: 4rem;
  margin-bottom: 0.75rem;
}
.enemies .enemies-teaser .teaser-visual .mystery-card .mystery-title {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 0.75rem;
}
.enemies .golden-system {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.05), rgba(0, 180, 216, 0.02));
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(0, 180, 216, 0.2);
}
.enemies .golden-system .system-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.enemies .golden-system .system-header .system-icon {
  font-size: 2.5rem;
}
.enemies .golden-system .system-header .system-title {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #00b4d8;
}
.enemies .golden-system .system-content p {
  color: rgba(248, 249, 250, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.enemies .golden-system .system-content p strong {
  color: #00b4d8;
  font-weight: 600;
}
.enemies .golden-system .system-content .system-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #00b4d8;
}
.enemies .golden-system .system-content .system-highlight i {
  color: #00b4d8;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.enemies .golden-system .system-content .system-highlight span {
  color: rgba(248, 249, 250, 0.9);
  font-size: 1rem;
}
.enemies .golden-system .system-content .system-highlight span strong {
  color: #00b4d8;
}
.enemies .golden-system .system-content .system-note {
  background: rgba(0, 255, 136, 0.05);
  border-radius: 10px;
  padding: 1rem;
  border-left: 4px solid #00ff88;
}
.enemies .golden-system .system-content .system-note p {
  color: rgba(248, 249, 250, 0.9);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.enemies .golden-system .system-content .system-note p i {
  color: #00ff88;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.progression {
  padding: 4rem 0;
  background: #0a0e17;
  position: relative;
}
.progression::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(0, 120, 215, 0.05) 0%, transparent 50%);
}
.progression .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.progression .section-header .section-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #f8f9fa;
}
.progression .section-header .section-subtitle {
  font-size: 1.1rem;
  color: rgba(248, 249, 250, 0.7);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}
.progression .progression-content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .progression .progression-content {
    flex-direction: row;
    gap: 4rem;
  }
}
.progression .progression-content .progression-visual {
  flex: 0 0 350px;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .progression .progression-content .progression-visual {
    margin-bottom: 0;
  }
}
.progression .progression-content .progression-visual .upgrade-card {
  background: rgba(5, 8, 17, 0.8);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.progression .progression-content .progression-visual .upgrade-card .card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}
.progression .progression-content .progression-visual .upgrade-card .card-header .card-title {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f8f9fa;
}
.progression .progression-content .progression-visual .upgrade-card .upgrade-list .upgrade-item:nth-child(1) .upgrade-name::before {
  content: "1. Daño de escopeta";
}
.progression .progression-content .progression-visual .upgrade-card .upgrade-list .upgrade-item:nth-child(1) .upgrade-icon::before {
  content: "💥";
}
.progression .progression-content .progression-visual .upgrade-card .upgrade-list .upgrade-item:nth-child(1) .upgrade-progress {
  width: calc(50% * 1);
  background: linear-gradient(90deg, #00ff88, #0078d7);
}
.progression .progression-content .progression-visual .upgrade-card .upgrade-list .upgrade-item:nth-child(2) .upgrade-name::before {
  content: "2. Cadencia";
}
.progression .progression-content .progression-visual .upgrade-card .upgrade-list .upgrade-item:nth-child(2) .upgrade-icon::before {
  content: "⚡";
}
.progression .progression-content .progression-visual .upgrade-card .upgrade-list .upgrade-item:nth-child(2) .upgrade-progress {
  width: calc(50% * 2);
  background: linear-gradient(90deg, #00ff88, #0078d7);
}
.progression .progression-content .progression-visual .upgrade-card .upgrade-list .upgrade-item:nth-child(3) .upgrade-name::before {
  content: "3. Próximamente";
}
.progression .progression-content .progression-visual .upgrade-card .upgrade-list .upgrade-item:nth-child(3) .upgrade-icon::before {
  content: "❓";
}
.progression .progression-content .progression-visual .upgrade-card .upgrade-list .upgrade-item:nth-child(3) .upgrade-progress {
  width: 25%;
  background: linear-gradient(90deg, #00b4d8, rgb(0, 153, 183.6));
}
.progression .progression-content .progression-visual .upgrade-card .upgrade-list .upgrade-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(248, 249, 250, 0.1);
}
.progression .progression-content .progression-visual .upgrade-card .upgrade-list .upgrade-item:last-child {
  border-bottom: none;
}
.progression .progression-content .progression-visual .upgrade-card .upgrade-list .upgrade-item .upgrade-icon {
  color: #00ff88;
  font-size: 1.2rem;
  width: 30px;
  text-align: center;
}
.progression .progression-content .progression-visual .upgrade-card .upgrade-list .upgrade-item .upgrade-info {
  flex: 1;
}
.progression .progression-content .progression-visual .upgrade-card .upgrade-list .upgrade-item .upgrade-info .upgrade-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #f8f9fa;
  font-size: 0.95rem;
}
.progression .progression-content .progression-visual .upgrade-card .upgrade-list .upgrade-item .upgrade-info .upgrade-progress-container {
  height: 6px;
  background: rgba(248, 249, 250, 0.1);
  border-radius: 3px;
  overflow: hidden;
}
.progression .progression-content .progression-visual .upgrade-card .upgrade-list .upgrade-item .upgrade-info .upgrade-progress-container .upgrade-progress {
  height: 100%;
  background: linear-gradient(90deg, #00ff88, #0078d7);
  border-radius: 3px;
  transition: width 0.5s ease;
}
.progression .progression-content .progression-text {
  flex: 1;
}
.progression .progression-content .progression-text .progression-feature {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}
.progression .progression-content .progression-text .progression-feature h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #00ff88;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.progression .progression-content .progression-text .progression-feature h3 i {
  font-size: 1.2rem;
}
.progression .progression-content .progression-text .progression-feature p {
  color: rgba(248, 249, 250, 0.9);
  line-height: 1.7;
  font-size: 1.05rem;
}
.progression .progression-content .progression-text .progression-feature p strong {
  color: #00ff88;
  font-weight: 600;
}

.download {
  padding: 4rem 0;
  background: #050811;
}
.download .download-card {
  background: linear-gradient(135deg, rgba(10, 14, 23, 0.9), rgba(5, 8, 17, 0.9));
  border-radius: 20px;
  padding: 4rem;
  text-align: center;
  border: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  max-width: 900px;
  margin: 0 auto;
}
.download .section-header {
  margin-bottom: 2rem;
}
.download .section-header .section-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #f8f9fa;
}
.download .section-header .section-subtitle {
  font-size: 1.1rem;
  color: rgba(248, 249, 250, 0.7);
}
.download .download-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .download .download-features {
    grid-template-columns: repeat(4, 1fr);
  }
}
.download .download-features .feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}
.download .download-features .feature i {
  color: #00ff88;
  font-size: 1.2rem;
}
.download .download-features .feature span {
  font-size: 0.9rem;
  color: rgba(248, 249, 250, 0.8);
}
.download .download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .download .download-buttons {
    flex-direction: row;
    justify-content: center;
  }
}
.download .download-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 1.5rem;
  min-width: 300px;
}
.download .download-buttons .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  z-index: -1;
  transition: opacity 0.3s;
}
.download .download-buttons .btn:hover::before {
  opacity: 0.8;
}
.download .download-buttons .btn:active {
  transform: translateY(-1px);
}
.download .download-buttons .btn i {
  margin-right: 0.5rem;
  font-size: 1.1em;
}
.download .download-buttons .btn .btn-subtext {
  display: block;
  font-size: 0.7rem;
  opacity: 0.9;
  margin-top: 0.2rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.download .download-buttons .btn.btn-large .btn-content {
  margin-left: 1rem;
  text-align: left;
}
.download .download-buttons .btn.btn-large .btn-content .btn-title {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}
.download .download-buttons .btn.btn-large .btn-content .btn-subtitle {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}
.download .download-buttons .btn.btn-primary {
  background: linear-gradient(135deg, #0078d7, rgb(0, 102, 182.75));
  color: #f8f9fa;
}
.download .download-buttons .btn.btn-accent {
  background: linear-gradient(135deg, #00ff88, rgb(0, 216.75, 115.6));
  color: #050811;
}
.download .download-buttons .btn.btn-accent .btn-content .btn-title,
.download .download-buttons .btn.btn-accent .btn-content .btn-subtitle {
  color: #050811;
}
.download .download-info {
  background: rgba(0, 255, 136, 0.1);
  border-radius: 10px;
  padding: 1rem;
  border-left: 4px solid #00ff88;
  max-width: 600px;
  margin: 0 auto;
}
.download .download-info p {
  color: rgba(248, 249, 250, 0.8);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.download .download-info p i {
  color: #00ff88;
  font-size: 1.2rem;
  margin-top: 0.1rem;
}

.footer {
  background: #050811;
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(0, 255, 136, 0.1);
}
.footer .footer-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer .footer-brand {
  flex: 1;
}
.footer .footer-brand .brand-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.footer .footer-brand .brand-text {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #f8f9fa;
}
.footer .footer-brand .brand-tagline {
  color: rgba(248, 249, 250, 0.7);
  line-height: 1.6;
  max-width: 300px;
}
.footer .footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer .footer-links .link-group h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f8f9fa;
}
.footer .footer-links .link-group a {
  display: block;
  color: rgba(248, 249, 250, 0.7);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
  font-size: 0.95rem;
}
.footer .footer-links .link-group a:hover {
  color: #00ff88;
}
.footer .footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(248, 249, 250, 0.1);
  text-align: center;
}
.footer .footer-bottom p {
  color: rgba(248, 249, 250, 0.7);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.footer .footer-bottom .footer-note {
  color: rgba(248, 249, 250, 0.5);
  font-size: 0.85rem;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
  }
  .download-buttons {
    flex-direction: column !important;
    align-items: center; /* centro botones */
  }
  .download-buttons .btn {
    width: 100%;
    max-width: 350px; /* límite máximo */
  }
  .download-features {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important; /* Reducir espacio entre features */
  }
  .download-features .feature {
    justify-content: center; /* Centrar contenido */
  }
}/*# sourceMappingURL=main.css.map */