.form-group {
  display: grid;
  justify-items: start;
  gap: 0.5rem;
}
.form-group.stretch {
  justify-items: stretch;
}
.form-group.flex-1 {
  flex: 1;
}

.w-100 {
  width: 100%;
}

.form-group-row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.form-group-row.flex-1 {
  flex: 1;
}
@media (max-width: 576px) {
  .form-group-row {
    flex-direction: column;
  }
}

.hidden {
  display: none;
}

.form-stack {
  display: grid;
  gap: 1.25rem;
}
.form-stack .primary-button {
  margin-top: 0;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
}

.field-hint {
  margin-left: 0.25rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: #9ca3af;
}

.form-input {
  width: 100%;
  height: 3rem;
  border: 1px solid #ccced1;
  border-radius: 0.75rem;
  padding: 0 0.95rem;
  color: #111827;
  background-color: #ffffff;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.form-input::placeholder {
  color: #9ca3af;
}
.form-input:hover {
  border-color: #f1f1f1;
  background-color: #fff;
}
.form-input:focus-visible {
  outline: none;
  border-color: #cb1512;
  box-shadow: 0 0 0 4px rgba(203, 21, 18, 0.15);
  background-color: #fff;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.form-checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  border: 1px solid #ccced1;
  border-radius: 0.35rem;
  background-color: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.form-checkbox input[type=checkbox]:hover {
  border-color: #f1f1f1;
  background-color: #fff;
}
.form-checkbox input[type=checkbox]:checked {
  background-color: #cb1512;
  border-color: #cb1512;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='4' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m4.5 12.75 6 6 9-13.5'/%3E%3C/svg%3E");
  background-size: 0.75rem;
  background-repeat: no-repeat;
  background-position: center;
}
.form-checkbox input[type=checkbox]:focus-visible {
  outline: none;
  border-color: #cb1512;
  box-shadow: 0 0 0 4px rgba(203, 21, 18, 0.15);
}
.form-checkbox .form-label {
  font-weight: 400;
  cursor: pointer;
}

.form-toggle {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
}
.form-toggle input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 2.75rem;
  height: 1.5rem;
  border: 1px solid #ccced1;
  border-radius: 999px;
  background-color: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.2s ease;
}
.form-toggle input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.2rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #ccced1;
  transition: left 0.25s ease, background-color 0.25s ease;
}
.form-toggle input[type=checkbox]:hover {
  border-color: #f1f1f1;
}
.form-toggle input[type=checkbox]:checked {
  background-color: #cb1512;
  border-color: #cb1512;
}
.form-toggle input[type=checkbox]:checked::after {
  left: calc(100% - 1.2rem);
  background-color: #fff;
}
.form-toggle input[type=checkbox]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(203, 21, 18, 0.15);
}
.form-toggle .form-label {
  font-weight: 400;
  cursor: pointer;
}

.primary-button {
  border: 0;
  border-radius: 0.75rem;
  height: 3rem;
  padding: 0 1rem;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  background: #cb1512;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.primary-button:hover {
  filter: brightness(1.05);
  box-shadow: 0 12px 24px rgba(203, 21, 18, 0.25);
}
.primary-button:active {
  transform: translateY(1px);
}
.primary-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(203, 21, 18, 0.16), 0 12px 24px rgba(203, 21, 18, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
}

