/* =================================== */
/* buttons.css */
/* =================================== */

/* Buttons — hardcoded to beat Webflow globals */
  .ze-wrap .ze-btn1,
  .ze-wrap a.ze-btn1,
  .ze-wrap a.ze-btn1:visited,
  .ze-wrap a.ze-btn1:active {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: #00E5AA !important;
    color: #1C1630 !important;
    font-family: 'Bitstream Swiss 721', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 16px 36px !important;
    border-radius: 80px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.2s, transform 0.15s !important;
    text-decoration: none !important;
  }
  .ze-wrap .ze-btn1:hover,
  .ze-wrap a.ze-btn1:hover {
    background: #00B788 !important;
    color: #1C1630 !important;
    transform: translateY(-2px);
  }

  
/* "Ver todo" Button */
  .ze-browse-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 8px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: rgba(255,255,255,0.6);
    font-family: 'Dinpro', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
  }
  .ze-browse-link:hover { color: #00E5AA; border-color: #00E5AA; background: rgba(0,229,170,0.1); }
  .ze-browse-link svg { transition: transform 0.2s ease; }
  .ze-browse-link:hover svg { transform: translateX(3px); }
