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

html, body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; height: auto; }

/* ===== Estrutura compartilhada dos headers de página =====
   Ao criar um novo header (ex.: .produtos-header-5), adicione-o a cada
   lista de seletores abaixo. Específico da página (background, aspect-ratio)
   fica no CSS da respectiva página. */
.site-header-1,
.blog-header-1,
.blog-conteudo-header-1,
.contato-header-1,
.quem-somos-header-4,
.produtos-header-3 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
}

.site-header-1__logo-link,
.blog-header-1__logo-link,
.blog-conteudo-header-1__logo-link,
.contato-header-1__logo-link,
.quem-somos-header-4__logo-link,
.produtos-header-3__logo-link {
  position: absolute;
  left: 198px;
  top: 50px;
  width: 220px;
  display: inline-block;
}

.site-header-1__logo,
.blog-header-1__logo,
.blog-conteudo-header-1__logo,
.contato-header-1__logo,
.quem-somos-header-4__logo,
.produtos-header-3__logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.site-header-1__nav,
.blog-header-1__nav,
.blog-conteudo-header-1__nav,
.contato-header-1__nav,
.quem-somos-header-4__nav,
.produtos-header-3__nav {
  position: absolute;
  top: 117px;
  left: 50%;
  transform: translateX(-100px);
  display: flex;
  gap: 32px;
  align-items: center;
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}

.site-header-1__nav a,
.blog-header-1__nav a,
.blog-conteudo-header-1__nav a,
.contato-header-1__nav a,
.quem-somos-header-4__nav a,
.produtos-header-3__nav a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.site-header-1__nav a:hover,
.blog-header-1__nav a:hover,
.blog-conteudo-header-1__nav a:hover,
.contato-header-1__nav a:hover,
.quem-somos-header-4__nav a:hover,
.produtos-header-3__nav a:hover { opacity: 0.75; }

.site-header-1__nav a.is-active,
.blog-header-1__nav a.is-active,
.blog-conteudo-header-1__nav a.is-active,
.contato-header-1__nav a.is-active,
.quem-somos-header-4__nav a.is-active,
.produtos-header-3__nav a.is-active {
  position: relative;
}

.site-header-1__nav a.is-active::after,
.blog-header-1__nav a.is-active::after,
.blog-conteudo-header-1__nav a.is-active::after,
.contato-header-1__nav a.is-active::after,
.quem-somos-header-4__nav a.is-active::after,
.produtos-header-3__nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 0.25em;
  height: 0.5em;
  background-image: url('../images/icons/underline.svg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  pointer-events: none;
}