body {
  color: #4b5563;
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

.app__no-wrap {
  white-space: nowrap;
}

.admin-bar {
  background: #23282d;
  color: #f0f0f1;
  font-size: 0.8125rem;
  line-height: 1;
  z-index: 101;
  position: sticky;
  top: 0;
}
.admin-bar__inner {
  max-width: 1276px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.admin-bar__user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.admin-bar__name {
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.admin-bar__email {
  color: #a7aaad;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-bar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.admin-bar__action {
  flex-shrink: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 0.25rem;
  background: #cb1512;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  transition: filter 0.15s ease;
}
.admin-bar__action:hover {
  filter: brightness(1.08);
}

@media (max-width: 576px) {
  .admin-bar__inner {
    flex-wrap: wrap;
  }
  .admin-bar__email {
    display: none;
  }
}
#barra-brasil {
  position: relative;
  z-index: 100;
}

.nav-top {
  background: #ffffff;
  border-bottom: 1px solid #ccced1;
  z-index: 50;
}
.nav-top__inner {
  max-width: 1276px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-top__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  color: #111827;
}
.nav-top__logo-icon {
  width: 50px;
  height: auto;
}
.nav-top__logo-separator {
  margin-inline: 0.5rem;
  font-size: 1.5rem;
  color: #9ca3af;
}
.nav-top__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-top__brasao {
  width: 180px;
  height: auto;
}
.nav-top__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
}
.nav-top__hamburger svg {
  width: 2rem;
  height: 2rem;
}

@media (max-width: 992px) {
  .nav-top {
    border-bottom-width: 1px;
  }
  .nav-top__inner {
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
  }
  .nav-top__logo {
    justify-content: center;
    gap: 0.75rem;
  }
  .nav-top__hamburger {
    display: inline-flex;
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    justify-content: center;
  }
  .nav-top__actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .nav-top__brasao {
    width: 140px;
  }
}
@media (max-width: 576px) {
  .nav-top__logo-separator,
  .nav-top__logo-text {
    display: none;
  }
}
.nav-product {
  background: #f1f1f1;
  position: sticky;
  top: 0;
  z-index: 40;
}
.nav-product__no-sticky {
  position: static;
}
.nav-product__inner {
  max-width: 1276px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.nav-product__links {
  display: none;
  align-items: stretch;
  gap: 2rem;
}
@media (min-width: 992px) {
  .nav-product__links {
    display: flex;
  }
}
.nav-product__link {
  font-size: 0.875rem;
  color: #4b5563;
  transition: color 0.15s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.nav-product__link:hover {
  color: #111827;
}
.nav-product__link--danger {
  color: #cb1512;
}
.nav-product__link--danger:hover {
  color: #cb1512;
}
.nav-product__dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
}
.nav-product__dropdown:hover .nav-product__dropdown-menu {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.nav-product__dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #4b5563;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.nav-product__dropdown-btn:hover {
  color: #111827;
}
.nav-product__dropdown-btn svg {
  width: 0.75rem;
  height: 0.75rem;
}
.nav-product__dropdown-menu {
  position: absolute;
  top: 100%;
  background: #ffffff;
  border: 1px solid #ccced1;
  display: flex;
  flex-direction: column;
  min-width: 160px;
  transition: opacity 0.15s;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}
.nav-product__dropdown-link {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #4b5563;
  white-space: nowrap;
}
.nav-product__dropdown-link:hover {
  color: #111827;
}
.nav-product__actions {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.nav-product__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  border: none;
  background: none;
  color: #4b5563;
  cursor: pointer;
  transition: color 0.15s;
}
.nav-product__search-btn:hover {
  color: #111827;
}
.nav-product__search-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

@media (max-width: 992px) {
  .nav-product {
    display: block;
    pointer-events: none;
    position: static;
    top: auto;
  }
  .nav-product__actions {
    pointer-events: auto;
    position: absolute;
    right: 1.5rem;
    top: 0;
    z-index: 1;
  }
  .nav-product__inner {
    position: relative;
    min-height: 3rem;
  }
  .nav-product--open {
    display: block;
  }
  .nav-product--open .nav-product__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1.5rem;
    gap: 0;
  }
  .nav-product--open .nav-product__links {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .nav-product__link,
  .nav-product__dropdown-btn {
    width: 100%;
    padding: 0.75rem 0;
    pointer-events: auto;
  }
  .nav-product__dropdown {
    width: 100%;
    flex-direction: column;
  }
  .nav-product__dropdown-menu {
    position: static;
    border: none;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    margin-left: 1rem;
    padding: 0;
  }
  .nav-product__dropdown-link {
    padding: 0.5rem 0 0.5rem 1rem;
    white-space: normal;
  }
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal[hidden] {
  display: none;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
}
.modal__dialog {
  position: relative;
  width: min(100%, 32rem);
  background: #ffffff;
  border: 1px solid #ccced1;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.12);
}
.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.15s;
}
.modal__close:hover {
  color: #111827;
}
.modal__close svg {
  width: 1.25rem;
  height: 1.25rem;
}
.modal__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  padding-right: 2rem;
}
.modal__form {
  display: grid;
  gap: 0.75rem;
}
.modal__input {
  margin-top: 0;
}
.modal__submit {
  margin-top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.modal-open {
  overflow: hidden;
}

.footer {
  width: 100%;
  background: #f1f1f1;
  color: #111827;
  padding: 3rem 1.5rem 2rem;
}

.footer__container {
  max-width: 1276px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer__catalog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.footer__column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.footer__column h2 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__column-subtitle {
  margin-top: 2.5rem;
}

.footer__column-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.footer__column li {
  color: #4b5563;
  font-size: 13px;
  line-height: 1.6;
  transition: color 0.15s ease;
}
.footer__column li:hover {
  color: #111827;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
  padding-top: 1.5rem;
  border-top: 1px solid #ccced1;
}

.footer__brasao {
  width: 180px;
  height: auto;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.45rem;
  border-radius: 0.35rem;
  line-height: 1.2;
  white-space: nowrap;
}

.badge--deprecated {
  color: #92400e;
  background: rgba(146, 64, 14, 0.12);
}

/*# sourceMappingURL=layout.css.map */
