html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: #ffffff !important;
  font-family: 'Zalando Sans SemiExpanded', sans-serif;
  overflow-x: hidden;
  color: #313131;
}

.overflow-hidden {
  overflow: hidden;
}

img {
  border-style: none;
}

button,
[type='button'],
[type='submit'],
[type='reset'] {
  -webkit-appearance: button;
}

input {
  font-size: 1em;
}

textarea {
  overflow: auto;
  font-size: 1.1em;
}

[hidden] {
  display: none;
}

button,
textarea,
select,
input {
  outline: 0;
}

@media (min-width: 1399px) {
  .containerWidth {
    max-width: 1399px;
    padding: 0 !important;
  }
}

.containerWidth {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

:root {
  /* Header */
  --bg-top-header: #6b521b;
  --color-top-header: white;

  --bg-middle-header: black;
  --bg-search-input: #efefef;
  --bg-search-button: #004e91;
  --color-search-icon: white;

  --bg-bottom-header: #e8b540;
  --color-bottom-link: #6b521b;
  --color-bottom-link-hover: #004e91;
  --bg-bottom-submenu: white;
  --color-bottom-sublink: #313131;
  --color-bottom-sublink-hover: #004e91;

  --bg-infos-header: #e6e6e6;
  --color-infos-header: #888888;

  --bg-responsive: white;

  /* Topicos */
  --bg-topics: #004077;
  --bg-topics-card: white;
  --color-topics-icon: #e8b540;
  --color-topics-text: #004e91;
  --color-topics-description: #858585;

  /* Categorias */
  --bg-categories: white;
  --color-categories: white;
  --shadow-categories-text: 2px 2px 4px rgba(0, 0, 0, 0.5);
  --bg-categories-hover: rgba(0, 0, 0, 0.6);

  /* Destaques */
  --bg-highlights: white;
  --color-highlights-title: #004e91;
  --color-highlight-name: #004e91;
  --color-highlight-description: #858585;
  --color-old-price: rgb(204, 66, 66);
  --color-price: #313131;

  /* Blog */
  --bg-blog: white;
  --color-blog-title: #004e91;
  --color-blog-item-name: #004e91;
  --color-blog-item-description: #858585;

  /* Banners */
  --bg-banners: white;
  --color-banners-title: #004e91;

  /* Seção de localização */
  --bg-location: #efefef;
  --bg-card-map: white;
  --color-title-location: #004e91;
  --color-address-text-location: #313131;

  /* Footer */
  --bg-footer-top: #004e91;
  --bg-footer-top-text: white;
  --bg-footer-top-link: #e8b540;
  --color-footer-top-link: #6b521b;
  --bg-footer-down: black;
  --color-titles-footer: #ffffff;
  --color-texts-footer: #ffffff;
  --color-socials-footer: #ffffff;
  --color-hover-links-footer: #ffffff;
  --color-text-copyright: #ffffff;

  /* Gerais */
  --color-whatsapp: rgb(30, 145, 30);
  --border-primary: #d9e0eb;
  --shadow-default: 0px 6px 15px 0px #79797961;
  --bg-overlay: rgba(0, 0, 0, 0.45);
}

.notFounded {
  padding: 64px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.notFounded strong {
  color: var(--color-primary);
  font-size: 20px;
}

.flex-row {
  display: flex;
  align-items: center;
}