.site-header-1__cta,
.blog-header-1__cta,
.blog-conteudo-header-1__cta,
.contato-header-1__cta,
.quem-somos-header-4__cta,
.produtos-header-3__cta {
  position: absolute;
  top: 105px;
  left: 50%;
  transform: translateX(340px);
  min-width: 140px;
  padding: 10px 22px;
  background: #613b21;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e0bd8e;
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header-1__cta:hover,
.blog-header-1__cta:hover,
.blog-conteudo-header-1__cta:hover,
.contato-header-1__cta:hover,
.quem-somos-header-4__cta:hover,
.produtos-header-3__cta:hover {
  background: #7a4a2a;
  color: #ffffff;
  transform: translateX(340px) translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.site-header-1__cta:active,
.blog-header-1__cta:active,
.blog-conteudo-header-1__cta:active,
.contato-header-1__cta:active,
.quem-somos-header-4__cta:active,
.produtos-header-3__cta:active {
  transform: translateX(340px) translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.site-header-1__burger,
.blog-header-1__burger,
.blog-conteudo-header-1__burger,
.contato-header-1__burger,
.quem-somos-header-4__burger,
.produtos-header-3__burger {
  display: none;
  position: absolute;
  top: 24px;
  right: 20px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 30;
}

body.is-menu-open .site-header-1__burger,
body.is-menu-open .blog-header-1__burger,
body.is-menu-open .blog-conteudo-header-1__burger,
body.is-menu-open .contato-header-1__burger,
body.is-menu-open .quem-somos-header-4__burger,
body.is-menu-open .produtos-header-3__burger { visibility: hidden; }

.site-header-1__burger span,
.blog-header-1__burger span,
.blog-conteudo-header-1__burger span,
.contato-header-1__burger span,
.quem-somos-header-4__burger span,
.produtos-header-3__burger span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

.site-header-1__burger[aria-expanded="true"] span:nth-child(1),
.blog-header-1__burger[aria-expanded="true"] span:nth-child(1),
.blog-conteudo-header-1__burger[aria-expanded="true"] span:nth-child(1),
.contato-header-1__burger[aria-expanded="true"] span:nth-child(1),
.quem-somos-header-4__burger[aria-expanded="true"] span:nth-child(1),
.produtos-header-3__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header-1__burger[aria-expanded="true"] span:nth-child(2),
.blog-header-1__burger[aria-expanded="true"] span:nth-child(2),
.blog-conteudo-header-1__burger[aria-expanded="true"] span:nth-child(2),
.contato-header-1__burger[aria-expanded="true"] span:nth-child(2),
.quem-somos-header-4__burger[aria-expanded="true"] span:nth-child(2),
.produtos-header-3__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header-1__burger[aria-expanded="true"] span:nth-child(3),
.blog-header-1__burger[aria-expanded="true"] span:nth-child(3),
.blog-conteudo-header-1__burger[aria-expanded="true"] span:nth-child(3),
.contato-header-1__burger[aria-expanded="true"] span:nth-child(3),
.quem-somos-header-4__burger[aria-expanded="true"] span:nth-child(3),
.produtos-header-3__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Específico da home ===== */
.site-header-1,
.blog-conteudo-header-1,
.contato-header-1 {
  background-image: url('../images/hero/header-1.png');
  background-image: image-set(
    url('../images/hero/header-1-desktop.webp') type('image/webp'),
    url('../images/hero/header-1.png') type('image/png')
  );
  aspect-ratio: 5760 / 2816;
}
@media (max-width: 900px) {
  .site-header-1,
  .blog-conteudo-header-1,
  .contato-header-1 {
    background-image: url('../images/hero/header-1-mobile.webp');
    background-image: image-set(
      url('../images/hero/header-1-mobile.webp') type('image/webp')
    );
  }
}

.site-header-1__hero,
.blog-header-1__hero,
.blog-conteudo-header-1__hero,
.contato-header-1__hero,
.quem-somos-header-4__hero,
.produtos-header-3__hero {
  position: absolute;
  left: 13.75%;
  top: 40.15%;
  width: 45.42%;
}

.quem-somos-header-4__hero { top: 28%; }

.site-header-1__title,
.blog-header-1__title,
.blog-conteudo-header-1__title,
.contato-header-1__title,
.quem-somos-header-4__title,
.produtos-header-3__title {
  margin: 0;
  color: #ffffff;
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3.82vw, 55px);
  line-height: 95%;
  font-weight: 400;
}

.site-header-1__title-regular,
.blog-header-1__title-regular,
.blog-conteudo-header-1__title-regular,
.contato-header-1__title-regular,
.quem-somos-header-4__title-regular,
.produtos-header-3__title-regular { font-weight: 400; display: block; }
.site-header-1__title-bold,
.blog-header-1__title-bold,
.blog-conteudo-header-1__title-bold,
.contato-header-1__title-bold,
.quem-somos-header-4__title-bold,
.produtos-header-3__title-bold { font-weight: 700; display: block; }

.site-header-1__pill,
.blog-header-1__pill,
.blog-conteudo-header-1__pill,
.contato-header-1__pill,
.produtos-header-3__pill {
  margin-top: clamp(16px, 2.6vw, 38px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-family: "Fraunces", serif;
  font-size: clamp(12px, 1.11vw, 16px);
  line-height: 155%;
  font-weight: 500;
  color: #8c4415;
}

.site-header-1__pill-line,
.blog-header-1__pill-line,
.blog-conteudo-header-1__pill-line,
.contato-header-1__pill-line,
.produtos-header-3__pill-line {
  background: #e0bd8e;
  border-radius: 8px;
  padding: 4px 16px;
  display: inline-block;
}

.site-mobile-menu[hidden],
.blog-mobile-menu[hidden],
.blog-conteudo-mobile-menu[hidden],
.contato-mobile-menu[hidden],
.quem-somos-mobile-menu[hidden],
.produtos-mobile-menu[hidden] { display: none !important; }

.site-mobile-menu,
.blog-mobile-menu,
.blog-conteudo-mobile-menu,
.contato-mobile-menu,
.quem-somos-mobile-menu,
.produtos-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 25;
  background: #2c160a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
  box-sizing: border-box;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.site-mobile-menu__close,
.blog-mobile-menu__close,
.blog-conteudo-mobile-menu__close,
.contato-mobile-menu__close,
.quem-somos-mobile-menu__close,
.produtos-mobile-menu__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 0;
  color: #ffffff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  z-index: 50;
}

.site-mobile-menu__nav,
.blog-mobile-menu__nav,
.blog-conteudo-mobile-menu__nav,
.contato-mobile-menu__nav,
.quem-somos-mobile-menu__nav,
.produtos-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 400;
}

.site-mobile-menu__nav a,
.blog-mobile-menu__nav a,
.blog-conteudo-mobile-menu__nav a,
.contato-mobile-menu__nav a,
.quem-somos-mobile-menu__nav a,
.produtos-mobile-menu__nav a {
  color: #ffffff;
  text-decoration: none;
}

.site-mobile-menu__cta,
.blog-mobile-menu__cta,
.blog-conteudo-mobile-menu__cta,
.contato-mobile-menu__cta,
.quem-somos-mobile-menu__cta,
.produtos-mobile-menu__cta {
  margin-top: 12px;
  background: #613b21;
  color: #e0bd8e !important;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 10px;
}

body.is-menu-open { overflow: hidden; }

@media (max-width: 900px) {
  .site-header-1__logo-link,
  .blog-header-1__logo-link,
  .blog-conteudo-header-1__logo-link,
  .contato-header-1__logo-link,
  .quem-somos-header-4__logo-link,
  .produtos-header-3__logo-link {
    left: 20px;
    top: 22px;
    width: 140px;
    transform: none;
  }
  .site-header-1__nav,
  .blog-header-1__nav,
  .blog-conteudo-header-1__nav,
  .contato-header-1__nav,
  .quem-somos-header-4__nav,
  .produtos-header-3__nav,
  .site-header-1__cta,
  .blog-header-1__cta,
  .blog-conteudo-header-1__cta,
  .contato-header-1__cta,
  .quem-somos-header-4__cta,
  .produtos-header-3__cta { display: none; }
  .site-header-1__burger,
  .blog-header-1__burger,
  .blog-conteudo-header-1__burger,
  .contato-header-1__burger,
  .quem-somos-header-4__burger,
  .produtos-header-3__burger { display: block; }

  .site-header-1,
  .blog-header-1,
  .blog-conteudo-header-1,
  .contato-header-1 {
    aspect-ratio: auto;
    min-height: 520px;
    padding: 0 20px 48px;
  }
  .site-header-1__hero,
  .blog-header-1__hero,
  .blog-conteudo-header-1__hero,
  .contato-header-1__hero,
  .quem-somos-header-4__hero,
  .produtos-header-3__hero {
    position: static;
    width: 100%;
    padding: 110px 0 0;
  }
  .site-header-1__title,
  .blog-header-1__title,
  .blog-conteudo-header-1__title,
  .contato-header-1__title,
  .quem-somos-header-4__title,
  .produtos-header-3__title { font-size: clamp(30px, 6.5vw, 44px); }
  .site-header-1__pill,
  .blog-header-1__pill,
  .blog-conteudo-header-1__pill,
  .contato-header-1__pill,
  .produtos-header-3__pill { margin-top: 24px; }
  .site-header-1__pill-line,
  .blog-header-1__pill-line,
  .blog-conteudo-header-1__pill-line,
  .contato-header-1__pill-line,
  .produtos-header-3__pill-line { font-size: 13px; }
}

@media (max-width: 560px) {
  .site-header-1__title,
  .blog-header-1__title,
  .blog-conteudo-header-1__title,
  .contato-header-1__title,
  .quem-somos-header-4__title,
  .produtos-header-3__title { font-size: 28px; }
  .site-header-1__pill-line,
  .blog-header-1__pill-line,
  .blog-conteudo-header-1__pill-line,
  .contato-header-1__pill-line,
  .produtos-header-3__pill-line {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 12px;
  }
}

/* ===== Estrutura compartilhada dos footers de página =====
   Ao criar um novo footer (ex.: .produtos-footer-5), adicione-o a cada
   lista de seletores abaixo. Específico da página (background, aspect-ratio)
   fica no CSS da respectiva página. */
.site-footer-1,
.blog-footer-1,
.blog-conteudo-footer-1,
.contato-footer-1,
.quem-somos-footer-4,
.produtos-footer-2 {
  width: 100%;
  color: #ffffff;
  font-family: "Fraunces", serif;
  background-size: 100% 100%;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}

.site-footer-1__inner,
.blog-footer-1__inner,
.blog-conteudo-footer-1__inner,
.contato-footer-1__inner,
.quem-somos-footer-4__inner,
.produtos-footer-2__inner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 170px;
  width: 100%;
  max-width: 1280px;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1.2fr;
  gap: clamp(24px, 3vw, 56px);
  align-items: start;
  box-sizing: border-box;
}

