/**
 * Font config
 */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/**
 * Custom properties
 */
[data-theme="gerdau-one"] {
  --navigationHeight: 80px;
  --layerMenu: 99;
  --icon-size: 24px;
  --body-font: "Work Sans", sans-serif;
}

/* [data-theme="gerdau-one"] body{
  overflow-x: hidden;
} */

/**
 * Global
 */
.page-copy[data-theme="gerdau-one"] .container {
  width: 100%;
}

[data-theme="gerdau-one"] .button1.expanded,
[data-theme="gerdau-one"] .button2.expanded {
  width: 100%;
  display: block;
  text-align: center;
}

[data-theme="gerdau-one"] .button1,
[data-theme="gerdau-one"] .button2 {
  transition: all .25s ease;
}

[data-theme="gerdau-one"] .button1 {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

[data-theme="gerdau-one"] h1 {
  font-family: "Source Sans Pro", "Source Sans 3", "Work Sans", sans-serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 600;
  line-height: 56px;
}

[data-theme="gerdau-one"] h2 {
  font-family: "Source Sans Pro", "Source Sans 3", "Work Sans", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}

[data-theme="gerdau-one"] h3 {
  font-family: "Source Sans Pro", "Source Sans 3", "Work Sans", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

[data-theme="gerdau-one"] h4 {
  font-family: "Source Sans Pro", "Source Sans 3", "Work Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

[data-theme="gerdau-one"] h5 {
  font-family: "Source Sans Pro", "Source Sans 3", "Work Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

[data-theme="gerdau-one"] p {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

[data-theme="gerdau-one"] .smallText {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: #FFF;
}

/**
 * Heading Global Component
 */
[data-theme="gerdau-one"] .one__heading {
  display: grid;
  grid-template-columns: auto 50%;
  margin-bottom: 40px;
  gap: 130px;
}

[data-theme="gerdau-one"] .one__heading__title {
  margin: 0;
}

[data-theme="gerdau-one"] .one__heading__title > span {
  width: 130px;
  border-bottom: 1px solid currentColor;
  display: inline-block;
  transform: translateX(2px) translateY(2px);
}

[data-theme="gerdau-one"] .one__heading__subtitle {
  margin: 0;
}

 /**
  * Filters Global Component
  */
[data-theme="gerdau-one"] .one__filters {}

[data-theme="gerdau-one"] .one__filters__title {
  font-family: var(--body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin: 40px 0 8px;
}

[data-theme="gerdau-one"] .one__filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

[data-theme="gerdau-one"] .one__filters-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[data-theme="gerdau-one"] .one__filters-radio:checked + .one__filters-label {
  background-color: var(--portalThemeColor1);
  color: var(--portalThemeOnColor1);
  border-color: var(--portalThemeColor1);
}

[data-theme="gerdau-one"]
  .one__filters-radio:checked
  + .one__filters-label::after {
  font-family: arial;
  content: "L";
  transform: scaleX(-1) rotate(-35deg);
  margin-left: 8px;
  font-size: 80%;
}

[data-theme="gerdau-one"] .one__filters-label {
  --icon-size: 16px;

  display: inline-flex;
  height: 32px;
  padding: 5px 8px;
  align-items: center;
  flex-shrink: 0;
  border: 1px solid var(--portalThemeColor4);
  color: var(--portalThemeColor4);
  border-radius: 16px;
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: all 0.3s ease-in-out;
}

[data-theme="gerdau-one"] .one__filters-label:hover {
  background-color: var(--portalThemeColor12);
  cursor: pointer;
}

[data-theme="gerdau-one"] .one__filters-label__icon {
  width: var(--icon-size);
  height: var(--icon-size);
  margin-right: 8px;
}