/* ========================================================= RESET ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========================================================= BASE ========================================================= */

body {
  font-family: 'Montserrat', sans-serif;
  background: #F2F3F5;
  color: #1e293b;
}

/* ========================================================= HEADER ========================================================= */

.layout-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e9edf2;
}

.layout-container.layout-nav {
  width: 92%;
  margin: 0 auto;
  min-height: 98px;
  display: flex;
  align-items: center;
}

.component-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.component-logo img {
  width: 145px;
  height: auto;
  display: block;
}

/* ========================================================= MENU ========================================================= */

.layout-nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.component-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.6rem;
  margin: 0;
  padding: 0;
}

.component-menu a {
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 550;
  color: #5f6f86;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.component-menu a:hover {
  color: #13294b;
}

/* ========================================================= AÇÕES DO HEADER ========================================================= */

.layout-header-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: 2rem;
  flex-shrink: 0;
}

/* ========================================================= BOTÃO SECUNDÁRIO ========================================================= */

.button-secondary {
  background: #1b2736;
  color: #ffffff;
  text-decoration: none;
  min-height: 34px;
  height: 34px;
  padding: 0 1.25rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button-secondary svg,
.button-secondary i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke-width: 2.2;
}

.layout-container.layout-nav > .button-secondary {
  margin-left: auto;
}

.button-secondary:hover {
  background: #16212f;
  transform: translateY(-1px);
}

/* ========================================================= BOTÃO LOGIN ========================================================= */

.button-login {
  background: #1b2736;
  color: #fff;
  text-decoration: none;
  min-height: 34px;
  height: 34px;
  padding: 0 1.25rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button-login:hover {
  background: #16212f;
  transform: translateY(-1px);
}

.button-login i,
.button-login svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
  flex-shrink: 0;
}

/* ========================================================= RESPONSIVO ========================================================= */

@media (max-width: 1200px) {
  .component-menu {
    gap: 2rem;
  }

  .layout-header-actions {
    gap: 1.2rem;
    margin-left: 1.4rem;
  }
}

@media (max-width: 1100px) {
  .layout-nav-menu,
  .component-menu {
    display: none !important;
  }

  .layout-container.layout-nav {
    justify-content: space-between;
  }

  .layout-header-actions {
    margin-left: auto;
  }
}

@media (max-width: 820px) {
  .button-club {
    display: none;
  }

  .layout-header-actions {
    gap: 1rem;
  }

  .component-logo img {
    width: 132px;
  }
}

@media (max-width: 480px) {
  .layout-container.layout-nav {
    width: min(94%, 1440px);
    min-height: 78px;
  }

  .component-logo img {
    width: 118px;
  }

  .button-secondary,
  .button-login {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    padding: 0;
    border-radius: 10px;
    font-size: 0;
    gap: 0;
  }

  .button-secondary span,
  .button-login span {
    display: none;
  }

  .button-secondary i,
  .button-secondary svg,
  .button-login i,
  .button-login svg {
    width: 17px;
    height: 17px;
    margin: 0;
  }
}
.terms-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

#acceptTerms {
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  width: 18px !important;
  height: 18px !important;
  opacity: 1 !important;
  position: static !important;
  pointer-events: auto !important;
  cursor: pointer;
}

.terms-check-icon {
  display: none !important;
}