.site-footer-1__col,
.blog-footer-1__col,
.blog-conteudo-footer-1__col,
.contato-footer-1__col,
.quem-somos-footer-4__col,
.produtos-footer-2__col { display: flex; flex-direction: column; }

.site-footer-1__logo-link,
.blog-footer-1__logo-link,
.blog-conteudo-footer-1__logo-link,
.contato-footer-1__logo-link,
.quem-somos-footer-4__logo-link,
.produtos-footer-2__logo-link {
  display: inline-block;
  margin-bottom: 24px;
  line-height: 0;
}

.site-footer-1__logo,
.blog-footer-1__logo,
.blog-conteudo-footer-1__logo,
.contato-footer-1__logo,
.quem-somos-footer-4__logo,
.produtos-footer-2__logo {
  width: clamp(160px, 15vw, 220px);
  height: auto;
  display: block;
}

.site-footer-1__about,
.blog-footer-1__about,
.blog-conteudo-footer-1__about,
.contato-footer-1__about,
.quem-somos-footer-4__about,
.produtos-footer-2__about {
  margin: 0;
  color: #ffffff;
  font-weight: 400;
  font-size: 15px;
  line-height: 145%;
  max-width: 38ch;
}

.site-footer-1__nav,
.blog-footer-1__nav,
.blog-conteudo-footer-1__nav,
.contato-footer-1__nav,
.quem-somos-footer-4__nav,
.produtos-footer-2__nav { gap: 18px; }

