*,
*::before,
*::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 0.5em;
}

h1 { font-size: 23px; }
h2 { font-size: 20px; }
h3 { font-size: 18px; }
h4 { font-size: 17px; }

p { margin: 0 0 1.2em; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover { color: var(--accent); }

#top-bar-wrap {
  background: #fff;
}

#top-bar {
  padding: 16px 0;
  overflow: hidden;
}

.top-bar-content {
  float: right;
  font-size: 12px;
  line-height: 1.8;
  text-align: left;
  white-space: nowrap;
}

.top-bar-content p {
  margin: 0;
}

.top-bar-content img {
  vertical-align: middle;
  margin-right: 4px;
}

.top-bar-content .icon-phone {
  margin-left: 17px;
  margin-right: 12px;
  vertical-align: middle;
}

#site-header {
  background: #fff;
  position: relative;
  z-index: 100;
}

#mysticky-nav.wrapfixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99990;
  background-color: #db4034;
  opacity: 0.87;
  transition: 0.3s;
}

#site-header-inner {
  display: flex;
  align-items: center;
  padding: 0 0 10px;
}

.logo {
  display: flex;
  align-items: center;
  min-height: 70px;
  flex: 0 0 auto;
}

.logo img {
  max-width: 229px;
  width: auto;
  height: auto;
}

#site-navigation {
  margin-left: auto;
}

.nav-desktop {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.nav-desktop a {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 70px;
  color: #333;
  padding: 0 12px;
}

.nav-desktop a:hover {
  color: var(--accent);
}

#mysticky-nav.wrapfixed .nav-desktop a,
#mysticky-nav.wrapfixed .nav-toggle {
  color: #fff;
}

.mobile-menu-icon {
  display: none;
  margin-left: auto;
}

.nav-toggle {
  background: none;
  border: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 70px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.nav-toggle .menu-close-text { display: none; }
.nav-toggle[aria-expanded="true"] .menu-open-text { display: none; }
.nav-toggle[aria-expanded="true"] .menu-close-text { display: inline; }

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(320px, 86vw);
  height: 100%;
  background: #1c1c1c;
  z-index: 100000;
  padding: 24px 20px;
  overflow: auto;
  color: #fff;
}

.mobile-drawer[hidden],
.drawer-backdrop[hidden] { display: none; }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 99999;
}

.drawer-close {
  background: none;
  border: 0;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 24px;
  padding: 0;
}

.mobile-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-drawer a {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.8;
  padding: 8px 0;
}

.mobile-drawer a:hover {
  color: #c40f0f;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #333;
  min-height: 500px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
  background: #333;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-overlay,
.hero-overlay-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  height: 500px;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.hero-copy h3 {
  color: #fff;
  font-size: 60.2px;
  line-height: 1.375em;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  margin: 0.1em 0;
  font-weight: 400;
}

.hero-copy p {
  color: #f6f6f6;
  font-size: 16px;
  margin: 1em 0;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}

.button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 20px;
  margin: 0 3px;
  border: 1px solid #fff;
  line-height: 1;
  cursor: pointer;
}

.button a {
  color: #fff;
}

.button:hover,
.button:hover a {
  background: var(--accent-hover);
  color: #fff;
}

.sec-about {
  padding: 100px 0;
}

