/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 20 2026 | 11:11:39 */
/* ===================================================
   CLUBJOB – CSS RESPONSIVO MOBILE
   ================================================== */

/* ---- HAMBURGER BUTTON (.cj-mob-toggle) ---- */
.cj-mob-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  color: white;
  z-index: 1000;
  flex-shrink: 0;
}
.cj-mob-toggle svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* ---- MOBILE BREAKPOINT ≤ 768px ---- */
@media (max-width: 768px) {
  /* Show hamburger button */
  .cj-mob-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  /* Hide nav by default on mobile */
  .cj-header .nav {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0d1b2a;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 9999;
    padding: 80px 20px 40px;
    box-sizing: border-box;
  }

  /* Show nav when open */
  .cj-header .nav.open {
    display: flex !important;
  }

  /* Nav links styling */
  .cj-header .nav a,
  .cj-header .nav li a {
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    text-align: center;
    display: block;
  }

  /* Header layout */
  .cj-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 20px !important;
    position: relative;
    z-index: 1000;
  }

  /* ---- SECTIONS ---- */
  [style*="padding: 120px 80px"],
  [style*="padding:120px 80px"] {
    padding: 60px 20px !important;
  }

  .cj-section,
  .cj-container {
    padding: 40px 20px !important;
  }

  /* ---- CJ-ROW & GRID ---- */
  .cj-row,
  .grid {
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .cj-row > *,
  .grid > * {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* ---- TYPOGRAPHY ---- */
  h1 { font-size: 28px !important; line-height: 1.3 !important; }
  h2 { font-size: 24px !important; line-height: 1.3 !important; }
  h3 { font-size: 20px !important; }

  /* ---- HERO SECTION ---- */
  .cj-hero,
  .cj-section.hero {
    padding: 80px 20px 60px !important;
    text-align: center;
  }

  /* ---- BUTTONS ---- */
  .cj-btn {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 14px 20px !important;
    margin: 8px 0 !important;
    box-sizing: border-box;
  }

  /* ---- FOOTER ---- */
  .cj-footer {
    flex-direction: column !important;
    padding: 40px 20px !important;
    text-align: center;
    gap: 24px !important;
  }

  .cj-footer > * {
    width: 100% !important;
  }

  /* ---- IMAGES ---- */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}