.site-footer-1__nav a,
.blog-footer-1__nav a,
.blog-conteudo-footer-1__nav a,
.contato-footer-1__nav a,
.site-footer-1__nav a:visited,
.blog-footer-1__nav a:visited,
.blog-conteudo-footer-1__nav a:visited,
.contato-footer-1__nav a:visited,
.quem-somos-footer-4__nav a,
.quem-somos-footer-4__nav a:visited,
.produtos-footer-2__nav a,
.produtos-footer-2__nav a:visited {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  transition: opacity 0.2s;
}

.site-footer-1__nav a:hover,
.blog-footer-1__nav a:hover,
.blog-conteudo-footer-1__nav a:hover,
.contato-footer-1__nav a:hover,
.quem-somos-footer-4__nav a:hover,
.produtos-footer-2__nav a:hover { opacity: 0.8; }

.site-footer-1__contact-cta,
.blog-footer-1__contact-cta,
.blog-conteudo-footer-1__contact-cta,
.contato-footer-1__contact-cta,
.quem-somos-footer-4__contact-cta,
.produtos-footer-2__contact-cta {
  align-self: flex-start;
  margin-top: 12px;
  background: #cf8c58;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 22px;
  border-radius: 14px;
}

.site-footer-1__contact-cta:hover,
.blog-footer-1__contact-cta:hover,
.blog-conteudo-footer-1__contact-cta:hover,
.contato-footer-1__contact-cta:hover,
.quem-somos-footer-4__contact-cta:hover,
.produtos-footer-2__contact-cta:hover { opacity: 0.9; }

.site-footer-1__social-title,
.blog-footer-1__social-title,
.blog-conteudo-footer-1__social-title,
.contato-footer-1__social-title,
.quem-somos-footer-4__social-title,
.produtos-footer-2__social-title {
  margin: 0 0 20px;
  color: #ffffff;
  font-weight: 400;
  font-size: clamp(22px, 1.94vw, 28px);
  line-height: 109%;
}

.site-footer-1__social-title strong,
.blog-footer-1__social-title strong,
.blog-conteudo-footer-1__social-title strong,
.contato-footer-1__social-title strong,
.quem-somos-footer-4__social-title strong,
.produtos-footer-2__social-title strong { font-weight: 700; }

.site-footer-1__social,
.blog-footer-1__social,
.blog-conteudo-footer-1__social,
.contato-footer-1__social,
.quem-somos-footer-4__social,
.produtos-footer-2__social { display: flex; gap: 18px; }

.site-footer-1__social a,
.blog-footer-1__social a,
.blog-conteudo-footer-1__social a,
.contato-footer-1__social a,
.quem-somos-footer-4__social a,
.produtos-footer-2__social a { display: inline-flex; transition: opacity 0.2s; }

