@import url("https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&family=Montserrat:wght@300;400;500;700&family=Poppins:wght@300;400;500;600&display=swap");

    :root {
      --primary-color: #86ff05;
      --primary-color-dark: #65b312;
      --text-color: #ffffff;
      --text-color-muted: rgba(255, 255, 255, 0.8);
      --dark-bg: rgba(0, 0, 0, 0.75);
      --dark-bg-light: rgba(0, 0, 0, 0.6);
      --transition-speed: 0.5s;
      --border-radius: 8px;
      --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
      --section-spacing: 5rem;
    }

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

    body {
      margin: 0;
      padding: 0;
      font-family: "Montserrat", "Poppins", sans-serif;
      overflow-x: hidden;
      background-color: #111;
      color: #ffffff;
      line-height: 1.6;
      font-weight: 400;
    }

    /* Aseguramos que el menú de navegación esté por encima del contenido */
    .header {
      position: relative;
      z-index: 100;
    }

    .nav {
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      background-color: rgba(0, 0, 0, 0.649);
    }

    /* Fondo con grid */
    #grid {
      width: 100vw;
      height: 100vh;
      background: #8aff05;
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
      opacity: 0.35;
      filter: brightness(1.1) contrast(1.2) saturate(1.2);
    }

    /* Contenedor principal */
    .content-containerr {
      position: relative;
      width: 100%;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 6rem 2rem 2rem;
      z-index: 1;
    }
  /* Método 1: Usando un pseudo-elemento para el fondo difuminado */
    .content-containerr::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.196); /* Fondo negro semi-transparente */
      z-index: -1;
      border-radius: 10px; /* Opcional: bordes redondeados */
    }

    /* Sección de encabezado */
    .header-section {
      text-align: center;
      margin-bottom: 1rem;
      opacity: 0;
      transform: translateY(-30px);
      animation: fadeInDown 1s ease-out forwards;
      animation-delay: 0.5s;
      max-width: 800px;
      width: 100%;
    }


.title {
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1em;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.subtitle {
  color: #ffffff;
}

.description {
  font-size: 1.2rem;
  max-width: 600px;
  line-height: 1.6;
  margin: 0 auto;
  background-color: var(--dark-bg);
  padding: 1.5rem;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 1s;
  color: #ffffff;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

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

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

@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }
  
  .description {
    font-size: 1rem;
    padding: 1rem;
    color: #ffffff;
  }
  
  .k-hold {
    transform: scale(0.8);
    margin-left: -142px;
    margin-top: -142px;
  }
}


    /* Animaciones */
    @keyframes ripple {
      0% {
        transform: scale(0, 0);
        opacity: 0.5;
      }
      100% {
        transform: scale(20, 20);
        opacity: 0;
      }
    }

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

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

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    /* Media Queries */
    @media (max-width: 1200px) {
      .info-cards {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 992px) {
      .title {
        font-size: 3.5rem;
      }
      
      .subtitle {
        font-size: 1.3rem;
      }
      
      .info-title {
        font-size: 2rem;
      }
    }

    @media (max-width: 768px) {
      .title {
        font-size: 2.8rem;
      }
      
      .subtitle {
        font-size: 1.2rem;
      }
      
      .description {
        font-size: 1.1rem;
        padding: 1.5rem;
      }
      
      .info-cards {
        grid-template-columns: 1fr;
      }
      
      .k-hold {
        transform: scale(0.8);
      }
      
      .info-title {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 576px) {
      .title {
        font-size: 2.2rem;
      }
      
      .subtitle {
        font-size: 1.1rem;
      }
      
      .description {
        font-size: 1rem;
        padding: 1.2rem;
      }
      
      .k-hold {
        transform: scale(0.7);
      }
      
      .content-containerr {
        padding: 5rem 1.5rem 1.5rem;
      }
      
      .info-title {
        font-size: 1.6rem;
      }
      
      .view-more-btn {
        padding: 12px 30px;
        font-size: 1rem;
      }
    }