.button-base {
   display: flex;
   width: 100%;
   height: 2.875rem;
   padding: 1rem;
   justify-content: center;
   align-items: center;
   gap: 0.625rem;
   flex-shrink: 0;
   border-radius: 10px;
   text-align: center;
   font-family: Gilroy;
   font-size: 1rem;
   font-style: normal;
   font-weight: 600;
   line-height: 137.5%;
   border: none;
}

.button-primary {
   background: var(--brand-colors-primary-500);
   color: var(--base-white);
   transition: background 150ms ease;
}

.button-white {
   background: var(--base-white);
   color: var(--gray-900);
   transition: background 150ms ease;
}

.button-secondary {
   background: var(--gray-900);
   color: var(--base-white);
   transition: background 150ms ease;
}

.store-button {
   display: flex;
   align-items: center;
   width: 100%;
   height: 3.75rem;
   flex-shrink: 0;
   font-family: Gilroy;
   font-size: 1.125rem;
   font-style: normal;
   font-weight: 600;
   line-height: 144.444%;
   padding: 0.75rem;
}

.store-button small {
   font-size: 0.75rem;
   font-weight: 500;
   line-height: 133.333%;
   opacity: 0.7;
}

.select-buttons {
   display: flex;
   justify-content: center;
   align-items: center;
   max-width: 544px;
   height: auto;
   padding: 0.5rem;
   flex-shrink: 0;
   border-radius: 160px;
}

.select-button {
   width: 50%;
   height: auto !important;
   flex-shrink: 0;
   display: flex;
   color: var(--gray-900);
   font-family: Gilroy;
   font-size: 0.578rem;
   font-style: normal;
   font-weight: 600;
   line-height: 140%;
   padding: 0.5rem;
   border-radius: 160px;
   transition: all 200ms ease;
}

.button-outline {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 4px;
   padding: 0.5rem 1rem;
   height: 3rem;
   border-radius: 30px;
   border: 1px solid var(--gray-200);
   color: var(--gray-900);
   background-color: var(--base-white);
   font-family: Gilroy;
   font-size: 1rem;
   font-style: normal;
   font-weight: 500;
   transition: background 150ms ease;
}

.a-button {
   text-decoration: none;
}

#faq .button-outline, 
#blog .button-outline {
   border-radius: 10px;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 768px) { 
   .button-base {
       width: 9.625rem;
   }
   .store-button {
      width: 13.4375rem;
   }
   .select-buttons {
      padding: 0.5rem 0.875rem;
   }
   .select-button {
      width: 16.625rem;
      font-size: 1.25rem;
      padding: 0.875rem;
      height: 3rem;
   }
   /* hover buttons md or heigher screens only */
   .select-button:not(.bg-transparent):hover {
      background: var(--gray-900);
      color: var(--base-white);
   }
   .button-outline:hover {
      background: var(--gray-900);
      color: var(--base-white);
   }
   .button-secondary:hover {
      background: var(--base-black);
   }
   .button-primary:hover {
      background: var(--brand-colors-primary-900);
      color: var(--base-white);
   }
   .button-white:hover {
      background: var(--gray-300);
   }
}

@media (max-width: 768px) {
   #como-funciona .select-button {
      font-size: 1rem;
   }
}