.site-footer-1__social a:hover,
.blog-footer-1__social a:hover,
.blog-conteudo-footer-1__social a:hover,
.contato-footer-1__social a:hover,
.quem-somos-footer-4__social a:hover,
.produtos-footer-2__social a:hover { opacity: 0.8; }

.site-footer-1__social img,
.blog-footer-1__social img,
.blog-conteudo-footer-1__social img,
.contato-footer-1__social img,
.quem-somos-footer-4__social img,
.produtos-footer-2__social img { width: 26px; height: 26px; }

.site-footer-1__contact,
.blog-footer-1__contact,
.blog-conteudo-footer-1__contact,
.contato-footer-1__contact,
.quem-somos-footer-4__contact,
.produtos-footer-2__contact {
  font-style: normal;
  gap: 8px;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}

.site-footer-1__contact p,
.blog-footer-1__contact p,
.blog-conteudo-footer-1__contact p,
.contato-footer-1__contact p,
.quem-somos-footer-4__contact p,
.produtos-footer-2__contact p { margin: 0; }

.site-footer-1__contact a,
.blog-footer-1__contact a,
.blog-conteudo-footer-1__contact a,
.contato-footer-1__contact a,
.quem-somos-footer-4__contact a,
.produtos-footer-2__contact a {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer-1__bottom,
.blog-footer-1__bottom,
.blog-conteudo-footer-1__bottom,
.contato-footer-1__bottom,
.quem-somos-footer-4__bottom,
.produtos-footer-2__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  padding: 20px clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #613b21;
  font-family: "Fraunces", serif;
  font-size: 14px;
}

.site-footer-1__copy,
.blog-footer-1__copy,
.blog-conteudo-footer-1__copy,
.contato-footer-1__copy,
.quem-somos-footer-4__copy,
.produtos-footer-2__copy { margin: 0; }

.site-footer-1__dev,
.blog-footer-1__dev,
.blog-conteudo-footer-1__dev,
.contato-footer-1__dev,
.quem-somos-footer-4__dev,
.produtos-footer-2__dev {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9e9e9e;
}

.site-footer-1__dev img,
.blog-footer-1__dev img,
.blog-conteudo-footer-1__dev img,
.contato-footer-1__dev img,
.quem-somos-footer-4__dev img,
.produtos-footer-2__dev img { height: 22px; width: auto; }

/* ===== Específico da home ===== */
.site-footer-1,
.blog-footer-1,
.blog-conteudo-footer-1 {
  background-image: url('../images/footer/footer-1.png');
  background-image: image-set(
    url('../images/footer/footer-1-desktop.webp') type('image/webp'),
    url('../images/footer/footer-1.png') type('image/png')
  );
  aspect-ratio: 5760 / 2074;
}
@media (max-width: 900px) {
  .site-footer-1,
  .blog-footer-1,
  .blog-conteudo-footer-1 {
    background-image: url('../images/footer/footer-1-mobile.webp');
    background-image: image-set(
      url('../images/footer/footer-1-mobile.webp') type('image/webp')
    );
  }
}