.about-grid {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.about-copy,
.about-photo {
  flex: 1 1 0;
  min-width: 0;
}

.about-selo {
  text-align: center;
  margin: 1.2em 0 0;
}

.about-selo img {
  display: block;
  margin: 0 auto;
}

.about-photo img {
  display: block;
  border: 5px solid #ce3c31;
  max-width: 100%;
}

.sec-products {
  background: #ce3c31;
  padding: 100px 0;
  color: #fff;
}

.sec-products h1 {
  text-align: center;
  color: #fff;
  margin: 0 0 30px;
}

.products-cols {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.products-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product-card {
  background: #fff;
  color: #000;
  padding: 20px 10px;
}

.product-card.is-last {
  padding: 20px 10px 50px;
}

.product-card h3 {
  color: #000;
  text-align: center;
  margin: 0 0 30px;
}

.product-photos {
  display: grid;
  grid-template-columns: 15% 35% 35% 15%;
  align-items: start;
}

.product-card:has(.product-caimento) .product-photos {
  margin-bottom: 30px;
}

.product-photos a {
  display: block;
}

.product-photos img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
}

.product-caimento h4 {
  color: #000;
  text-align: center;
  margin: 0 0 1em;
}

.product-caimento img {
  display: block;
  margin: 0 auto;
}

.sec-quality {
  background: #f5f5f5;
  padding: 100px 0;
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
}

.sec-quality > .container > h1 {
  text-align: center;
  margin: 0 0 30px;
}

.quality-grid {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.quality-grid > div {
  flex: 1 1 0;
  min-width: 0;
}

.widget-title {
  display: block;
  line-height: 1;
  font-size: 13px;
  font-weight: 400;
  color: #333;
  border-width: 0 0 0 3px;
  border-style: solid;
  border-color: #ce3c31;
  letter-spacing: 1px;
  padding-left: 15px;
  margin: 0 0 20px;
  text-transform: capitalize;
}

.check {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 12px;
  vertical-align: -2px;
  background-color: #ce3c31;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='black' d='M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM194.9 366.4l-91.4-91.4 22.6-22.6 68.8 68.7 147.2-147.2 22.6 22.6-169.8 169.9z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='black' d='M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM194.9 366.4l-91.4-91.4 22.6-22.6 68.8 68.7 147.2-147.2 22.6 22.6-169.8 169.9z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.sec-dicas {
  background: #333 url("/assets/img/dicas.webp") center / cover no-repeat;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.sec-dicas h1,
.sec-dicas h2 {
  color: #fff;
  text-align: center;
}

.sec-dicas p {
  text-align: center;
  margin-top: 20px;
}

.sec-dicas .check {
  margin-left: 12px;
  margin-right: 0;
}

.sec-contact {
  padding: 100px 0;
}

.contact-grid {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.contact-copy,
.contact-photo {
  flex: 1 1 0;
  min-width: 0;
}

.contact-copy h1 {
  text-align: left;
}

.contact-copy p {
  text-align: left;
}

.contact-copy .icon-pin,
.contact-copy .icon-phone,
.contact-copy .icon-mail {
  margin-right: 12px;
  vertical-align: middle;
  width: 20px;
  height: 20px;
}

.contact-copy img {
  vertical-align: middle;
  margin-right: 4px;
}

.contact-map iframe {
  border: 0;
  max-width: 100%;
  width: 600px;
  height: 150px;
}

.contact-photo {
  padding-top: 20px;
}

.contact-photo img {
  display: block;
  margin: 0 auto;
}

#footer-bottom {
  background: #ce3c31;
  padding: 15px 0;
  font-size: 12px;
  line-height: 1;
  color: #fff;
}

#copyright {
  width: 100%;
  text-align: center;
}

#footer-bottom a {
  color: #fff;
}

#footer-bottom a:hover {
  color: #fff;
}

.scroll-top {
  display: none;
  opacity: 0;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  z-index: 100;
  padding: 0;
}

.scroll-top.is-visible {
  display: block;
  opacity: 1;
}

.scroll-top svg {
  display: block;
  margin: 11px auto 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100001;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.page-404 {
  padding: 80px 0 120px;
  text-align: center;
}

@media (max-width: 959px) {
  .nav-desktop { display: none; }
  .mobile-menu-icon { display: block; }
}

@media (max-width: 780px) {
  .hero-copy h3 {
    font-size: 48px;
  }

  .sec-about,
  .sec-products,
  .sec-quality,
  .sec-dicas,
  .sec-contact {
    padding: 20px;
  }

  .sec-products {
    padding: 20px 0 20px;
  }

  .sec-quality {
    padding: 20px 0;
  }

  .about-grid,
  .products-cols,
  .quality-grid,
  .contact-grid {
    flex-direction: column;
  }

  .about-copy,
  .products-col,
  .quality-grid > div,
  .contact-copy {
    margin-bottom: 30px;
  }

  .product-photos {
    grid-template-columns: 1fr 1fr;
  }

  .product-photos .ph-gap { display: none; }

  .sec-products h1,
  .sec-quality > .container > h1 {
    margin-bottom: 30px;
  }

  .sec-contact {
    background: #dfdfdf;
    padding: 20px;
  }

  .contact-photo { padding-top: 0; }

  .top-bar-content {
    float: none;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .logo img {
    max-width: 281px;
  }
}
