 @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');
  
    /* CAMBIO DE COLORES PRIMARIOS */
   :root {
      --primary-color: #00ff00; /* CAMBIO DE COLORES TITULOS, SUBSITULOS Y ALGUNOS BOTONES */
      --secondary-color: #333; /* CAMBIO DE COLOR PESTAÑA DE ESCONDER BARRA LATERAL Y PESTAÑA DE PRODUCTOS  */
      --text-color: #fff; /* CAMBIO DE COLOR LETRA DEL MENU E ICONOS, CAMBIO DE COLOR DE DESCRIPCIONES  */
      --background-color: #121212; /* CAMBIO DE COLOR DE FONDO  */
      --accent-color: #1e88e5;
    }
  
  
    /* MARGEN DE LA PAGINA  */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
  
    /* CAMBIO DE COLOR DIFUMINADO DEL FONDO  */
    body {
      font-family: 'JetBrains Mono', monospace;
      background: linear-gradient(135deg, var(--background-color), #1a1a1a);
      color: var(--text-color);
      display: flex;
      min-height: 100vh;
      overflow-x: hidden;
      cursor: none;
    }
  
    /* CONFIGURACION DEL PUNTERO  */
    #cursor-effect {
      position: fixed;
      width: 20px;
      height: 20px;
      border: 2px solid var(--primary-color);
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      transition: width 0.3s, height 0.3s, border-color 0.3s;
      z-index: 9999;
    }
  
    #cursor-effect::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 4px;
      height: 4px;
      background-color: var(--primary-color);
      border-radius: 50%;
    }
  
    a, button, .add-to-cart, .share-btn, .quantity-btn, .remove-item {
      cursor: pointer;
    }
  
    /* CONFIGURACION BOTON DE COMPRA  */
    .add-to-cart {
      font-weight: bold;
      color: white; /* COLOR LETRA DEL BOTON DE COMPRAR  */
      background-color: red; /* FONDO DEL BOTON  */
      transition: background-color 0.3s ease;
    }
  
    .add-to-cart:hover {
      background-color: #cc0000; /* HOVER DEL BOTON  */
    }
  
    /* CONFIGURACION MENU VERTICAL  */
    .sidebar {
      width: 200px; /* ANCHO DEL MENU  */
      background-color: rgba(51, 51, 51, 0.9); /* COLOR DE FONDO  */
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: all 0.3s ease;
      position: fixed;
      height: 100vh; /* ALTURA DEL MENU  */
      left: 0;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(10px);
      transform: translateX(0);
    }
  
    .sidebar.collapsed {
      width: 80px; /* ANCHO CUANDO ESTA OCULTO  */
      transform: translateX(0);
    }
  
    /* TAMAÑO DEL LOGO ABIERTO Y OCULTO  */
    .logo {
      width: 150px; /* TAMAÑO ABIERTO */
      margin-bottom: 2rem;
      transition: all 0.3s ease;
    }
  
    .sidebar.collapsed .logo {
      width: 60px; /* TAMAÑO OCULTO  */
    }
  
    /* POSICION TEXTOS DEL MENU LINK DE NAVEGACION  */
    .nav-links {
      list-style: none;
      width: 134%;
    }
  
    .nav-links li {
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .nav-links a {
      color: var(--text-color);
      text-decoration: none;
      font-size: 1.1rem;
      transition: color 0.3s ease;
      display: flex;
      align-items: center;
      width: 80%;
    }
  
    .nav-links a:hover {
      color: var(--primary-color);
    }
  
    .nav-links i {
      margin-right: 1rem;
      font-size: 1.4rem;
      min-width: 25px;
      text-align: center;
      transition: all 0.3s ease;
    }
  
    .sidebar.collapsed .nav-links span {
      display: none;
    }
  
    .sidebar.collapsed .nav-links i {
      font-size: 1.8rem;
      margin-right: 10;
      margin-left: -8;
    }
  
    .sidebar.collapsed .nav-links li {
      margin-bottom: 2.5rem;
    }
  
    .toggle-btn {
      position: absolute;
      top: 1rem;
      right: -40px;
      background-color: var(--secondary-color);
      color: var(--text-color);
      border: none;
      padding: 0.7rem;
      cursor: pointer;
      border-radius: 0 5px 5px 0;
      transition: all 0.3s ease;
    }
  
    .main-content {
      flex: 1;
      padding: 2rem;
      margin-left: 200px; /* MUEVE EL CONTENIDO DE LA PAGINA A LA DERECHA  */
      transition: margin-left 0.3s ease;
    }
  
    .main-content.expanded {
      margin-left: 80px;
    }
  
    /* CONFIGURACION DEL TITULO  */
    h1 {
      text-align: center;
      font-size: 3.5rem; 
      margin-bottom: 2rem;
      color: var(--primary-color);
      text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
      letter-spacing: 2px;
      font-weight: 700;
      position: relative;
      padding-bottom: 15px;
      animation: glow 2s ease-in-out infinite alternate;
    }
  
    h1::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 4px;
      background-color: var(--primary-color);
      border-radius: 2px;
    }
  
    @keyframes glow {
      from {
        text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
      }
      to {
        text-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
      }
    }
  
    /* CONFIGURACION DEL SUBTITULO  */
    h2 {
      font-size: 2.5rem; 
      margin-bottom: 1.5rem;
      color: var(--primary-color);
      text-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
    }
  
    #inicio {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 2rem 0; 
    }
  
    #typing-text {
      font-size: 1.4rem;
      max-width: 900px;
      margin: 1.5rem auto 2.5rem;
      line-height: 1.7;
      color: #a0a0a0;
      text-shadow: 0 0 12px rgba(160, 160, 160, 0.4);
      min-height: 6em; 
    }
  
    #typing-text::after {
      content: '|';
      animation: blink 0.7s infinite;
    }
  
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }
  /* CONFIGURACION DEL BANNER  */
    .banner {
      width: 100%;
      max-height: 400px; 
      object-fit: cover;
      margin-bottom: 2rem;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
  
    /* CONFIGURACION DE MIS SERVICIOS  */
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* CONFIGURACION DEL ANCHO DE LA TARJETA  */
      gap: 2rem;
      margin-bottom: 2rem;
    }
  
    .service-card {
      background-color: rgba(51, 51, 51, 0.7); /* COLOR DE LA TARJETA  */
      padding: 1.5rem;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      backdrop-filter: blur(5px);
    }
  
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 255, 0, 0.1); /* COLOR DEL SOMBREADO  */
    }
  
    .service-card h3 {
      color: var(--primary-color);
      margin-bottom: 1rem;
    }
  
    /* CONFIGURACION BOTON ACCEDER A LA COMUNIDAD  */
    .cta-button {
      display: inline-block;
      font-size: 1.1rem;
      padding: 1rem 2rem;
      border-radius: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
      background: linear-gradient(45deg, var(--primary-color), #00cc00);
      border: none;
      color: var(--background-color);
      font-weight: 600;
      box-shadow: 0 4px 6px rgba(0, 255, 0, 0.1);
      transition: all 0.3s ease;
    }
  
    .cta-button:hover {
      background: linear-gradient(45deg, #00cc00, var(--primary-color));
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 255, 0, 0.2);
    }
  
    /* CONFIGURACION PORTAFOLIO  */
    .portfolio {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* ANCHO DE TARJETAS DEL PORTAFOLIO  */
      gap: 2rem;
      margin-bottom: 2rem;
    }
  
    .portfolio-item {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
  
    .portfolio-item img {
      width: 100%;
      height: auto;
      transition: transform 0.3s ease;
    }
  
    .portfolio-item:hover img {
      transform: scale(1.1);
    }
  
    .portfolio-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
  
    .portfolio-item:hover .portfolio-overlay {
      opacity: 1;
    }
  
    .portfolio-overlay a {
      color: var(--text-color);
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2rem;
      padding: 0.5rem 1rem;
      border: 2px solid var(--primary-color);
      border-radius: 5px;
      transition: all 0.3s ease;
    }
  
    .portfolio-overlay a:hover {
      background-color: var(--primary-color);
      color: var(--background-color);
    }
  
    /* CONFIGURACION SECCION COMUNIDAD  */
    #comunidad {
      text-align: center;
      padding: 3rem 0;
      background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 255, 0, 0.05));
      border-radius: 10px;
      margin-top: 3rem;
    }
  
    #comunidad h2 {
      margin-bottom: 1.5rem;
      font-size: 2.5rem;
      color: var(--primary-color);
      text-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
    }
  
    #comunidad p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto 2rem;
      color: #a0a0a0;
    }
  
    /* CONFIGURACION TIENDA  */
    #tienda {
      padding: 2rem 0;
    }
  
    #tienda h3 {
      font-size: 1.8rem;
      color: var(--primary-color);
      margin-bottom: 1rem;
      text-align: center;
    }
  
    .category-tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 2rem;
    }
  
    .tab-button {
      background-color: var(--secondary-color);
      color: var(--text-color);
      border: none;
      padding: 0.5rem 1rem;
      margin: 0 0.5rem;
      cursor: pointer;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }
  
    .tab-button.active {
      background-color: var(--primary-color);
      color: var(--background-color);
    }
  
    .tab-content {
      display: none;
    }
  
    .tab-content.active {
      display: block;
    }
  
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }
  
    .product-item {
      background-color: rgba(51, 51, 51, 0.7);
      border-radius: 10px;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
  
    .product-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 255, 0, 0.1);
    }
  
    .product-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 1rem;
    }
  
    .product-info {
      text-align: center;
    }
  
    .product-info h3 {
      color: var(--primary-color);
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
    }
  
    .product-info p {
      margin-bottom: 0.5rem;
    }
  
    .product-info .product-ref {
      background-color: rgba(0, 255, 0, 0.1);
      padding: 2px 5px;
      border-radius: 3px;
      display: inline-block;
    }
  
    .product-info .product-price {
      font-size: 1.2rem;
      font-weight: bold;
      color: var(--text-color);
    }
  
    .product-actions {
      display: flex;
      flex-direction: column;
      width: 100%;
    }
  
    .action-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 0.5rem;
    }
  
    .add-to-cart,
    .share-btn {
      flex: 1;
      padding: 0.75rem 1rem;
      font-size: 1.1rem;
      margin-right: 0.5rem;
    }
  
    .share-btn {
      margin-right: 0;
    }
  
    .ver-demo-btn {
      width: 100%;
      padding: 0.75rem;
      font-size: 1.1rem;
    }
  
    /* CONFIGURACION CARRITO  */
    #cart-icon {
      position: fixed;
      top: 30px; /* MARGEN SUPERIOR ICONO DEL CARRITO  */
      right: 30px; /* MARGEN DERECHO ICONO DEL CARRITO  */
      font-size: 40px; /* TAMAÑO ICONO DEL CARRITO  */
      cursor: pointer;
      z-index: 1001;
    }
  
    #cart-count {
      background-color: #1900ff; /* BURBUJA DEL CARRITO  */
      color: #ffffff; /* COLOR LETRA DE BURBUJA  */
      border-radius: 50%;
      padding: 2px 8px; 
      font-size: 14px; 
      position: absolute;
      top: -12px; 
      right: -12px; 
    }
  
    /* CONFIGURACION VENTANA DEL CARRITO  */
    #cart-container {
      position: fixed;
      top: 0;
      right: 0;
      width: 400px; /* ANCHO DE LA VENTANA  */
      height: 100vh; /* ALTO DE LA VENTANA  */
      background-color: var(--background-color);
      padding: 1rem;
      box-shadow: -5px 0 15px rgba(0, 255, 0, 0.1); /* SOMBRA DE LA VENTANA  */
      overflow-y: auto;
      z-index: 1000;
      transition: transform 0.3s ease-in-out;
      border-left: 1px solid var(--primary-color);
    }
  
    #cart-container.hidden {
      transform: translateX(100%);
    }
  
    #cart-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      flex-direction: row-reverse; 
    }
  
    #close-cart {
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: var(--primary-color);
      transition: color 0.3s ease;
    }
  
    #close-cart:hover {
      color: #ff4444; /* COLOR HOVER X DE  */
    }
  
    #cart-total {
      font-size: 1.2rem; 
      font-weight: bold; 
      margin-bottom: 1rem; 
    }
  
    #cart-items {
      margin-bottom: 1rem;
    }
  
    .cart-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      padding: 0.75rem;
      background-color: rgba(255, 255, 255, 0.05); /* COLOR FONDO ITEM DE ARTICULOS  */
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }
  
    .cart-item:hover {
      background-color: rgba(255, 255, 255, 0.1); /* COLOR HOVER DE ITEM DE ARTICULOS  */
    }
  
    .cart-item-info {
      flex-grow: 1;
    }
  
    .cart-item-quantity {
      display: flex;
      align-items: center;
      margin: 0 1rem;
    }
  
    .quantity-btn {
      background-color: var(--primary-color);
      color: var(--background-color);
      border: none;
      padding: 0.25rem 0.5rem;
      margin: 0 0.25rem;
      cursor: pointer;
      border-radius: 4px;
      transition: background-color 0.3s ease, transform 0.1s ease;
    }
  
    .quantity-btn:hover {
      background-color: #00cc00;
      transform: scale(1.05);
    }
  
    .remove-item {
      background-color: #ff4444; /* COLOR BOTON DE ELIMINAR  */
      color: white; /* COLOR LETRA DEL BOTON DE ELIMINAR  */
      border: none;
      padding: 0.25rem 0.5rem;
      cursor: pointer;
      border-radius: 4px;
      transition: background-color 0.3s ease, transform 0.1s ease;
    }
  
    .remove-item:hover {
      background-color: #ff6666; /* HOVER COLOR BOTON DE ELIMINAR  */
      transform: scale(1.05);
    }
  
    /* FALTA AGREGAR COMENTARIOS A PARTIR DE AQUÍ  */
    #checkout-btn.hidden, /* ESCONDE EL BOTON FINALIZAR COMPRA - CUANDO SEPRESIONA EN EL   */
    #checkout-form.hidden { /* ESCONDE EL FORMULARIO - APARECE CUANDO SE PRESIONA EL BOTON FINALIZAR COMPRA   */
      display: none;
    }
  
    #tienda {
      padding: 2rem 0; /* SEPARA EL TITULO NUESTRA TIENDA DE LA SECCION DE ARRIBA   */
    }
  
    /* CONFIGURACION BOTON DEL CHECKOUT   */
    #checkout-btn {
      width: 100%; /* ANCHO DEL BOTON   */
      padding: 0.90rem; /* ALTO DEL BOTON   */
      background-color: var(--primary-color);
      color: var(--background-color);
      border: none;
      border-radius: 10px; /* RADIO DEL BORDE   */
      font-size: 1.40rem; /* TAMAÑO DE LA LETRA DEL BOTON   */
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.1s ease;
      margin-top: 1rem; 
    }
  
    #checkout-btn:hover {
      background-color: #00cc00; /* CAMBIO DE COLOR DEL HEVER DEL BOTON   */
      transform: scale(1.02);
    }
  
    #shipping-form {
      margin-top: 1rem; /* DISTANCIA DEL FORMULARIO PARTE SUPERIOR   */
    }
  
    /* CONFIGURACION DEL FORMULARIO   */
    #shipping-form input,
    #shipping-form textarea {
      width: 100%; /* ANCHO DEL FORMULARIO   */
      padding: 0.5rem;
      margin-bottom: 1rem; 
      border: 1px solid var(--primary-color);
      background-color: rgba(255, 255, 255, 0.1);
      color: var(--text-color);
      border-radius: 4px;
    }
  
    #shipping-form input:focus,
    #shipping-form textarea:focus {
      outline: none;
      box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
    }
  
    #shipping-form button {
      width: 100%;
      padding: 0.75rem;
      background-color: var(--primary-color);
      color: var(--background-color);
      border: none;
      border-radius: 4px;
      font-size: 1.1rem;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.1s ease;
    }
  
    #shipping-form button:hover {
      background-color: #00cc00;
      transform: scale(1.02);
    }
  
    @media (max-width: 768px) {
      body {
        font-size: 14px;
      }
  
      .sidebar {
        display: none;
      }
  
      .main-content,
      .main-content.expanded {
        margin-left: 0;
        padding: 1rem;
        padding-bottom: 60px;
      }
  
      h1 {
        font-size: 2.5rem;
      }
  
      h2 {
        font-size: 2rem;
      }
  
      #typing-text {
        font-size: 1.2rem;
      }
  
      .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
  
      .product-item {
        width: 100%;
      }
  
      .product-item {
        padding: 0.5rem;
      }
  
      .product-info h3 {
        font-size: 1rem;
      }
  
      .product-actions {
        flex-direction: column;
      }
  
      .action-row {
        flex-direction: column;
        margin-bottom: 0.5rem;
      }
  
      .add-to-cart,
      .share-btn,
      .ver-demo-btn {
        width: 100%;
        margin-bottom: 0.5rem;
        padding: 0.5rem;
        font-size: 0.9rem;
      }
  
      #cart-container {
        width: 100%;
      }
  
      .testimonial-item {
        flex: 0 0 100%;
      }
  
      .testimonial-image {
        width: 100%;
        max-width: 300px;
      }
  
      .mobile-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background-color: var(--background-color);
        box-shadow: 0 -2px 10px rgba(0, 255, 0, 0.1);
        z-index: 1000;
      }
  
      .mobile-nav a {
        color: var(--text-color);
        font-size: 18px;
        transition: color 0.3s ease;
        padding: 5px;
      }
  
      .mobile-nav a:hover,
      .mobile-nav a:active {
        color: var(--primary-color);
      }
  
      #video-section {
        margin: 1rem auto;
      }
    }
  
    @media (min-width: 769px) {
      .mobile-nav {
        display: none;
      }
    }
  
    #testimonios {
      padding: 4rem 0;
      background: linear-gradient(135deg, rgba(0, 255, 0, 0.05), rgba(0, 255, 0, 0.1));
      border-radius: 10px;
      margin-top: 3rem;
    }
  
    #testimonios h2 {
      text-align: center;
      margin-bottom: 2rem;
    }
  
    .testimonial-container {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }
  
    .testimonial-carousel {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
    }
  
    .testimonial-item {
      flex: 0 0 48%;
      padding: 1rem;
      text-align: center;
      margin-bottom: 2rem;
    }
  
    .testimonial-image {
      width: 400px;
      height: auto;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 1rem;
    }
  
    .testimonial-text {
      font-style: italic;
      color: var(--text-color);
      max-width: 80%;
      margin: 0 auto;
    }
  
    .testimonial-controls {
      display: flex;
      justify-content: center;
      margin-top: 1rem;
    }
  
    .prev-testimonial,
    .next-testimonial {
      background-color: var(--primary-color);
      color: var(--background-color);
      border: none;
      padding: 0.5rem 1rem;
      margin: 0 0.5rem;
      cursor: pointer;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }
  
    .prev-testimonial:hover,
    .next-testimonial:hover {
      background-color: #00cc00;
    }
  
    .trustpilot-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 2rem;
    }
  
    .trustpilot-logo {
      width: 250px; 
      margin-bottom: 1rem;
    }
  
    .trustpilot-link {
      color: var(--primary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }
  
    .trustpilot-link:hover {
      color: #00cc00;
    }
  
    .popup {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.8);
    }
  
    .popup-content {
      background-color: var(--background-color);
      margin: 10% auto;
      padding: 20px;
      border: 1px solid var(--primary-color);
      width: 80%;
      max-width: 600px;
      position: relative;
    }
  
    .close-popup {
      color: var(--primary-color);
      float: right;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
    }
  
    .close-popup:hover,
    .close-popup:focus {
      color: #00cc00;
      text-decoration: none;
      cursor: pointer;
    }
  
    #demo-video {
      width: 100%;
      height: 315px;
    }
  
    .sidebar-footer {
      margin-top: auto;
      text-align: center;
      padding: 1rem;
      transition: all 0.3s ease;
    }
  
    .profile-image {
      width: 120px;  
      height: 120px; 
      border-radius: 50%;
      border: 4px solid white; 
      margin-bottom: 1rem;
    }
  
    .profile-name {
      font-weight: bold;
      margin-bottom: 0.5rem;
    }
  
    .profile-title {
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }
  
    .digital-card-btn {
      background-color: var(--primary-color);
      color: var(--background-color);
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
      display: inline-block;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 100%;
    }
  
    .digital-card-btn:hover {
      background-color: #00cc00;
    }
  
    .sidebar.collapsed .sidebar-footer {
      display: none;
    }
  
    @media (max-width: 768px) {
      .sidebar-footer {
        display: none;
      }
    }