/* Estilos base para el header */
   .growfast-header {
      background-color: #fff;
      height: 56px; /* Altura fija */
      width: 100%;
      z-index: 1000;
      transition: box-shadow 0.3s ease;
   }

   .growfast-header.active {
      position: fixed;
      top: 0;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra al hacer scroll */
   }

   .growfast-header__container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      max-width: 1200px;
      margin: 0 auto;
      height: 56px;
      box-sizing: border-box;
   }

   .growfast-header__logo {
      flex-shrink: 0;
   }

   .desktop-logo {
      display: block;
      max-height: 48px;
      width: auto;
   }

   .mobile-logo {
      display: none;
      max-height: 44px;
      width: auto;
   }

   .growfast-header__navigation {
      flex-grow: 1;
      margin: 0 20px;
   }

   .hs_cos_wrapper_widget {
      flex-shrink: 0; /* Evita que el contenedor del botón se comprima */
   }

   .hs-button {
      font-family: 'Poppins', sans-serif !important;
      font-size: 14px;
      font-weight: 400;
      background-color: #ffffff;
      color: #1D1C1D;
      text-decoration: none;
      padding: 8px 16px;
      border: 0.5px solid #EAEAEA;
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.3s, color 0.3s;
      white-space: nowrap;
      line-height: 1;
      display: inline-block;
      height: 44px; /* Altura base para escritorio */
      line-height: 28px; /* Centra el texto verticalmente */
      box-sizing: border-box;
   }

   .hs-button:hover {
      background-color: #f2fdff;
      color: #1264a3;
   }

   /* Media queries para responsividad */
   @media (max-width: 1024px) {
      .desktop-logo {
         display: none;
      }