/* =============================================
   VARIABLES Y RESET
   ============================================= */
:root {
  --primary-color: #1a1a1a;
  --secondary-color: #2b2b2b;
  --accent-color: #39ff14;
  --neon-green: #39ff14;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --bg-dark: #11192b;
  --bg-dark-alt: #0f192d;
  --bg-light: #1a1c1a;
  --bg-light-alt: #1c241a;
  --card-bg: #222222;
  --gradient-primary: linear-gradient(135deg, #39ff14 0%, #2ecc40 100%);
  --gradient-dark: linear-gradient(
    135deg,
    #11192b 0%,
    #0f192d 50%,
    #1a1c1a 100%
  );
  --gradient-accent: linear-gradient(135deg, #39ff14 0%, #32cd32 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Roboto",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Selection personalizada */
::selection {
  background: var(--neon-green);
  color: #000000;
}

::-moz-selection {
  background: var(--neon-green);
  color: #000000;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =============================================
   NAVEGACIÓN
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(57, 255, 20, 0.2);
  transition: all 0.3s ease;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.logo-subtitle {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-left: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-green);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.cta-button {
  padding: 0.75rem 1.8rem;
  background: var(--gradient-accent);
  color: #000000;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(57, 255, 20, 0.4);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(57, 255, 20, 0.6);
  filter: brightness(1.1);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  opacity: 1;
}

.hero-background::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(57, 255, 20, 0.08) 0%,
    transparent 70%
  );
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 1;
}

.hero-text {
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title-main {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.hero-title-sub {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #000000;
  box-shadow: 0 4px 15px rgba(57, 255, 20, 0.4);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(57, 255, 20, 0.6);
  filter: brightness(1.1);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(57, 255, 20, 0.5);
}

.btn-secondary:hover {
  background: rgba(57, 255, 20, 0.1);
  border-color: var(--neon-green);
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  animation: fadeInRight 1s ease 0.3s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.chart-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.9);
}

/* =============================================
   CARACTERÍSTICAS
   ============================================= */
.features {
  padding: 8rem 0;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid rgba(57, 255, 20, 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(34, 34, 34, 0.8);
  border-color: rgba(57, 255, 20, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(57, 255, 20, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* =============================================
   PROGRAMAS
   ============================================= */
.programs {
  padding: 8rem 0;
  background: var(--bg-dark-alt);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.program-card {
  background: var(--card-bg);
  border: 1px solid rgba(57, 255, 20, 0.1);
  padding: 3rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.program-card.featured {
  border: 2px solid rgba(57, 255, 20, 0.6);
  background: rgba(34, 34, 34, 0.95);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.program-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-accent);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
}

.program-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.program-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 300;
}

.program-features {
  list-style: none;
  margin-bottom: 2rem;
}

.program-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

.program-features li::before {
  content: "✓ ";
  color: var(--neon-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

.program-price {
  margin: 2rem 0;
  text-align: center;
}

.price-amount {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.price-period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(57, 255, 20, 0.5);
  width: 100%;
}

.btn-outline:hover {
  background: rgba(57, 255, 20, 0.1);
  border-color: var(--neon-green);
}

/* =============================================
   METODOLOGÍA
   ============================================= */
.methodology {
  padding: 8rem 0;
  background: var(--bg-light-alt);
}

.methodology-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.methodology-intro {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.methodology-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-number {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  letter-spacing: -1px;
}

.step-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.methodology-visual {
  position: relative;
}

.methodology-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.methodology-overlay {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(57, 255, 20, 0.2);
}

.overlay-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.overlay-number {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.overlay-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   TESTIMONIOS
   ============================================= */
.testimonials {
  padding: 8rem 0;
  background: var(--bg-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid rgba(57, 255, 20, 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(34, 34, 34, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(57, 255, 20, 0.2);
  border-color: rgba(57, 255, 20, 0.3);
}

.testimonial-rating {
  color: var(--neon-green);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--neon-green);
}

.author-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 8rem 0;
  background: var(--gradient-dark);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.cta-description {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
}

.cta-note {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--primary-color);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(57, 255, 20, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--neon-green);
  transform: translateY(-3px);
  color: #000000;
}

.footer-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--text-primary);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-content,
  .methodology-content {
    grid-template-columns: 1fr;
  }

  .hero-title-main {
    font-size: 3.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title-main {
    font-size: 2.5rem;
  }

  .hero-title-sub {
    font-size: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .program-card.featured {
    transform: scale(1);
  }

  .cta-buttons {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title-main {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(57, 255, 20, 0.5);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-green);
}

/* =============================================
   ESTILOS ADICIONALES PARA NUEVO CONTENIDO
   ============================================= */

/* Hero Badge */
.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 50px;
  color: var(--neon-green);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

/* Nav Stats */
.nav-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-stat {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.nav-stat strong {
  color: var(--neon-green);
  font-weight: 700;
  margin-left: 0.25rem;
}

/* Section Description */
.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  margin-top: 1rem;
  font-weight: 300;
}

/* Program Meta */
.program-period {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.program-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(57, 255, 20, 0.1);
}

.meta-badge {
  background: rgba(57, 255, 20, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon-green);
}

.meta-badge.alert {
  background: rgba(255, 100, 100, 0.15);
  color: #ff6464;
}

.meta-info {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Courses Grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.course-card {
  background: var(--card-bg);
  border: 1px solid rgba(57, 255, 20, 0.1);
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.course-card:hover {
  border-color: rgba(57, 255, 20, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(57, 255, 20, 0.2);
}

.course-card.featured {
  border: 2px solid rgba(57, 255, 20, 0.5);
  background: rgba(57, 255, 20, 0.03);
}

.course-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.course-level {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(57, 255, 20, 0.15);
  color: var(--neon-green);
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.course-level.advanced {
  background: rgba(255, 165, 0, 0.15);
  color: #ffa500;
}

.course-level.beginner {
  background: rgba(0, 191, 255, 0.15);
  color: #00bfff;
}

.course-level.pro {
  background: rgba(138, 43, 226, 0.15);
  color: #8a2be2;
}

.course-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.course-details {
  margin-top: 1.5rem;
}

.course-duration {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.course-topics {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.course-topics li {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Accelerator Section */
.accelerator {
  padding: 8rem 0;
  background: var(--bg-dark);
}

.accelerator-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  margin-top: 1rem;
  font-weight: 300;
  text-align: center;
}

.accelerator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.accelerator-card {
  background: var(--card-bg);
  border: 1px solid rgba(57, 255, 20, 0.1);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.accelerator-card:hover {
  border-color: rgba(57, 255, 20, 0.4);
  transform: translateY(-5px);
}

.accelerator-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.accelerator-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.accelerator-description {
  color: var(--text-secondary);
  font-weight: 300;
}

.accelerator-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.accelerator-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon-large {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.feature-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-info-card {
  background: var(--card-bg);
  border: 1px solid rgba(57, 255, 20, 0.1);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-info-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: var(--neon-green);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  background: var(--card-bg);
  border: 1px solid rgba(57, 255, 20, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.1);
}

.form-textarea {
  resize: vertical;
  margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .nav-stats {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .accelerator-features {
    grid-template-columns: 1fr;
  }
}

/* LOGO IMG (Navbar + Footer) */
.logo,
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Logo principal */
.brand-logo {
  height: 62px; /* tamaño pro en navbar */
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;

  /* Resalta sin verse “carnaval” */
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45));
}

/* Logo un poco más grande en footer */
.brand-logo--footer {
  height: 50px;
  max-width: 260px;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.5));
}

/* Ajuste móvil */
@media (max-width: 768px) {
  .brand-logo {
    height: 36px;
    max-width: 190px;
  }
  .brand-logo--footer {
    height: 44px;
    max-width: 230px;
  }
}

.contact-info-card {
  text-decoration: none;
  color: inherit;
}

.form-alert {
  padding: 14px 16px;
  border-radius: 12px;
  margin: 0 0 16px 0;
  font-weight: 600;
  line-height: 1.35;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.form-alert--success {
  border-color: rgba(57, 255, 20, 0.35);
  background: rgba(57, 255, 20, 0.1);
}

.form-alert--error {
  border-color: rgba(255, 90, 90, 0.35);
  background: rgba(255, 90, 90, 0.1);
}