@media (max-width: 900px) {
  .site-footer-1,
  .blog-footer-1,
  .blog-conteudo-footer-1,
  .contato-footer-1,
  .quem-somos-footer-4,
  .produtos-footer-2 { aspect-ratio: auto; padding-top: 22vw; }
  .site-footer-1__inner,
  .blog-footer-1__inner,
  .blog-conteudo-footer-1__inner,
  .contato-footer-1__inner,
  .quem-somos-footer-4__inner,
  .produtos-footer-2__inner {
    position: static;
    transform: none;
    grid-template-columns: 1fr 1fr;
    padding: 24px 20px 40px;
    gap: 40px 32px;
  }
  .site-footer-1__bottom,
  .blog-footer-1__bottom,
  .blog-conteudo-footer-1__bottom,
  .contato-footer-1__bottom,
  .quem-somos-footer-4__bottom,
  .produtos-footer-2__bottom { padding-bottom: 32px; }
  .site-footer-1__col--brand,
  .blog-footer-1__col--brand,
  .blog-conteudo-footer-1__col--brand,
  .contato-footer-1__col--brand,
  .quem-somos-footer-4__col--brand,
  .produtos-footer-2__col--brand { grid-column: 1 / -1; }
  .site-footer-1__about,
  .blog-footer-1__about,
  .blog-conteudo-footer-1__about,
  .contato-footer-1__about,
  .quem-somos-footer-4__about,
  .produtos-footer-2__about { font-size: 16px; line-height: 140%; }
  .site-footer-1__nav,
  .blog-footer-1__nav,
  .blog-conteudo-footer-1__nav,
  .contato-footer-1__nav,
  .quem-somos-footer-4__nav,
  .produtos-footer-2__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
  }
  .site-footer-1__nav a,
  .blog-footer-1__nav a,
  .blog-conteudo-footer-1__nav a,
  .contato-footer-1__nav a,
  .site-footer-1__nav a:visited,
  .blog-footer-1__nav a:visited,
  .blog-conteudo-footer-1__nav a:visited,
  .contato-footer-1__nav a:visited,
  .quem-somos-footer-4__nav a,
  .quem-somos-footer-4__nav a:visited,
  .produtos-footer-2__nav a,
  .produtos-footer-2__nav a:visited { font-size: 17px; }
  .site-footer-1__contact-cta,
  .blog-footer-1__contact-cta,
  .blog-conteudo-footer-1__contact-cta,
  .contato-footer-1__contact-cta,
  .quem-somos-footer-4__contact-cta,
  .produtos-footer-2__contact-cta {
    align-self: auto;
    margin-top: 0;
    font-size: 14px !important;
    padding: 10px 20px;
  }
  .site-footer-1__col--social,
  .blog-footer-1__col--social,
  .blog-conteudo-footer-1__col--social,
  .contato-footer-1__col--social,
  .quem-somos-footer-4__col--social,
  .produtos-footer-2__col--social {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
  }
  .site-footer-1__social-title,
  .blog-footer-1__social-title,
  .blog-conteudo-footer-1__social-title,
  .contato-footer-1__social-title,
  .quem-somos-footer-4__social-title,
  .produtos-footer-2__social-title {
    margin: 0;
    font-size: 17px;
    line-height: 120%;
  }
  .site-footer-1__social-title br,
  .blog-footer-1__social-title br,
  .blog-conteudo-footer-1__social-title br,
  .contato-footer-1__social-title br,
  .quem-somos-footer-4__social-title br,
  .produtos-footer-2__social-title br { display: none; }
  .site-footer-1__social-title strong::before,
  .blog-footer-1__social-title strong::before,
  .blog-conteudo-footer-1__social-title strong::before,
  .contato-footer-1__social-title strong::before,
  .quem-somos-footer-4__social-title strong::before,
  .produtos-footer-2__social-title strong::before { content: " "; }
  .site-footer-1__social,
  .blog-footer-1__social,
  .blog-conteudo-footer-1__social,
  .contato-footer-1__social,
  .quem-somos-footer-4__social,
  .produtos-footer-2__social { gap: 12px; }
  .site-footer-1__social img,
  .blog-footer-1__social img,
  .blog-conteudo-footer-1__social img,
  .contato-footer-1__social img,
  .quem-somos-footer-4__social img,
  .produtos-footer-2__social img { width: 22px; height: 22px; }
  .site-footer-1__contact,
  .blog-footer-1__contact,
  .blog-conteudo-footer-1__contact,
  .contato-footer-1__contact,
  .quem-somos-footer-4__contact,
  .produtos-footer-2__contact { font-size: 15px; line-height: 150%; }
  .site-footer-1__logo,
  .blog-footer-1__logo,
  .blog-conteudo-footer-1__logo,
  .contato-footer-1__logo,
  .quem-somos-footer-4__logo,
  .produtos-footer-2__logo { width: 140px; margin-bottom: 16px; }
  .site-footer-1__bottom,
  .blog-footer-1__bottom,
  .blog-conteudo-footer-1__bottom,
  .contato-footer-1__bottom,
  .quem-somos-footer-4__bottom,
  .produtos-footer-2__bottom {
    position: static;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    font-size: 13px;
  }
  .site-footer-1__dev img,
  .blog-footer-1__dev img,
  .blog-conteudo-footer-1__dev img,
  .contato-footer-1__dev img,
  .quem-somos-footer-4__dev img,
  .produtos-footer-2__dev img { height: 18px; }
}

@media (max-width: 560px) {
  .site-footer-1,
  .blog-footer-1,
  .blog-conteudo-footer-1,
  .contato-footer-1,
  .quem-somos-footer-4,
  .produtos-footer-2 { padding-top: 20vw; }
  .site-footer-1__inner,
  .blog-footer-1__inner,
  .blog-conteudo-footer-1__inner,
  .contato-footer-1__inner,
  .quem-somos-footer-4__inner,
  .produtos-footer-2__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
