@import url(https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Poppins:wght@400;600;700&display=swap);
@charset "UTF-8";
:root {
  --color-primary: #F7E501;
  --color-primary-dark: #E5BD00;
  --color-primary-light: #FFF0A0;
  --color-dark: #000000;
  --color-dark-blue: #162456;
  --color-teal: #10404B;
  --color-teal-mid: #599AA8;
  --color-green: #70AA7D;
  --color-green-whatsapp: #2FB54D;
  --color-red: #D32020;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-text: #171717;
  --color-text-muted: #7B7B7B;
  --color-gray-light: #F0EEEE;
  --color-gray-border: #B4B4B4;
  --font-primary: Poppins, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-secondary: Kanit, sans-serif;
  --font-display: Luckiest Guy, cursive;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #171717;
  background-color: #FFFFFF;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin: 0;
}
body main {
  overflow-x: clip;
}

img, video {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s all;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

input, select, textarea {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  line-height: 1.1;
  color: #171717;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.9375rem;
}

p {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #171717;
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}

small,
.text-small {
  font-size: 0.8125rem;
  line-height: 1.4;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

.link {
  color: #10404B;
  text-decoration: underline;
  transition: 0.3s all;
}
.link:hover {
  color: #599AA8;
}

.section-title {
  font-family: "Luckiest Guy", cursive;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: #171717;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background-color: #F7E501;
  border-radius: 50px;
}
.section-title.center {
  display: block;
  text-align: center;
}
.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}
.section-title.light {
  color: #FFFFFF;
}

.section-subtitle {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #7B7B7B;
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 30px;
}
.section-subtitle.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-subtitle.light {
  color: rgba(255, 255, 255, 0.75);
}

.btn-ds {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 24px;
  border-radius: 10px;
  border: 2px solid transparent;
  font-family: "Luckiest Guy", cursive;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.3s all;
  text-decoration: none;
  outline: none;
  width: auto;
}
.btn-ds.sm {
  padding: 7px 16px;
  font-size: 0.9375rem;
}
.btn-ds.lg {
  padding: 14px 32px;
  font-size: 1.125rem;
}
.btn-ds.full {
  width: 100%;
  max-width: 100%;
}
.btn-ds.pill {
  border-radius: 50px;
}
.btn-ds.primary {
  background-color: #F7E501;
  color: #000000;
  border-color: #F7E501;
}
.btn-ds.primary:hover {
  background-color: #E5BD00;
  border-color: #E5BD00;
  color: #000000;
  transform: translateY(-1px);
}
.btn-ds.dark {
  background-color: #000000;
  color: #F7E501;
  border-color: #000000;
}
.btn-ds.dark:hover {
  background-color: #162456;
  border-color: #162456;
  color: #F7E501;
  transform: translateY(-1px);
}
.btn-ds.teal {
  background-color: #10404B;
  color: #FFFFFF;
  border-color: #10404B;
}
.btn-ds.teal:hover {
  background-color: #0B5362;
  border-color: #0B5362;
  transform: translateY(-1px);
}
.btn-ds.outline-primary {
  background-color: transparent;
  color: #000000;
  border-color: #F7E501;
}
.btn-ds.outline-primary:hover {
  background-color: #F7E501;
  color: #000000;
}
.btn-ds.outline-dark {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}
.btn-ds.outline-dark:hover {
  background-color: #000000;
  color: #FFFFFF;
}
.btn-ds.outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.btn-ds.outline-white:hover {
  background-color: #FFFFFF;
  color: #000000;
}
.btn-ds.whatsapp {
  background: linear-gradient(90deg, #01CE5F 20%, #00B55C 90%);
  color: #FFFFFF;
  border-color: transparent;
}
.btn-ds.whatsapp:hover {
  background: #1F8035;
  transform: translateY(-1px);
}
.btn-ds:disabled, .btn-ds.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 15px;
}
.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  font-family: "Kanit", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #171717;
}

.form-control {
  width: 100%;
  background: #F0EEEE;
  border: 1px solid #B4B4B4;
  border-radius: 10px;
  padding: 10px 16px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  color: #171717;
  outline: none;
  transition: 0.3s all;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-control::-moz-placeholder {
  color: #B4B4B4;
}
.form-control::placeholder {
  color: #B4B4B4;
}
.form-control:focus {
  border-color: #F7E501;
  box-shadow: 0 0 0 3px rgba(247, 229, 1, 0.2);
  background: #FFFFFF;
}
.form-control.invalid, .form-control.ng-invalid.ng-touched {
  border-color: #D32020;
  box-shadow: 0 0 0 3px rgba(211, 32, 32, 0.15);
}
.form-control[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.container {
  max-width: 1300px;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}
.container.small {
  max-width: 1035px;
}
.container.big {
  max-width: 1600px;
}

.section-pad {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .section-pad {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.section-pad.lg {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .section-pad.lg {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.bg-primary {
  background-color: #F7E501;
}

.bg-dark {
  background-color: #000000;
}

.bg-teal {
  background-color: #10404B;
}

.bg-light {
  background-color: #F0EEEE;
}

.bg-white {
  background-color: #FFFFFF;
}

@media (max-width: 991px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .hide-desktop {
    display: none !important;
  }
}

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

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-upper {
  text-transform: uppercase;
}

.text-lower {
  text-transform: lowercase;
}

.text-primary {
  color: #F7E501 !important;
}

.text-dark {
  color: #000000 !important;
}

.text-teal {
  color: #10404B !important;
}

.text-muted {
  color: #7B7B7B !important;
}

.text-white {
  color: #FFFFFF !important;
}

.text-red {
  color: #D32020 !important;
}

.fw-regular {
  font-weight: 400 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.font-display {
  font-family: "Luckiest Guy", cursive !important;
}

.font-primary {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif !important;
}

.font-secondary {
  font-family: "Kanit", sans-serif !important;
}

.mt-xs {
  margin-top: 5px;
}

.mt-sm {
  margin-top: 10px;
}

.mt-md {
  margin-top: 15px;
}

.mt-lg {
  margin-top: 20px;
}

.mt-xl {
  margin-top: 30px;
}

.mt-2xl {
  margin-top: 40px;
}

.mt-3xl {
  margin-top: 50px;
}

.mb-xs {
  margin-bottom: 5px;
}

.mb-sm {
  margin-bottom: 10px;
}

.mb-md {
  margin-bottom: 15px;
}

.mb-lg {
  margin-bottom: 20px;
}

.mb-xl {
  margin-bottom: 30px;
}

.mb-2xl {
  margin-bottom: 40px;
}

.mb-3xl {
  margin-bottom: 50px;
}

.pt-xs {
  padding-top: 5px;
}

.pt-sm {
  padding-top: 10px;
}

.pt-md {
  padding-top: 15px;
}

.pt-lg {
  padding-top: 20px;
}

.pt-xl {
  padding-top: 30px;
}

.pt-2xl {
  padding-top: 40px;
}

.pt-3xl {
  padding-top: 50px;
}

.pb-xs {
  padding-bottom: 5px;
}

.pb-sm {
  padding-bottom: 10px;
}

.pb-md {
  padding-bottom: 15px;
}

.pb-lg {
  padding-bottom: 20px;
}

.pb-xl {
  padding-bottom: 30px;
}

.pb-2xl {
  padding-bottom: 40px;
}

.pb-3xl {
  padding-bottom: 50px;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-col {
  flex-direction: column;
}

.gap-xs {
  gap: 5px;
}

.gap-sm {
  gap: 10px;
}

.gap-md {
  gap: 15px;
}

.gap-lg {
  gap: 20px;
}

.gap-xl {
  gap: 30px;
}

.badge-ds {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 50px;
  font-family: "Kanit", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.badge-ds.primary {
  background: #F7E501;
  color: #000000;
}
.badge-ds.dark {
  background: #000000;
  color: #F7E501;
}
.badge-ds.teal {
  background: #10404B;
  color: #FFFFFF;
}
.badge-ds.teal-mid {
  background: #599AA8;
  color: #FFFFFF;
}
.badge-ds.green {
  background: #70AA7D;
  color: #FFFFFF;
}
.badge-ds.red {
  background: #D32020;
  color: #FFFFFF;
}
.badge-ds.outline {
  background: transparent;
  border: 1.5px solid #F7E501;
  color: #000000;
}

.divider {
  height: 1px;
  background: #B4B4B4;
  border: none;
  margin: 30px 0;
}
.divider.primary {
  background: #F7E501;
}
.divider.dark {
  background: #000000;
}
.divider.white {
  background: rgba(255, 255, 255, 0.2);
}

.ng-invalid-required.ng-touched,
.campo-invalido,
.has-error {
  border-color: #D32020 !important;
}

.form-error {
  font-size: 0.8125rem;
  color: #D32020;
  margin-top: 4px;
}

.border-debug {
  border: 2px solid red !important;
}

.card-produto-padrao {
  position: relative;
  width: 309px;
  height: 393px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s all;
  border-radius: 30px;
  margin: auto;
  background-color: #243352;
}
.card-produto-padrao::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../image/bg-card-produto.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  transition: 0.3s all;
}
@media (min-width: 992px) {
  .card-produto-padrao:hover::before {
    opacity: 0.9;
  }
}
.card-produto-padrao .img-produto, .card-produto-padrao .title-in, .card-produto-padrao .saiba-mais-in, .card-produto-padrao .bottom-item {
  position: relative;
  z-index: 2;
}
.card-produto-padrao .img-produto {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  background: #FFF;
  overflow: hidden;
  position: relative;
  padding: 20px;
}
.card-produto-padrao .img-produto .add-card-in {
  background-color: #10404b;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 5px;
  right: 5px;
  transition: 0.3s all;
  cursor: pointer;
}
.card-produto-padrao .img-produto .add-card-in:hover {
  transform: translateY(-1px);
  background-color: #0b5362;
}
.card-produto-padrao .img-produto img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.card-produto-padrao .title-in {
  color: #243352;
  text-align: center;
  font-family: "Luckiest Guy", cursive;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.02em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: "";
}
.card-produto-padrao .saiba-mais-in {
  color: #243352;
  text-align: center;
  font-family: Kanit;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.card-produto-padrao .bottom-item {
  display: flex;
  justify-content: space-between;
}
.card-produto-padrao .bottom-item .main-cta {
  max-width: 198px;
}
.card-produto-padrao .bottom-item .action-zap {
  background-color: #2fb54d;
  border-radius: 20px;
  width: 63.59px;
  height: 44.02px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(8px, 3px);
  transition: 0.3s all;
  cursor: pointer;
}
.card-produto-padrao .bottom-item .action-zap:hover {
  background-color: #1f8035;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

* {
  background-size: cover;
  background-position: center;
}

.main-phone {
  display: flex;
  gap: 5px;
  cursor: pointer;
}
.main-phone .icon {
  width: 41px;
  height: 41px;
  background-color: #599AA8;
  border: 1px solid #007f92;
  border-radius: 50px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}
.main-phone .info {
  font-size: 16px;
  font-style: normal;
}
.main-phone .info .label {
  font-weight: 600;
  display: block;
  color: #10404B;
}
.main-phone .info .number {
  font-weight: 400;
  display: block;
  color: #10404B;
}
.main-phone.zap .icon {
  background-color: #70AA7D;
  border: 1px solid #489c5e;
}
.main-phone.blue-icon .icon {
  background-color: #307BC4;
  border: 1px solid #307BC4;
}
.main-phone.blue-icon .number {
  text-decoration: underline;
}

.main-cta {
  border-radius: 10px;
  background-color: #D32020;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  padding: 10px 15px;
  width: 100%;
  max-width: 235px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 200;
  font-family: "Luckiest Guy", cursive;
  letter-spacing: 0.03em;
  line-height: normal;
  transition: 0.5s all;
  text-align: center;
  gap: 7px;
  cursor: pointer;
}
.main-cta:hover {
  background-color: #8f1313;
  color: #fff;
}
.main-cta.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  background: linear-gradient(90deg, #01CE5F 20%, #00B55C 90%);
  font-weight: 600;
}
.main-cta.whatsapp:hover {
  background: #135f00;
}
.main-cta.carrinho {
  background-color: transparent;
  border: 1px solid #10404B;
  color: #10404B;
  font-weight: 400;
  position: relative;
}
.main-cta.carrinho svg path {
  transition: 0.3s all;
}
.main-cta.carrinho:hover {
  background-color: #10404B;
  color: white;
}
.main-cta.carrinho:hover svg path {
  stroke: white;
}
@media (max-width: 991px) {
  .main-cta.carrinho {
    width: 50px;
    min-height: 44px;
  }
  .main-cta.carrinho .txt-in {
    display: none;
  }
}
.main-cta.carrinho .qtd-carrinho {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #10404b;
  color: white;
  font-size: 13px;
  position: absolute;
  right: 11px;
  top: calc(50% - 12.5px);
}
@media (max-width: 991px) {
  .main-cta.carrinho .qtd-carrinho {
    top: -7px;
    right: -7px;
  }
}
@media (max-width: 991px) {
  .main-cta {
    font-size: 16px !important;
    padding: 10px !important;
  }
}

.carousel-tool {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 40px 0 0 0;
}
.carousel-tool .prev, .carousel-tool .next {
  cursor: pointer;
  transition: 0.3s all;
}
.carousel-tool .prev:hover, .carousel-tool .next:hover {
  transform: translateY(-3px);
}
.carousel-tool ul.carousel-tool-dots {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0;
  padding: 0;
}
.carousel-tool ul.carousel-tool-dots .custom-dots-destaque-in {
  width: 8.181px;
  height: 8.181px;
  border-radius: 8.181px;
  background-color: #d9d9d9;
  transition: 0.3s all;
  cursor: pointer;
}
.carousel-tool ul.carousel-tool-dots .custom-dots-destaque-in.active, .carousel-tool ul.carousel-tool-dots .custom-dots-destaque-in:hover {
  background-color: #171717;
}
@media (max-width: 991px) {
  .carousel-tool {
    display: none;
  }
}

.owl-carousel .owl-nav:not(.disabled) {
  position: absolute;
  bottom: 50px;
  left: 16%;
  display: flex;
  gap: 30px;
}
.owl-carousel .owl-nav:not(.disabled) .owl-prev, .owl-carousel .owl-nav:not(.disabled) .owl-next {
  transition: 0.3s all;
  outline: none;
  border: none;
}
.owl-carousel .owl-nav:not(.disabled) .owl-prev:hover, .owl-carousel .owl-nav:not(.disabled) .owl-next:hover {
  transform: translateY(-1px);
}

.owl-carousel .owl-dots:not(.disabled) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.owl-carousel .owl-dots:not(.disabled) .owl-dot {
  border-radius: 100%;
  background: #D9D9D9;
  width: 13px;
  height: 13px;
}
.owl-carousel .owl-dots:not(.disabled) .owl-dot.active {
  background: #050E2C;
}
@media (max-width: 991px) {
  .owl-carousel .owl-dots:not(.disabled) {
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .hidden-mobile {
    display: none !important;
  }
}
.produto-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #FFBB00;
  padding: 10px;
  overflow: visible;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.produto-card:hover {
  z-index: 999;
  transform: translateY(-4px);
}
.produto-card__img-wrap {
  display: block;
  width: 100%;
  height: 200px;
  overflow: visible;
  flex-shrink: 0;
}
.produto-card__img {
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: transform 0.3s ease;
}
.produto-card:hover .produto-card__img {
  transform: scale(1.3);
}
.produto-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 12px 12px 16px;
  flex: 1;
}
.produto-card__nome {
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: 1.25rem;
  color: #F7E501;
  -webkit-text-stroke: 5px #000000;
  paint-order: stroke fill;
  line-height: 1.1;
  margin: 0;
}
.produto-card__sabores {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}
.produto-card__cta {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 20px;
  background: white;
  color: #F7E501;
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: 0.9375rem;
  -webkit-text-stroke: 3px #000000;
  paint-order: stroke fill;
  letter-spacing: 0.06em;
  text-decoration: none;
  align-self: center;
  margin-top: auto;
  transition: background 0.18s, color 0.18s;
}
.produto-card__cta:hover {
  background: black;
  color: #F7E501;
}
@media (max-width: 991px) {
  .produto-card__nome {
    font-size: 0.9375rem;
  }
  .produto-card__sabores {
    font-size: 0.75rem;
  }
}

.page-banner {
  position: relative;
  height: 550px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.page-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}
.page-banner__inner {
  width: 860px;
  margin-left: 10%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  padding-top: 52px;
}
.page-banner__logo-link {
  display: inline-block;
}
.page-banner__logo {
  display: block;
  height: 120px;
  width: auto;
}
.page-banner__crumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
}
.page-banner__crumb {
  display: flex;
  align-items: center;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  gap: 4px;
}
.page-banner__crumb--active {
  color: #000000;
  font-weight: 600;
}
.page-banner__crumb-link {
  color: #000000;
  text-decoration: none;
  transition: color 0.18s;
}
.page-banner__crumb-link:hover {
  color: #000000;
}
.page-banner__crumb-sep {
  color: #000000;
}
.page-banner__title {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  color: #F7E501;
  -webkit-text-stroke: 10px #000000;
  paint-order: stroke fill;
  letter-spacing: 0.02em;
  margin: 0;
}
.page-banner__title h1, .page-banner__title h2, .page-banner__title h3, .page-banner__title p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  text-transform: inherit;
  color: inherit;
  -webkit-text-stroke: inherit;
  paint-order: inherit;
  letter-spacing: inherit;
  margin: 0;
}
@media (max-width: 991px) {
  .page-banner {
    height: 380px;
  }
  .page-banner__inner {
    padding-bottom: 36px;
    gap: 10px;
  }
  .page-banner__logo {
    height: 40px;
  }
  .page-banner__title {
    -webkit-text-stroke: 3px #000000;
  }
}

.page-banner2 {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.page-banner2__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}
.page-banner2__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding-top: 100px;
  padding-bottom: 52px;
}
.page-banner2__col-left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.page-banner2__col-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-banner2__logo-link {
  display: inline-block;
}
.page-banner2__logo {
  display: block;
  height: 120px;
  width: auto;
}
.page-banner2__crumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
}
.page-banner2__crumb {
  display: flex;
  align-items: center;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  gap: 4px;
}
.page-banner2__crumb--active {
  color: #000000;
  font-weight: 600;
}
.page-banner2__crumb-link {
  color: #000000;
  text-decoration: none;
  transition: color 0.18s;
}
.page-banner2__crumb-link:hover {
  color: #000000;
}
.page-banner2__crumb-sep {
  color: #000000;
}
.page-banner2__title {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  color: #F7E501;
  -webkit-text-stroke: 10px #000000;
  paint-order: stroke fill;
  letter-spacing: 0.02em;
  margin: 0;
}
.page-banner2__title h1, .page-banner2__title h2, .page-banner2__title h3, .page-banner2__title p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  text-transform: inherit;
  color: inherit;
  -webkit-text-stroke: inherit;
  paint-order: inherit;
  letter-spacing: inherit;
  margin: 0;
}
@media (max-width: 991px) {
  .page-banner2 {
    height: auto;
  }
  .page-banner2__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .page-banner2__col-left {
    gap: 10px;
  }
  .page-banner2__col-right {
    width: 100%;
  }
  .page-banner2__logo {
    height: 40px;
  }
  .page-banner2__title {
    -webkit-text-stroke: 3px #000000;
  }
}

.js-reveal [data-reveal] {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-reveal [data-reveal=fade-up] {
  transform: translateY(40px);
}

.js-reveal [data-reveal=fade-left] {
  transform: translateX(-40px);
}

.js-reveal [data-reveal=scale] {
  transform: scale(0.88);
}

[data-reveal].is-visible {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #000000;
  color: #FFFFFF;
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}
.cookie-bar--visible {
  transform: translateY(0);
}
.cookie-bar--hiding {
  transform: translateY(100%);
}
.cookie-bar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .cookie-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.cookie-bar__text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}
.cookie-bar__text p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.cookie-bar__text a {
  color: #F7E501;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.cookie-bar__text a:hover {
  color: #E5BD00;
}
.cookie-bar__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #F7E501;
}
.cookie-bar__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cookie-bar__actions {
    width: 100%;
  }
}
.cookie-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .cookie-bar__btn {
    flex: 1;
    padding: 9px 12px;
  }
}
.cookie-bar__btn--accept {
  background: #F7E501;
  color: #000000;
  border-color: #F7E501;
}
.cookie-bar__btn--accept:hover {
  background: #E5BD00;
  border-color: #E5BD00;
}
.cookie-bar__btn--decline {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}
.cookie-bar__btn--decline:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.canais-at {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.canais-at__grupo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.canais-at__grupo-titulo {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #162456;
  margin: 0;
}
.canais-at__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  color: #162456;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
  font-weight: 700;
}
.canais-at__item[href]:hover {
  color: #599AA8;
}
.canais-at__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #162456;
  color: #162456;
  margin-top: 2px;
}
.canais-at__icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.canais-at__info {
  display: flex;
  flex-direction: column;
  font-weight: 700;
}
.canais-at__label {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #162456;
  line-height: 1.2;
  margin-bottom: 1px;
}
.canais-at__hint {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8rem;
  color: #162456;
  margin: 0;
  padding-left: 44px;
  text-decoration: none;
}
.canais-at__hint[href]:hover {
  text-decoration: underline;
}

.floating-menu {
  position: fixed;
  top: 20px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  z-index: 1080;
  min-height: 80px;
  padding: 10px 50px;
  width: 1300px;
  min-width: 220px;
  transition: transform 0.18s ease, opacity 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fm-mobile-bar {
  display: none;
}

.fm-brand__img {
  height: 44px;
  width: auto;
}

.fm-toggler {
  display: none;
}

.floating-menu .fm-nav {
  width: 100%;
}

.floating-menu .fm-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
}

.floating-menu .fm-item a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  color: #162456;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
}

.floating-menu .fm-item a:not(.fm-cta) svg {
  position: relative;
  top: -2px;
}

.floating-menu .fm-item a:hover {
  border-top: 1px solid #F7E501;
  border-bottom: 4px solid #F7E501;
}

.floating-menu .fm-item a.fm-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Luckiest Guy", cursive;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: #FDC700;
  -webkit-text-stroke: 4px #000000;
  paint-order: stroke fill;
  font-weight: 200;
  background: #FFFFFF;
  padding: 6px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.15s;
}
.floating-menu .fm-item a.fm-cta:hover {
  background: #F7E501;
  border-color: #000000;
  color: #FFFFFF;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  transform: translateY(-2px);
}

.floating-menu .fm-item a.fm-cta .fm-cta__arrow {
  font-size: 1.1em;
  line-height: 1;
}

@media (min-width: 992px) {
  #fmNavCollapse {
    display: flex !important;
    height: auto !important;
  }
}
@media (max-width: 991px) {
  .floating-menu {
    width: calc(100% - 24px);
    max-width: none;
    top: 12px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    padding: 0;
    border-radius: 16px;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .fm-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    width: 100%;
  }
  .fm-toggler {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
  }
  .fm-toggler .fm-toggler__bar {
    display: block;
    width: 26px;
    height: 2px;
    background: #162456;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .fm-toggler[aria-expanded=true] .fm-toggler__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .fm-toggler[aria-expanded=true] .fm-toggler__bar:nth-child(2) {
    opacity: 0;
  }
  .fm-toggler[aria-expanded=true] .fm-toggler__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  #fmNavCollapse {
    padding: 0 12px 12px;
  }
  .floating-menu .fm-list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .floating-menu .fm-item {
    width: 100%;
  }
  .floating-menu .fm-item a {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 12px;
    border-radius: 8px;
  }
  .floating-menu .fm-item a:hover {
    border-top: none;
    border-bottom: none;
    background: rgba(22, 36, 86, 0.08);
  }
  .floating-menu .fm-item a.fm-cta {
    justify-content: center;
    margin-top: 8px;
    padding: 12px 20px;
    font-size: 1.1rem;
  }
  .floating-menu .fm-item a.fm-cta:hover {
    border-top: none;
    border-bottom: none;
  }
  .floating-menu .fm-list > li:not(.fm-item) {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
  }
  .floating-menu .fm-list > li:not(.fm-item) svg {
    width: 28px;
    height: 28px;
  }
}
.footer {
  background: url("../img/default/footer01.png") no-repeat center top/cover;
  color: #000000;
}
.footer__body {
  padding: 56px 0 48px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 260px repeat(2, 160px) 240px 200px;
  gap: 32px 40px;
  align-items: start;
}
.footer__logo-link {
  display: inline-block;
}
.footer__logo {
  display: block;
  width: 180px;
  max-width: 100%;
  margin-bottom: 16px;
}
.footer__desc {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.75);
  max-width: 220px;
}
.footer__nav-title {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 14px;
}
.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__nav-list a {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  color: #000000;
  text-decoration: none;
  transition: opacity 0.18s;
}
.footer__nav-list a:hover {
  opacity: 0.6;
}
.footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #000000;
}
.footer__contact-item a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__contact-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: #000000;
}
.footer__social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__social-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  color: #000000;
  transition: background 0.2s, transform 0.2s;
}
.footer__social-list a svg {
  width: 18px;
  height: 18px;
}
.footer__social-list a:hover {
  background: #000000;
  color: #F7E501;
  transform: translateY(-2px);
}
.footer__legal {
  margin: 14px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__legal-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.footer__legal-item dt {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.55);
}
.footer__legal-item dd {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.4;
}
.footer__bar {
  padding: 14px 0;
  overflow: visible;
  background: url("../img/default/footer03.png") no-repeat center -45px/auto;
}
.footer__bar-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.footer__copy, .footer__bar-link {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  color: #000000;
}
.footer__bar-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__bar-link:hover {
  opacity: 0.65;
}
.footer__bar-sep {
  color: rgba(0, 0, 0, 0.35);
}
.footer__bar-credits {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  color: #000000;
}
.footer__bar-credit-brand {
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media (max-width: 991px) {
  .footer__body {
    padding: 40px 0 32px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .footer__brand {
    grid-column: 1/-1;
    text-align: center;
  }
  .footer__logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer__desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer__contact, .footer__social {
    grid-column: 1/-1;
  }
  .footer__bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .footer__bar-credits {
    margin-left: 0;
  }
}

.home-hero {
  position: relative;
  overflow: visible;
  height: 900px;
  display: flex;
  align-items: center;
}
.home-hero__bg {
  position: absolute;
  height: 900px;
  inset: 0;
  z-index: 0;
}
.home-hero__bg img {
  width: 100%;
  height: 900px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-hero__dec-clip {
  height: 900px;
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
@keyframes hero-fall {
  0% {
    translate: 0 -150px;
    opacity: 0;
  }
  8% {
    opacity: var(--bo, 1);
  }
  88% {
    opacity: var(--bo, 1);
  }
  100% {
    translate: var(--drift, 0px) calc(110vh + 150px);
    opacity: 0;
  }
}
@keyframes hero-sway-a {
  0% {
    rotate: -22deg;
  }
  50% {
    rotate: 18deg;
  }
  100% {
    rotate: -22deg;
  }
}
@keyframes hero-sway-b {
  0% {
    rotate: 20deg;
  }
  50% {
    rotate: -18deg;
  }
  100% {
    rotate: 20deg;
  }
}
@keyframes hero-sway-c {
  0% {
    rotate: -35deg;
  }
  40% {
    rotate: 12deg;
  }
  100% {
    rotate: -35deg;
  }
}
@keyframes hero-spin-cw {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}
@keyframes hero-spin-ccw {
  from {
    rotate: 0deg;
  }
  to {
    rotate: -360deg;
  }
}
@keyframes hero-mascot-enter {
  from {
    opacity: 0;
    translate: 0 140px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes hero-prod-enter-a {
  0% {
    translate: 0 160px;
    rotate: -24deg;
    opacity: 0;
  }
  55% {
    translate: 0 -22px;
    rotate: -8deg;
    opacity: 1;
  }
  72% {
    translate: 0 8px;
    rotate: -17deg;
  }
  84% {
    translate: 0 -6px;
    rotate: -12deg;
  }
  100% {
    translate: 0 0;
    rotate: -14deg;
  }
}
@keyframes hero-float-a {
  0% {
    translate: 0 0;
    rotate: -14deg;
  }
  35% {
    translate: 0 -16px;
    rotate: -17deg;
  }
  65% {
    translate: 0 -16px;
    rotate: -11deg;
  }
  100% {
    translate: 0 0;
    rotate: -14deg;
  }
}
@keyframes hero-prod-enter-p {
  0% {
    translate: 0 160px;
    rotate: 20deg;
    opacity: 0;
  }
  55% {
    translate: 0 -22px;
    rotate: 4deg;
    opacity: 1;
  }
  72% {
    translate: 0 8px;
    rotate: 13deg;
  }
  84% {
    translate: 0 -6px;
    rotate: 8deg;
  }
  100% {
    translate: 0 0;
    rotate: 10deg;
  }
}
@keyframes hero-float-p {
  0% {
    translate: 0 0;
    rotate: 10deg;
  }
  40% {
    translate: 0 -14px;
    rotate: 13deg;
  }
  70% {
    translate: 0 -14px;
    rotate: 7deg;
  }
  100% {
    translate: 0 0;
    rotate: 10deg;
  }
}
@keyframes hero-prod-enter-v {
  0% {
    translate: -50% 160px;
    rotate: -16deg;
    opacity: 0;
  }
  55% {
    translate: -50% -22px;
    rotate: -2deg;
    opacity: 1;
  }
  72% {
    translate: -50% 8px;
    rotate: -10deg;
  }
  84% {
    translate: -50% -6px;
    rotate: -6deg;
  }
  100% {
    translate: -50% 0;
    rotate: -8deg;
  }
}
@keyframes hero-float-v {
  0% {
    translate: -50% 0;
    rotate: -8deg;
  }
  45% {
    translate: -50% -13px;
    rotate: -5deg;
  }
  75% {
    translate: -50% -13px;
    rotate: -11deg;
  }
  100% {
    translate: -50% 0;
    rotate: -8deg;
  }
}
.home-hero__dec {
  position: absolute;
  top: 0;
  pointer-events: none;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-hero__dec--1 {
  width: 117px;
  left: 3%;
  z-index: 4;
  opacity: 1;
  --drift: 12px;
  animation: hero-fall 4.75s linear -1.2s infinite, hero-sway-a 2.8s ease-in-out -0.6s infinite;
}
.home-hero__dec--3 {
  width: 107px;
  left: 8%;
  z-index: 4;
  opacity: 1;
  --drift: -8px;
  animation: hero-fall 5.1s linear -3.5s infinite, hero-sway-b 3.2s ease-in-out -1.4s infinite;
}
.home-hero__dec--4 {
  width: 114px;
  left: 14%;
  z-index: 4;
  opacity: 1;
  --drift: 6px;
  animation: hero-fall 4.4s linear -0.8s infinite, hero-sway-a 3.5s ease-in-out -2.1s infinite;
}
.home-hero__dec--7 {
  width: 120px;
  left: 66%;
  z-index: 4;
  opacity: 1;
  --drift: 8px;
  animation: hero-fall 4.5s linear -0.4s infinite, hero-sway-b 2.6s ease-in-out -0.3s infinite;
}
.home-hero__dec--8 {
  width: 114px;
  left: 72%;
  z-index: 4;
  opacity: 1;
  --drift: -12px;
  animation: hero-fall 5.25s linear -2.8s infinite, hero-sway-c 3s ease-in-out -1.8s infinite;
}
.home-hero__dec--9 {
  width: 122px;
  left: 88%;
  z-index: 4;
  opacity: 1;
  --drift: 4px;
  animation: hero-fall 4.6s linear -1.9s infinite, hero-sway-a 3.3s ease-in-out -0.9s infinite;
}
.home-hero__dec--15 {
  width: 112px;
  left: 78%;
  z-index: 4;
  opacity: 1;
  --drift: -15px;
  animation: hero-fall 5.4s linear -2.1s infinite, hero-sway-b 2.9s ease-in-out -2.4s infinite;
}
.home-hero__dec--19 {
  width: 112px;
  left: 56%;
  z-index: 4;
  opacity: 1;
  --drift: -10px;
  animation: hero-fall 5s linear -3.2s infinite, hero-sway-c 3.4s ease-in-out -1.1s infinite;
}
.home-hero__dec--25 {
  width: 109px;
  left: 85%;
  z-index: 4;
  opacity: 1;
  --drift: 10px;
  animation: hero-fall 4.9s linear -3s infinite, hero-sway-a 2.7s ease-in-out -1.6s infinite;
}
.home-hero__dec--26 {
  width: 117px;
  left: 94%;
  z-index: 4;
  opacity: 1;
  --drift: 14px;
  animation: hero-fall 4.25s linear -2.4s infinite, hero-sway-b 3.1s ease-in-out -0.7s infinite;
}
.home-hero__dec--31 {
  width: 112px;
  left: 91%;
  z-index: 4;
  opacity: 1;
  --drift: -6px;
  animation: hero-fall 5.5s linear -1.6s infinite, hero-sway-c 3.6s ease-in-out -2.8s infinite;
}
.home-hero__dec--6 {
  --bo: 0.82;
  width: 78px;
  left: 60%;
  z-index: 2;
  opacity: 0.82;
  --drift: -8px;
  animation: hero-fall 6.6s linear -4.8s infinite, hero-spin-ccw 4.2s linear -2.1s infinite;
}
.home-hero__dec--10 {
  --bo: 0.82;
  width: 81px;
  left: 48%;
  z-index: 2;
  opacity: 0.82;
  --drift: 6px;
  animation: hero-fall 7.5s linear -3.3s infinite, hero-spin-cw 3.8s linear -3.7s infinite;
}
.home-hero__dec--13 {
  --bo: 0.82;
  width: 81px;
  left: 5%;
  z-index: 2;
  opacity: 0.82;
  --drift: -10px;
  animation: hero-fall 6.75s linear -0.6s infinite, hero-spin-cw 4.5s linear -0.9s infinite;
}
.home-hero__dec--14 {
  --bo: 0.82;
  width: 75px;
  left: 11%;
  z-index: 2;
  opacity: 0.82;
  --drift: 8px;
  animation: hero-fall 7.25s linear -4s infinite, hero-spin-ccw 3.6s linear -1.8s infinite;
}
.home-hero__dec--18 {
  --bo: 0.82;
  width: 75px;
  left: 70%;
  z-index: 2;
  opacity: 0.82;
  --drift: -14px;
  animation: hero-fall 6.4s linear -0.9s infinite, hero-spin-cw 4.8s linear -4.2s infinite;
}
.home-hero__dec--21 {
  --bo: 0.82;
  width: 83px;
  left: 18%;
  z-index: 2;
  opacity: 0.82;
  --drift: -6px;
  animation: hero-fall 6.5s linear -2.2s infinite, hero-spin-ccw 4s linear -0.5s infinite;
}
.home-hero__dec--22 {
  --bo: 0.82;
  width: 78px;
  left: 76%;
  z-index: 2;
  opacity: 0.82;
  --drift: 10px;
  animation: hero-fall 7.1s linear -2.7s infinite, hero-spin-cw 3.5s linear -2.6s infinite;
}
.home-hero__dec--23 {
  --bo: 0.82;
  width: 81px;
  left: 82%;
  z-index: 2;
  opacity: 0.82;
  --drift: -4px;
  animation: hero-fall 6.9s linear -4.2s infinite, hero-spin-ccw 5s linear -3.4s infinite;
}
.home-hero__dec--27 {
  --bo: 0.82;
  width: 78px;
  left: 25%;
  z-index: 2;
  opacity: 0.82;
  --drift: 12px;
  animation: hero-fall 7s linear -1.4s infinite, hero-spin-cw 4.3s linear -1.2s infinite;
}
.home-hero__dec--28 {
  --bo: 0.82;
  width: 78px;
  left: 36%;
  z-index: 2;
  opacity: 0.82;
  --drift: 16px;
  animation: hero-fall 7.4s linear -1.8s infinite, hero-spin-ccw 3.9s linear -4.6s infinite;
}
.home-hero__dec--32 {
  --bo: 0.82;
  width: 75px;
  left: 44%;
  z-index: 2;
  opacity: 0.82;
  --drift: -18px;
  animation: hero-fall 6.25s linear -3.6s infinite, hero-spin-cw 4.6s linear -0.8s infinite;
}
.home-hero__dec--2 {
  --bo: 0.55;
  width: 47px;
  left: 22%;
  z-index: 1;
  opacity: 0.55;
  --drift: 5px;
  animation: hero-fall 9.75s linear -1.5s infinite, hero-spin-cw 2.6s linear -1.3s infinite;
}
.home-hero__dec--5 {
  --bo: 0.55;
  width: 44px;
  left: 30%;
  z-index: 1;
  opacity: 0.55;
  --drift: -7px;
  animation: hero-fall 10.5s linear -6s infinite, hero-spin-ccw 3.1s linear -2.8s infinite;
}
.home-hero__dec--11 {
  --bo: 0.55;
  width: 42px;
  left: 37%;
  z-index: 1;
  opacity: 0.55;
  --drift: 9px;
  animation: hero-fall 9.4s linear -3.8s infinite, hero-spin-cw 2.3s linear -0.6s infinite;
}
.home-hero__dec--12 {
  --bo: 0.55;
  width: 44px;
  left: 68%;
  z-index: 1;
  opacity: 0.55;
  --drift: -11px;
  animation: hero-fall 9.9s linear -1s infinite, hero-spin-ccw 2.8s linear -3.5s infinite;
}
.home-hero__dec--16 {
  --bo: 0.55;
  width: 39px;
  left: 42%;
  z-index: 1;
  opacity: 0.55;
  --drift: -5px;
  animation: hero-fall 11s linear -7.2s infinite, hero-spin-cw 2.1s linear -1s infinite;
}
.home-hero__dec--17 {
  --bo: 0.55;
  width: 42px;
  left: 50%;
  z-index: 1;
  opacity: 0.55;
  --drift: 3px;
  animation: hero-fall 9s linear -2.6s infinite, hero-spin-ccw 2.9s linear -4.1s infinite;
}
.home-hero__dec--20 {
  --bo: 0.55;
  width: 39px;
  left: 74%;
  z-index: 1;
  opacity: 0.55;
  --drift: 7px;
  animation: hero-fall 10.75s linear -6.8s infinite, hero-spin-cw 3.3s linear -2.2s infinite;
}
.home-hero__dec--24 {
  --bo: 0.55;
  width: 44px;
  left: 55%;
  z-index: 1;
  opacity: 0.55;
  --drift: -9px;
  animation: hero-fall 11.25s linear -5.4s infinite, hero-spin-ccw 2.5s linear -0.4s infinite;
}
.home-hero__dec--29 {
  --bo: 0.55;
  width: 42px;
  left: 63%;
  z-index: 1;
  opacity: 0.55;
  --drift: 6px;
  animation: hero-fall 10.1s linear -4.5s infinite, hero-spin-cw 2.7s linear -3.9s infinite;
}
.home-hero__dec--30 {
  --bo: 0.55;
  width: 39px;
  left: 80%;
  z-index: 1;
  opacity: 0.55;
  --drift: -5px;
  animation: hero-fall 9.25s linear -3.1s infinite, hero-spin-ccw 3s linear -1.7s infinite;
}
.home-hero__dec--33 {
  --bo: 0.68;
  width: 62px;
  left: 16%;
  z-index: 1;
  opacity: 0.68;
  --drift: 11px;
  animation: hero-fall 8s linear -5s infinite, hero-spin-cw 3.4s linear -2.5s infinite;
}
.home-hero__dec--34 {
  --bo: 0.68;
  width: 57px;
  left: 28%;
  z-index: 1;
  opacity: 0.68;
  --drift: -9px;
  animation: hero-fall 8.6s linear -2.3s infinite, hero-spin-ccw 3.7s linear -0.9s infinite;
}
.home-hero__dec--35 {
  --bo: 0.68;
  width: 60px;
  left: 40%;
  z-index: 1;
  opacity: 0.68;
  --drift: 7px;
  animation: hero-fall 7.6s linear -0.7s infinite, hero-spin-cw 3s linear -3.2s infinite;
}
.home-hero__dec--36 {
  --bo: 0.68;
  width: 68px;
  left: 52%;
  z-index: 1;
  opacity: 0.68;
  --drift: -13px;
  animation: hero-fall 9s linear -5.8s infinite, hero-spin-ccw 4.1s linear -1.5s infinite;
}
.home-hero__dec--37 {
  --bo: 0.68;
  width: 62px;
  left: 58%;
  z-index: 1;
  opacity: 0.68;
  --drift: 5px;
  animation: hero-fall 8.1s linear -3.9s infinite, hero-spin-cw 3.2s linear -4.7s infinite;
}
.home-hero__dec--38 {
  --bo: 0.68;
  width: 57px;
  left: 65%;
  z-index: 1;
  opacity: 0.68;
  --drift: -7px;
  animation: hero-fall 8.75s linear -1.5s infinite, hero-spin-ccw 2.9s linear -0.3s infinite;
}
.home-hero__dec--39 {
  --bo: 0.68;
  width: 65px;
  left: 86%;
  z-index: 1;
  opacity: 0.68;
  --drift: 9px;
  animation: hero-fall 8.4s linear -4.4s infinite, hero-spin-cw 3.8s linear -2s infinite;
}
.home-hero__dec--40 {
  --bo: 0.68;
  width: 60px;
  left: 96%;
  z-index: 1;
  opacity: 0.68;
  --drift: -6px;
  animation: hero-fall 7.9s linear -2s infinite, hero-spin-ccw 3.5s linear -5.1s infinite;
}
.home-hero__dec--41 {
  width: 100px;
  left: 1%;
  z-index: 4;
  opacity: 1;
  --drift: 8px;
  animation: hero-fall 5s linear -2.5s infinite, hero-sway-b 3s ease-in-out -1.5s infinite;
}
.home-hero__dec--42 {
  width: 104px;
  left: 97%;
  z-index: 4;
  opacity: 1;
  --drift: -10px;
  animation: hero-fall 4.5s linear -0.5s infinite, hero-sway-a 3.3s ease-in-out -0.2s infinite;
}
.home-hero__dec--43 {
  --bo: 0.82;
  width: 76px;
  left: 73%;
  z-index: 2;
  opacity: 0.82;
  --drift: 6px;
  animation: hero-fall 6.75s linear -4.1s infinite, hero-sway-c 4s ease-in-out -2.7s infinite;
}
.home-hero__dec--44 {
  --bo: 0.82;
  width: 72px;
  left: 10%;
  z-index: 2;
  opacity: 0.82;
  --drift: -8px;
  animation: hero-fall 7.25s linear -1.3s infinite, hero-sway-b 3.6s ease-in-out -1.8s infinite;
}
.home-hero__dec--45 {
  --bo: 0.68;
  width: 58px;
  left: 46%;
  z-index: 1;
  opacity: 0.68;
  --drift: 10px;
  animation: hero-fall 8.25s linear -3.7s infinite, hero-spin-cw 3.2s linear -3s infinite;
}
.home-hero__dec--46 {
  --bo: 0.55;
  width: 40px;
  left: 62%;
  z-index: 1;
  opacity: 0.55;
  --drift: -6px;
  animation: hero-fall 10.4s linear -5.7s infinite, hero-spin-ccw 2.4s linear -1.2s infinite;
}
.home-hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: center;
  height: 100%;
}
@keyframes hero-enter {
  from {
    opacity: 0;
    translate: -60px 0;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
.home-hero__content {
  padding-right: 24px;
}
.home-hero__logo {
  display: block;
  width: 364px;
  max-width: 100%;
  margin-bottom: 80px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.24));
  animation: hero-enter 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.home-hero__title {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(1.2rem, 2.8vw, 3rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 10px #000000;
  paint-order: stroke fill;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  max-width: 540px;
  animation: hero-enter 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}
.home-hero__text {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #162456;
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 0;
  animation: hero-enter 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.44s both;
}
.home-hero__text p {
  color: inherit;
}
.home-hero__text strong {
  font-weight: 700;
}
.home-hero__visual {
  position: relative;
  height: 754px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.home-hero__visual-clip {
  position: absolute;
  inset: 0;
  clip-path: inset(-200px -200px 0 -200px);
  pointer-events: none;
}
.home-hero__mascot {
  position: relative;
  z-index: 3;
  width: min(100%, 1105px);
  max-height: 1112px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.12));
  animation: hero-mascot-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}
.home-hero__product {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.22));
  will-change: translate, rotate;
}
.home-hero__product--amarelo {
  width: 260px;
  top: 200px;
  left: -4%;
  z-index: 4;
  animation: hero-prod-enter-a 0.85s ease-out 0.5s both, hero-float-a 3.2s ease-in-out 1.35s infinite;
}
.home-hero__product--pururuca {
  width: 455px;
  top: 200px;
  right: -10%;
  z-index: 4;
  animation: hero-prod-enter-p 0.85s ease-out 0.65s both, hero-float-p 3.8s ease-in-out 1.5s infinite;
}
.home-hero__product--vermelho {
  width: 293px;
  bottom: -50px;
  left: 50%;
  z-index: 5;
  animation: hero-prod-enter-v 0.85s ease-out 0.8s both, hero-float-v 2.9s ease-in-out 1.65s infinite;
}
.home-hero__floor {
  position: absolute;
  bottom: 0;
  transform: translateY(20%);
  left: 0;
  right: 0;
  z-index: 300;
  line-height: 0;
}
.home-hero__floor img {
  width: 100%;
  display: block;
}
@media (max-width: 991px) {
  .home-hero {
    height: auto;
    padding: 130px 0 60px;
    min-height: auto;
  }
  .home-hero__bg {
    height: 100%;
  }
  .home-hero__bg img {
    height: 100%;
  }
  .home-hero__dec-clip {
    height: 100%;
  }
  .home-hero__container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .home-hero__content {
    padding-right: 0;
    text-align: center;
  }
  .home-hero__logo {
    margin: 0 auto 18px;
  }
  .home-hero__text {
    margin: 0 auto;
  }
  .home-hero__title {
    -webkit-text-stroke: 5px #000000;
    font-size: clamp(1.5rem, 6vw, 3rem);
  }
  .home-hero__visual {
    height: 380px;
    top: 50px;
  }
  .home-hero__mascot {
    width: min(100%, 380px);
  }
  .home-hero__product--amarelo {
    width: 150px;
    top: 100px;
    left: 1%;
  }
  .home-hero__product--pururuca {
    width: 140px;
    top: 46px;
    right: 1%;
  }
  .home-hero__product--vermelho {
    width: 110px;
    bottom: 20px;
  }
  .home-hero__floor-item {
    height: 100px;
    width: auto;
  }
  .home-hero__dec--2, .home-hero__dec--5, .home-hero__dec--6, .home-hero__dec--9, .home-hero__dec--12, .home-hero__dec--14, .home-hero__dec--16, .home-hero__dec--17, .home-hero__dec--18, .home-hero__dec--20, .home-hero__dec--22, .home-hero__dec--23, .home-hero__dec--24, .home-hero__dec--27, .home-hero__dec--28, .home-hero__dec--29, .home-hero__dec--30, .home-hero__dec--32, .home-hero__dec--34, .home-hero__dec--35, .home-hero__dec--37, .home-hero__dec--38, .home-hero__dec--40, .home-hero__dec--43, .home-hero__dec--44, .home-hero__dec--45, .home-hero__dec--46 {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-hero__logo, .home-hero__title, .home-hero__text, .home-hero__mascot, .home-hero__product {
    animation: none;
  }
  .home-hero__product--amarelo {
    rotate: -14deg;
  }
  .home-hero__product--pururuca {
    rotate: 10deg;
  }
  .home-hero__product--vermelho {
    translate: -50% 0;
    rotate: -8deg;
  }
}

.home-info {
  padding: 22px 0;
  min-height: 300px;
  display: flex;
  align-items: center; /* centraliza verticalmente o conteúdo dentro da faixa */
  overflow: visible;
  position: relative;
}
.home-info__dec {
  position: absolute;
  left: 7%;
  bottom: -50%;
  height: 100%;
  width: 100px;
  pointer-events: none;
  overflow: visible;
  z-index: 100;
}
.home-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center; /* centraliza horizontalmente a lista */
  gap: 12px;
}
.home-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 0 1 auto; /* não forçar expansão; permite centralização mantendo tamanho natural */
}
.home-info__item:not(:last-child) {
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.home-info__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-info__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-info__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.home-info__highlight {
  display: block;
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(1.85rem, 1.4vw, 2rem);
  line-height: 1;
  color: #F7E501;
  /* outline para melhor contraste: webkit stroke + text-shadow fallback */
  -webkit-text-stroke: 1px #000000;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.home-info__text {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(0.9rem, 0.85vw, 1.2rem);
  font-weight: 400;
  color: #162456;
  font-weight: 700;
  line-height: 1.45;
}
@media (max-width: 991px) {
  .home-info {
    padding: 16px 0;
  }
  .home-info__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 8px;
    justify-content: initial;
    align-items: initial;
  }
  .home-info__item {
    padding-right: 0 !important;
    border-right: none !important;
    flex: unset;
  }
  .home-info__item:nth-child(odd) {
    padding-right: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }
  .home-info__icon {
    width: 44px;
    height: 44px;
  }
  .home-info__highlight {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    -webkit-text-stroke: 0.5px #000000;
  }
  .home-info__text {
    font-size: 0.72rem;
  }
}

.home-produtos {
  position: relative;
  background: url("../img/default/bgamarelo.png") center center/cover no-repeat;
  padding: 110px 0 72px;
  overflow: hidden;
  clip-path: polygon(0 50px, 100% 0%, 100% 100%, 0 100%);
}
.home-produtos .container {
  position: relative;
}
.home-produtos__dec {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.home-produtos__dec--left {
  left: -60px;
  top: 50%;
  width: 200px;
  z-index: 0;
  opacity: 0;
  transform: translateY(-50%) translateX(-80px) rotate(-20deg) scale(0.8);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.home-produtos__dec--right {
  right: -20px;
  z-index: 0;
  opacity: 0.9;
}
.home-produtos__dec--r1 {
  width: 150px;
  top: 5%;
  right: 200px;
  opacity: 0;
  transform: translateX(80px) rotate(15deg) scale(0.8);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.home-produtos__dec--r2 {
  width: 110px;
  top: 22%;
  right: 60px;
  opacity: 0;
  transform: translateX(80px) rotate(-10deg) scale(0.8);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}
.home-produtos__dec--r3 {
  width: 105px;
  top: 40%;
  right: 5px;
  opacity: 0;
  transform: translateX(80px) rotate(8deg) scale(0.8);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}
.home-produtos__dec--r4 {
  width: 100px;
  top: 58%;
  right: 55px;
  opacity: 0;
  transform: translateX(80px) rotate(-15deg) scale(0.8);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s;
}
.home-produtos__dec--r5 {
  width: 105px;
  top: 75%;
  right: 108px;
  opacity: 0;
  transform: translateX(80px) rotate(12deg) scale(0.8);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.7s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.7s;
}
.home-produtos__title {
  position: relative;
  z-index: 1;
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 8px #000000;
  paint-order: stroke fill;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}
.home-produtos__carousel-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.home-produtos__carousel {
  flex: 1;
  min-width: 0;
}
.home-produtos__carousel .owl-stage-outer {
  overflow: visible;
  clip-path: inset(-9999px -9999px -9999px -20px);
}
.home-produtos__carousel .owl-stage {
  display: flex;
}
.home-produtos__carousel .owl-item {
  display: flex;
}
.home-produtos__carousel .produto-card {
  width: 100%;
}
.home-produtos__nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #000000;
  background: white;
  color: #000000;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  z-index: 999;
}
.home-produtos__nav:hover {
  background: #000000;
  color: #F7E501;
}
.home-produtos__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.home-produtos__cta {
  display: inline-block;
  padding: 12px 40px;
  border: 2px solid #000000;
  font-family: "Luckiest Guy", cursive;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #000000;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.home-produtos__cta:hover {
  background: #000000;
  color: #F7E501;
}
.home-produtos.is-visible .home-produtos__dec--left {
  opacity: 0.7;
  transform: translateY(-50%) translateX(0) rotate(-20deg) scale(1);
}
.home-produtos.is-visible .home-produtos__dec--r1 {
  opacity: 0.9;
  transform: translateX(0) rotate(15deg) scale(1);
}
.home-produtos.is-visible .home-produtos__dec--r2 {
  opacity: 0.9;
  transform: translateX(0) rotate(-10deg) scale(1);
}
.home-produtos.is-visible .home-produtos__dec--r3 {
  opacity: 0.9;
  transform: translateX(0) rotate(8deg) scale(1);
}
.home-produtos.is-visible .home-produtos__dec--r4 {
  opacity: 0.9;
  transform: translateX(0) rotate(-15deg) scale(1);
}
.home-produtos.is-visible .home-produtos__dec--r5 {
  opacity: 0.9;
  transform: translateX(0) rotate(12deg) scale(1);
}
@media (max-width: 991px) {
  .home-produtos {
    padding: 48px 0 56px;
  }
  .home-produtos__dec--left, .home-produtos__dec--right {
    display: none;
  }
  .home-produtos__title {
    -webkit-text-stroke: 5px #000000;
  }
  .home-produtos__nav {
    display: none;
  }
  .home-produtos__carousel .owl-stage-outer {
    overflow: hidden;
  }
}

.home-sobre {
  position: relative;
  overflow: visible;
  clip-path: polygon(0 -100px, 100% -150px, 100% 100%, 0 100%);
}
.home-sobre::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 20px;
  background: #F7E501;
  z-index: 10;
  pointer-events: none;
  transform: skewY(1deg);
  transform-origin: left center;
}
.home-sobre__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.home-sobre__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-sobre__play {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease;
}
.home-sobre__play svg {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
  transition: transform 0.2s ease;
}
.home-sobre__play:hover svg, .home-sobre__play:focus-visible svg {
  transform: scale(1.1);
}
.home-sobre__modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-sobre__modal[hidden] {
  display: none;
}
.home-sobre__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  cursor: pointer;
}
.home-sobre__modal-box {
  position: relative;
  z-index: 1;
  width: min(900px, 92vw);
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}
.home-sobre__modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: opacity 0.15s;
}
.home-sobre__modal-close:hover {
  opacity: 0.7;
}
.home-sobre__modal-player {
  width: 100%;
  height: 100%;
}
.home-sobre__modal-player iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.home-sobre__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 440px;
}
.home-sobre__content {
  padding: 56px 48px 56px 0;
}
.home-sobre__logo {
  display: block;
  width: 400px;
  max-width: 100%;
  margin-bottom: 18px;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
}
.home-sobre__title {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(0.8rem, 3.8vw, 3.2rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 6px #000000;
  paint-order: stroke fill;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
.home-sobre__subtitle {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.home-sobre__text {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 28px;
}
.home-sobre__text p {
  color: inherit;
}
.home-sobre__text strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.home-sobre__cta {
  display: inline-block;
  font-family: "Luckiest Guy", cursive;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 3px #000000;
  paint-order: stroke fill;
  background: #FFFFFF;
  padding: 10px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.home-sobre__cta:hover, .home-sobre__cta:focus-visible {
  background: #F7E501;
  color: #FFFFFF;
}
.home-sobre__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(3rem, 8vw, 7.5rem);
  color: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.home-sobre__mascot {
  position: absolute;
  top: -100px;
  left: 50%;
  height: 850px;
  z-index: 4;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
  pointer-events: none;
  translate: -30% 180px;
  transition: translate 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-sobre__mascot.is-visible {
  translate: -30% 0;
}
@media (max-width: 991px) {
  .home-sobre {
    background-color: #0B5362;
  }
  .home-sobre::before, .home-sobre::after {
    display: none;
  }
  .home-sobre__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .home-sobre__content {
    padding: 36px 0 28px;
  }
  .home-sobre__title {
    font-size: clamp(1.1rem, 4.5vw, 1.8rem);
    -webkit-text-stroke: 3px #000000;
  }
  .home-sobre__text {
    max-width: 100%;
  }
  .home-sobre__visual {
    height: 320px;
  }
  .home-sobre__mascot {
    top: -60px;
    height: calc(100% + 60px);
    width: auto;
    max-width: min(100%, 300px);
    left: 50%;
    translate: -50% 120px;
  }
  .home-sobre__mascot.is-visible {
    translate: -50% 0;
  }
  .home-sobre__play {
    display: none;
  }
}

.home-parceiros {
  position: relative;
  background: url("../img/default/bghome.png") center center/cover no-repeat;
  background-color: #FFFFFF;
  padding: 52px 0 64px;
  overflow: hidden;
}
.home-parceiros__dec {
  position: absolute;
  pointer-events: none;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translateY(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.home-parceiros__dec--animate {
  opacity: 0.65;
  transform: translateY(0);
}
.home-parceiros__dec--tl {
  width: 200px;
  top: -10px;
  left: -12px;
  rotate: -35deg;
}
.home-parceiros__dec--tl2 {
  width: 200px;
  top: 100px;
  left: 40px;
  rotate: 10deg;
  transition-delay: 0.1s;
}
.home-parceiros__dec--br {
  width: 100px;
  top: 300px;
  right: -8px;
  rotate: 20deg;
  transition-delay: 0.05s;
}
.home-parceiros__dec--br2 {
  width: 70px;
  top: 400px;
  right: 50px;
  rotate: -30deg;
  transition-delay: 0.15s;
}
.home-parceiros__title {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(1.25rem, 2vw, 2.75rem);
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 8px #000000;
  paint-order: stroke fill;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}
.home-parceiros__carousel {
  padding-bottom: 36px;
}
.home-parceiros__item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 80px;
}
.home-parceiros__item img {
  max-width: 140px;
  max-height: 70px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.25s, opacity 0.25s;
}
.home-parceiros__item:hover img, .home-parceiros__item:focus-within img {
  filter: grayscale(0%);
  opacity: 1;
}
.home-parceiros .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.home-parceiros .owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000000;
  opacity: 0.25;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
}
.home-parceiros .owl-dot.active span {
  background: #F7E501;
  opacity: 1;
  transform: scale(1.2);
}
.home-parceiros__cta-container {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.home-parceiros__cta {
  display: inline-block;
  font-family: "Luckiest Guy", cursive;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 3px #000000;
  paint-order: stroke fill;
  background: #FFFFFF;
  padding: 10px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.home-parceiros__cta:hover, .home-parceiros__cta:focus-visible {
  background: #F7E501;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .home-parceiros {
    padding: 36px 0 48px;
  }
  .home-parceiros__dec--tl {
    width: 56px;
  }
  .home-parceiros__dec--br {
    width: 64px;
  }
  .home-parceiros__item img {
    max-width: 96px;
    max-height: 52px;
  }
}

.home-encontre {
  position: relative;
  padding: 60px 0 200px;
  overflow: hidden;
}
.home-encontre__dec {
  position: absolute;
  pointer-events: none;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translateY(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.home-encontre__dec--animate {
  opacity: 1;
  transform: translateY(0);
}
.home-encontre__dec--tl {
  width: 70px;
  top: 2%;
  left: 1%;
  rotate: -40deg;
}
.home-encontre__dec--tl2 {
  width: 54px;
  top: 22%;
  left: 2.5%;
  rotate: 15deg;
  transition-delay: 0.1s;
}
.home-encontre__dec--ml {
  width: 90px;
  top: 48%;
  left: 0.5%;
  rotate: -10deg;
  transition-delay: 0.15s;
}
.home-encontre__dec--bl {
  width: 300px;
  bottom: 8%;
  left: 3%;
  transition-delay: 0.05s;
}
.home-encontre__dec--mr {
  width: 72px;
  top: 30%;
  right: 1%;
  rotate: 20deg;
  transition-delay: 0.1s;
}
.home-encontre__dec--br {
  width: 200px;
  bottom: -8px;
  right: -8px;
  rotate: 20deg;
  transition-delay: 0.05s;
}
.home-encontre__dec--br2 {
  width: 200px;
  bottom: 200px;
  right: 50px;
  rotate: 80deg;
  transition-delay: 0.2s;
}
.home-encontre__bg-linha {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  display: block;
}
.home-encontre__title {
  font-size: clamp(1.25rem, 2vw, 2.75rem);
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 8px #000000;
  paint-order: stroke fill;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}
.home-encontre__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-radius: 12px;
  padding: 18px;
}
.home-encontre__card {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: #000000;
  transition: transform 0.25s, box-shadow 0.25s;
}
.home-encontre__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}
.home-encontre__card-img {
  position: relative;
  flex: 1;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  gap: 12px;
  padding-left: 60px;
  padding-right: 60px;
}
.home-encontre__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.home-encontre__card-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.home-encontre__card-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-encontre__card-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.home-encontre__card-title {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #F7E501;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0;
}
.home-encontre__card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.home-encontre__card-text {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
  margin: 0;
}
.home-encontre__card-text p {
  color: inherit;
  margin: 0;
}
.home-encontre__card-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #F7E501;
  text-decoration: none;
  transition: color 0.2s, letter-spacing 0.2s;
}
.home-encontre__card-cta:hover, .home-encontre__card-cta:focus-visible {
  color: #FFFFFF;
  letter-spacing: 0.1em;
}
@media (max-width: 991px) {
  .home-encontre {
    padding: 40px 0 52px;
  }
  .home-encontre__cards {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 12px;
  }
  .home-encontre__card-img {
    min-height: 300px;
  }
  .home-encontre__dec--tl2, .home-encontre__dec--ml, .home-encontre__dec--mr {
    display: none;
  }
  .home-encontre__dec--tl {
    width: 50px;
  }
  .home-encontre__dec--bl {
    width: 44px;
  }
  .home-encontre__dec--br {
    width: 56px;
  }
}

.home-duvidas {
  position: relative;
  background-color: #F7E501;
  overflow: visible;
  padding: 60px 0 60px;
  clip-path: inset(-550px 0 0 0);
}
.home-duvidas__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.home-duvidas__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: end;
  gap: 0;
  min-height: 360px;
  position: relative;
}
.home-duvidas__faq {
  max-width: 600px;
  padding: 52px 32px 52px 0;
  align-self: center;
  position: relative;
  z-index: 1;
}
.home-duvidas__faq-title {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(1.1rem, 2vw, 1.9rem);
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 8px #000000;
  paint-order: stroke fill;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
  padding-bottom: 4px;
}
.home-duvidas__faq-subtitle {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 380px;
}
.home-duvidas__accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-duvidas__acc-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
}
.home-duvidas__acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #000000;
  text-align: left;
  transition: background 0.18s;
}
.home-duvidas__acc-trigger:hover {
  background: rgba(255, 255, 255, 0.45);
}
.home-duvidas__acc-trigger[aria-expanded=true] .home-duvidas__acc-icon::before {
  transform: rotate(180deg);
}
.home-duvidas__acc-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-duvidas__acc-icon::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid #000000;
  border-bottom: 2.5px solid #000000;
  transform: rotate(45deg);
  transition: transform 0.22s;
  margin-top: -4px;
}
.home-duvidas__acc-body {
  padding: 0 16px 14px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9375rem;
  color: #000000;
  line-height: 1.6;
}
.home-duvidas__acc-body a {
  color: #000000;
  font-weight: 600;
  text-underline-offset: 2px;
}
.home-duvidas__mascot-wrap {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  z-index: 0;
  pointer-events: none;
  width: 1000px;
}
.home-duvidas__mascot {
  display: block;
  width: 1500px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.25));
}
.home-duvidas__form-wrap {
  background: linear-gradient(to right, #0223AC 0%, #1135B2 100%);
  padding: 40px 32px 52px;
  width: 500px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.home-duvidas__form-title {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 4px #000000;
  paint-order: stroke fill;
  font-weight: 100;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.home-duvidas__form-subtitle {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
  margin-bottom: 20px;
}
.home-duvidas__form-subtitle p {
  color: inherit;
}
.home-duvidas__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home-duvidas__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.home-duvidas__field {
  display: flex;
  flex-direction: column;
}
.home-duvidas__input {
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 10px 14px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9375rem;
  color: #162456;
  outline: none;
  transition: border-color 0.18s, background 0.18s;
}
.home-duvidas__input::-moz-placeholder {
  color: rgba(22, 36, 86, 0.42);
}
.home-duvidas__input::placeholder {
  color: rgba(22, 36, 86, 0.42);
}
.home-duvidas__input:focus {
  border-color: #F7E501;
  background: rgba(255, 255, 255, 0.8);
}
.home-duvidas__input--textarea {
  resize: vertical;
  min-height: 90px;
}
.home-duvidas__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 24px;
  background: #F7E501;
  border: none;
  border-radius: 5px;
  font-family: "Luckiest Guy", cursive;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #000000;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}
.home-duvidas__submit svg {
  width: 20px;
  height: 20px;
}
.home-duvidas__submit:hover, .home-duvidas__submit:focus-visible {
  background: rgb(254.1491935484, 238.8346774194, 44.8508064516);
  transform: translateY(-2px);
}
.home-duvidas__submit:active {
  transform: translateY(0);
}
@media (max-width: 991px) {
  .home-duvidas__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .home-duvidas__faq {
    padding: 36px 0 24px;
  }
  .home-duvidas__mascot-wrap {
    display: none;
  }
  .home-duvidas__form-wrap {
    padding: 32px 20px 40px;
    width: 100%;
  }
  .home-duvidas__form-row {
    grid-template-columns: 1fr;
  }
}

.home-blog {
  position: relative;
  background-color: #F0EEEE;
  padding: 64px 0 72px;
  overflow: hidden;
}
.home-blog__watermark {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(6rem, 18vw, 18rem);
  color: rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  letter-spacing: 0.04em;
  z-index: 0;
}
.home-blog__title {
  position: relative;
  z-index: 1;
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 8px #000000;
  paint-order: stroke fill;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.home-blog__subtitle {
  position: relative;
  z-index: 1;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #162456;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 48px;
}
.home-blog__subtitle p {
  color: inherit;
  margin: 0;
}
.home-blog__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.home-blog__card {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  transition: transform 0.22s, box-shadow 0.22s;
}
.home-blog__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
}
.home-blog__card-img-link {
  position: relative;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}
.home-blog__card-img {
  display: block;
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s;
}
.home-blog__card:hover .home-blog__card-img {
  transform: scale(1.04);
}
.home-blog__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #F7E501;
  color: #000000;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.home-blog__card-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home-blog__card-title {
  font-family: "Luckiest Guy", cursive;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 4px #000000;
  paint-order: stroke fill;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.home-blog__card-title a {
  color: inherit;
  text-decoration: none;
}
.home-blog__card-title a:hover {
  text-decoration: underline;
}
.home-blog__card-text {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9375rem;
  color: #162456;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.home-blog__card-link {
  padding-left: 20px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.18s, gap 0.18s;
}
.home-blog__card-link:hover {
  color: #10404B;
  gap: 8px;
}
.home-blog__cta-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.home-blog__cta {
  display: inline-block;
  font-family: "Luckiest Guy", cursive;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 2px #000000;
  paint-order: stroke fill;
  background: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  padding: 10px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.home-blog__cta:hover, .home-blog__cta:focus-visible {
  background: #000000;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .home-blog {
    padding: 48px 0 56px;
  }
  .home-blog__watermark {
    display: none;
  }
  .home-blog__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home-blog__card-img {
    height: 200px;
  }
  .home-blog__subtitle {
    margin-bottom: 32px;
  }
}

.home-instagram {
  background: linear-gradient(to right, #162456 0%, #400e66 100%);
  display: flex;
  flex-direction: column;
  overflow: visible;
  padding: 0;
  padding-bottom: 100px;
  z-index: 999;
}
.home-instagram__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 40px;
  gap: 20px;
}
.home-instagram__icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-top: -40px;
  transition: transform 0.22s;
}
.home-instagram__icon-link:hover {
  transform: scale(1.08);
}
.home-instagram__icon {
  width: auto;
  height: 80px;
  display: block;
}
.home-instagram__title {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  line-height: 1.15;
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 6px #000000;
  paint-order: stroke fill;
  letter-spacing: 0.02em;
  max-width: 780px;
}
.home-instagram__cta {
  display: inline-block;
  font-family: "Luckiest Guy", cursive;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F7E501;
  background: #FFFFFF;
  -webkit-text-stroke: 2px #000000;
  paint-order: stroke fill;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  padding: 10px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.home-instagram__cta:hover, .home-instagram__cta:focus-visible {
  background: #000000;
  color: #FFFFFF;
}
.home-instagram__strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.home-instagram__post {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.home-instagram__post img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s;
}
.home-instagram__post:hover img {
  transform: scale(1.06);
}
.home-instagram__post:hover .home-instagram__post-overlay {
  opacity: 1;
}
.home-instagram__post-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s;
}
.home-instagram__post-overlay svg {
  width: 36px;
  height: 36px;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .home-instagram__header {
    padding-top: 36px;
    padding-bottom: 28px;
    gap: 16px;
  }
  .home-instagram__title {
    font-size: clamp(1rem, 4vw, 1.4rem);
  }
  .home-instagram__strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-instagram__strip .home-instagram__post:nth-child(n+4) {
    display: none;
  }
}

.sobre-main {
  position: relative;
  overflow: visible;
  background: #162456;
  padding: 100px 0 0;
  height: 800px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .sobre-main {
    height: auto;
    padding: 80px 0 40px;
  }
}
.sobre-main__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.sobre-main__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sobre-main__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 80px;
  min-height: 520px;
}
@media (max-width: 991px) {
  .sobre-main__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
    min-height: unset;
  }
}
.sobre-main__visual {
  position: relative;
  min-height: 480px;
}
@media (max-width: 991px) {
  .sobre-main__visual {
    min-height: 300px;
    order: 2;
  }
}
.sobre-main__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  z-index: 3;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}
.sobre-main__mascot {
  position: absolute;
  bottom: -10px;
  left: 50%;
  translate: -25% 0;
  width: 360px;
  z-index: 2;
}
@media (max-width: 991px) {
  .sobre-main__mascot {
    width: 200px;
    translate: -50% 0;
  }
}
.sobre-main__prod {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.sobre-main__prod--a {
  top: 8%;
  left: 4%;
  width: 130px;
  rotate: -15deg;
}
.sobre-main__prod--b {
  top: 28%;
  right: 4%;
  width: 110px;
  rotate: 22deg;
}
.sobre-main__prod--c {
  bottom: 18%;
  left: 2%;
  width: 95px;
  rotate: 8deg;
}
.sobre-main__content {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  padding: 48px 40px;
  backdrop-filter: blur(4px);
}
@media (max-width: 991px) {
  .sobre-main__content {
    background-color: rgba(22, 36, 86, 0.8);
    margin-top: 100px;
    padding: 28px 20px;
    order: 1;
  }
}
.sobre-main__title {
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: #F7E501;
  -webkit-text-stroke: 8px #000000;
  paint-order: stroke fill;
  line-height: 1.1;
  margin-bottom: 20px;
}
.sobre-main__text {
  color: #162456;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}
.sobre-main__text p {
  color: inherit;
  margin: 0;
}
@media (max-width: 991px) {
  .sobre-main__text {
    font-size: 1rem;
    color: #FFFFFF;
  }
}
.sobre-main__mvv {
  position: relative;
  z-index: 10;
  margin-bottom: -100px;
}
@media (max-width: 991px) {
  .sobre-main__mvv {
    margin-bottom: 0;
  }
}
.sobre-main__mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 34px;
}
@media (max-width: 991px) {
  .sobre-main__mvv-grid {
    padding-top: -150px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.sobre-main__mvv-card {
  position: relative;
  overflow: visible;
  background: linear-gradient(to right, #0223AC 0%, #1135B2 100%);
  border-radius: 32px 0px 32px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  padding: 62px 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.sobre-main__mvv-icon {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 5px solid #F7E501;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F7E501;
  font-size: 1.75rem;
  flex-shrink: 0;
}
.sobre-main__mvv-title {
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  -webkit-text-stroke: 6px #000000;
  paint-order: stroke fill;
  font-size: 1.25rem;
  color: #F7E501;
  margin: 0;
}
.sobre-main__mvv-text {
  font-size: 0.9375rem;
  color: #FFFFFF;
  line-height: 1.6;
  margin: 0;
}
.sobre-main__mvv-text p {
  color: inherit;
  margin: 0;
}

.sobre-timeline {
  position: relative;
  overflow: hidden;
  background: #FFFFFF url("../img/default/bg-timeline.png") center center/cover no-repeat;
  padding: 300px 0 100px;
}
@media (max-width: 991px) {
  .sobre-timeline {
    padding: 60px 0 60px;
  }
}
.sobre-timeline__dec {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  translate: 0 100px;
  transition: opacity 0.7s ease, translate 0.7s ease;
}
@media (max-width: 991px) {
  .sobre-timeline__dec {
    display: none;
  }
}
.sobre-timeline__dec--animate {
  opacity: 1;
  translate: 0 0;
}
.sobre-timeline__dec--lt1 {
  width: 250px;
  top: 4%;
  left: -20px;
  rotate: -8deg;
  transition-delay: 0s;
}
.sobre-timeline__dec--lt2 {
  width: 200px;
  top: 10%;
  left: 60px;
  rotate: 120deg;
  transition-delay: 0.15s;
}
.sobre-timeline__dec--lm1 {
  width: 190px;
  top: 38%;
  left: -10px;
  rotate: -10deg;
  transition-delay: 0.1s;
}
.sobre-timeline__dec--lm2 {
  width: 175px;
  top: 48%;
  left: 55px;
  rotate: 9deg;
  transition-delay: 0.25s;
}
.sobre-timeline__dec--rm1 {
  width: 200px;
  top: 35%;
  right: 50px;
  rotate: 7deg;
  transition-delay: 0.05s;
}
.sobre-timeline__dec--rm2 {
  width: 175px;
  top: 44%;
  right: 155px;
  rotate: -10deg;
  transition-delay: 0.2s;
}
.sobre-timeline__dec--br5 {
  width: 160px;
  bottom: 260px;
  right: 70px;
  rotate: -20deg;
  transition-delay: 0.32s;
}
.sobre-timeline__dec--br4 {
  width: 155px;
  bottom: 200px;
  right: 100px;
  rotate: 6deg;
  transition-delay: 0.24s;
}
.sobre-timeline__dec--br3 {
  width: 140px;
  bottom: 140px;
  right: 130px;
  rotate: -9deg;
  transition-delay: 0.16s;
}
.sobre-timeline__dec--br2 {
  width: 135px;
  bottom: 80px;
  right: 150px;
  rotate: 8deg;
  transition-delay: 0.08s;
}
.sobre-timeline__dec--br1 {
  width: 130px;
  bottom: 20px;
  right: 180px;
  rotate: -5deg;
  transition-delay: 0s;
}
.sobre-timeline__track {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.sobre-timeline__track::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #162456;
  translate: -50% 0;
  z-index: 0;
}
@media (max-width: 991px) {
  .sobre-timeline__track {
    gap: 40px;
  }
  .sobre-timeline__track::before {
    left: 10px;
    translate: none;
  }
}
.sobre-timeline__item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 20px 1fr;
  grid-template-areas: "texto dot media";
  align-items: center;
  gap: 32px;
}
@media (max-width: 991px) {
  .sobre-timeline__item {
    grid-template-columns: 20px 1fr;
    grid-template-areas: "dot texto" ".   media";
    gap: 16px 20px;
  }
}
.sobre-timeline__item--invertido {
  grid-template-areas: "media dot texto";
}
@media (max-width: 991px) {
  .sobre-timeline__item--invertido {
    grid-template-areas: "dot texto" ".   media";
  }
}
.sobre-timeline__texto {
  grid-area: texto;
}
.sobre-timeline__item--normal .sobre-timeline__texto {
  text-align: right;
}
@media (max-width: 991px) {
  .sobre-timeline__item--normal .sobre-timeline__texto {
    text-align: left;
  }
}
.sobre-timeline__item--invertido .sobre-timeline__texto {
  text-align: left;
}
.sobre-timeline__ano {
  display: block;
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #F7E501;
  -webkit-text-stroke: 8px #000000;
  paint-order: stroke fill;
  line-height: 1;
  margin-bottom: 10px;
}
.sobre-timeline__desc {
  font-size: 0.9375rem;
  color: #7B7B7B;
  line-height: 1.6;
  margin: 0;
  max-width: 300px;
}
.sobre-timeline__desc p {
  color: inherit;
  margin: 0;
}
.sobre-timeline__item--normal .sobre-timeline__desc {
  margin-left: auto;
}
@media (max-width: 991px) {
  .sobre-timeline__item--normal .sobre-timeline__desc {
    margin-left: 0;
  }
}
.sobre-timeline__item:first-child::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -200px;
  bottom: 50%;
  width: 7px;
  background: #F7E501;
  translate: -50% 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .sobre-timeline__item:first-child::before {
    content: none;
  }
}
.sobre-timeline__item:last-child::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: -200px;
  width: 7px;
  background: #F7E501;
  translate: -50% 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .sobre-timeline__item:last-child::after {
    content: none;
  }
}
.sobre-timeline__dot {
  grid-area: dot;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #F7E501;
  border: 4px solid #000000;
  box-shadow: 0 0 0 4px rgba(247, 229, 1, 0.3);
  flex-shrink: 0;
  justify-self: center;
  align-self: center;
  z-index: 2;
}
.sobre-timeline__media {
  grid-area: media;
}
.sobre-timeline__img {
  width: 100%;
  max-width: 460px;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: block;
}
.sobre-timeline__item--normal .sobre-timeline__img {
  margin-right: auto;
}
.sobre-timeline__item--invertido .sobre-timeline__img {
  margin-left: auto;
}
@media (max-width: 991px) {
  .sobre-timeline__img {
    max-width: 100%;
    height: 180px;
  }
}
.sobre-timeline__img-placeholder {
  width: 100%;
  max-width: 360px;
  height: 220px;
  border-radius: 16px;
  background: #F0EEEE;
}
@media (max-width: 991px) {
  .sobre-timeline__img-placeholder {
    height: 140px;
  }
}

.banner-industria {
  position: relative;
  width: 100%;
  line-height: 0;
}
.banner-industria__video, .banner-industria__img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-industria__thumb-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.banner-industria__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.banner-industria__play svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: transform 0.2s ease;
}
.banner-industria__play:hover svg {
  transform: scale(1.1);
}
.banner-industria__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}
.banner-industria--fixed-height {
  height: clamp(280px, 50vw, 600px);
  overflow: hidden;
}
.banner-industria--fixed-height .banner-industria__video,
.banner-industria--fixed-height .banner-industria__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sobre-industria {
  position: relative;
  background: transparent;
  overflow: visible;
  padding: 80px 0 0;
  margin-bottom: -80px;
}
.sobre-industria::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 80px;
  background: #F7E501;
  z-index: 0;
}
.sobre-industria__header {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 48px;
}
.sobre-industria__title {
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #F7E501;
  -webkit-text-stroke: 8px #000000;
  paint-order: stroke fill;
  line-height: 1.1;
  margin-bottom: 14px;
}
.sobre-industria__subtitle {
  font-size: 0.9375rem;
  color: #000000;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}
.sobre-industria__subtitle strong {
  font-weight: 700;
}
.sobre-industria__grid-wrap {
  position: relative;
  z-index: 10;
  margin-bottom: -80px;
}
.sobre-industria__grid {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1.4fr 1.4fr;
  grid-template-rows: 280px 220px;
  gap: 10px;
}
@media (max-width: 991px) {
  .sobre-industria__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
    gap: 8px;
  }
}
.sobre-industria__cell {
  overflow: hidden;
  border-radius: 12px;
}
.sobre-industria__cell--1 {
  grid-column: 1;
  grid-row: 1/3;
}
@media (max-width: 991px) {
  .sobre-industria__cell--1 {
    grid-column: 1;
    grid-row: 1;
  }
}
.sobre-industria__cell--2 {
  grid-column: 2/4;
  grid-row: 1;
}
@media (max-width: 991px) {
  .sobre-industria__cell--2 {
    grid-column: 1/3;
    grid-row: 2;
  }
}
.sobre-industria__cell--3 {
  grid-column: 4;
  grid-row: 1;
}
@media (max-width: 991px) {
  .sobre-industria__cell--3 {
    grid-column: 2;
    grid-row: 1;
  }
}
.sobre-industria__cell--4 {
  grid-column: 2;
  grid-row: 2;
}
@media (max-width: 991px) {
  .sobre-industria__cell--4 {
    grid-column: 1;
    grid-row: 3;
  }
}
.sobre-industria__cell--5 {
  grid-column: 3/5;
  grid-row: 2;
}
@media (max-width: 991px) {
  .sobre-industria__cell--5 {
    grid-column: 2;
    grid-row: 3;
  }
}
.sobre-industria__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sobre-industria__cell:hover .sobre-industria__img {
  transform: scale(1.04);
}

.sobre-localizacao {
  position: relative;
  overflow: hidden;
  background: #FFFFFF url("../img/default/bg-timeline.png") center center/cover no-repeat;
  padding: 80px 0 100px;
  padding-top: 150px;
}
.sobre-localizacao__mascote {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: clamp(-20px, 2vw, 40px);
  width: clamp(216px, 26.4vw, 384px);
  pointer-events: none;
  z-index: 2;
}
.sobre-localizacao__mascote img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 991px) {
  .sobre-localizacao__mascote {
    display: none;
  }
}
.sobre-localizacao__pacotes {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(-20px, 2vw, 30px);
  width: clamp(240px, 30vw, 432px);
  pointer-events: none;
  z-index: 2;
}
.sobre-localizacao__pacotes img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 991px) {
  .sobre-localizacao__pacotes {
    display: none;
  }
}
.sobre-localizacao__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-left: clamp(0px, 24vw, 340px);
  padding-right: clamp(0px, 26vw, 380px);
}
@media (max-width: 991px) {
  .sobre-localizacao__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.sobre-localizacao__content {
  text-align: center;
}
.sobre-localizacao__title {
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F7E501;
  -webkit-text-stroke: 8px #000000;
  paint-order: stroke fill;
  line-height: 1.1;
  margin-bottom: 14px;
}
.sobre-localizacao__subtitle {
  font-size: 0.9375rem;
  color: #000000;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}
.sobre-localizacao__map {
  width: 100%;
  max-width: 560px;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}
.sobre-localizacao__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.sobre-localizacao__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #F7E501;
  color: #000000;
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 50px;
  border: 3px solid #000000;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}
.sobre-localizacao__btn svg {
  flex-shrink: 0;
}
.sobre-localizacao__btn:hover {
  background: #E5BD00;
  transform: translateY(-2px);
}

.produtos-main {
  background: url("../img/default/bg-produtos.png") center center/cover no-repeat;
  overflow: hidden;
  position: relative;
  padding-top: 50px;
}
.produtos-main__dec {
  position: absolute;
  width: clamp(300px, 30vw, 600px);
  pointer-events: none;
  opacity: 0;
  transform: scale(1.2);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 0;
}
.produtos-main__dec--milho-esq {
  width: 1300px;
  top: 0%;
  left: -30%;
  transform: scale(1.2) translateY(-50%);
  rotate: -10deg;
  z-index: 1;
}
@media (max-width: 991px) {
  .produtos-main__dec--milho-esq {
    width: 1000px;
    top: 0%;
    left: -20%;
    transform: scale(1.2) translateY(-50%);
    rotate: -10deg;
  }
}
.produtos-main__dec--milho-dir {
  width: 1400px;
  top: 100%;
  right: -20%;
  transform: scale(1.2) translateY(-50%);
  rotate: 10deg;
}
@media (max-width: 991px) {
  .produtos-main__dec--milho-dir {
    width: 1500px;
    top: 0%;
    left: -20%;
    transform: scale(1.2) translateY(-50%);
    rotate: -10deg;
  }
}
.produtos-main__dec--trigo-esq {
  width: 1000px;
  top: 80%;
  left: -20%;
  transform: scale(1.2) translateY(-50%);
  rotate: -10deg;
}
@media (max-width: 991px) {
  .produtos-main__dec--trigo-esq {
    width: 5000px;
    top: auto;
    left: -100px;
    bottom: -400px;
  }
}
.produtos-main__dec--trigo-dir {
  width: 1000px;
  top: 90%;
  right: -20%;
  transform: scale(1.2) translateY(-50%);
  rotate: 10deg;
}
@media (max-width: 991px) {
  .produtos-main__dec--trigo-dir {
    width: 3000px;
    top: 50px;
    right: -200px;
  }
}
.produtos-main__dec--batatas-esq {
  width: auto;
  height: 100%;
  top: 50%;
}
@media (max-width: 991px) {
  .produtos-main__dec--batatas-esq {
    width: 4000px;
    left: -1000px;
  }
}
.produtos-main__dec--batatas-dir {
  width: 250px;
  top: 50%;
  right: 40px;
}
@media (max-width: 991px) {
  .produtos-main__dec--batatas-dir {
    width: 1000px;
    right: -250px;
  }
}
.produtos-main__dec--visible {
  opacity: 1;
  transform: scale(1) translateY(-50%);
}
.produtos-main__filtro {
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 0 0;
}
.produtos-main__filtro-label {
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: 2.5rem;
  color: #F7E501;
  -webkit-text-stroke: 8px #000000;
  paint-order: stroke fill;
  letter-spacing: 0.05em;
  margin-right: 6px;
}
.produtos-main__filtro-btn {
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: #000000;
  background: #FFFFFF;
  border-radius: 50px;
  padding: 8px 24px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.produtos-main__filtro-btn:hover {
  background: #F7E501;
  transform: translateY(-2px);
}
.produtos-main__filtro-btn--ativo {
  background: #F7E501;
}
.produtos-main__slider {
  max-width: 100vw;
  position: relative;
  min-height: 480px;
}
.produtos-main__slide {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 0 80px;
}
.produtos-main__slide--ativo {
  display: flex;
}
@media (max-width: 991px) {
  .produtos-main__slide {
    flex-direction: column;
    padding: 32px 16px 80px;
    gap: 24px;
  }
}
.produtos-main__slide-img {
  width: 800px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.produtos-main__slide-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
  transition: transform 0.4s ease;
}
.produtos-main__slide--ativo .produtos-main__slide-img img {
  animation: pm-slide-in 0.5s ease forwards;
}
@media (max-width: 991px) {
  .produtos-main__slide-img {
    flex: unset;
    max-width: 100%;
  }
}
.produtos-main__slide-info {
  flex: 0 0 480px;
  width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
@media (max-width: 991px) {
  .produtos-main__slide-info {
    flex: unset;
    max-width: 100%;
  }
}
.produtos-main__slide-cat {
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #000000;
  opacity: 0.6;
  margin: 0;
}
.produtos-main__slide-nome {
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  color: #F7E501;
  -webkit-text-stroke: 4px #000000;
  paint-order: stroke fill;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin: 0;
}
.produtos-main__slide-desc {
  font-size: 0.9375rem;
  text-align: center;
  color: #000000;
  line-height: 1.6;
  margin: 0;
  max-width: 340px;
}
.produtos-main__slide-cta {
  display: inline-flex;
  align-items: center;
  align-self: center;
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #F7E501;
  -webkit-text-stroke: 2px #000000;
  paint-order: stroke fill;
  background: #FFFFFF;
  padding: 12px 28px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.produtos-main__slide-cta:hover {
  background: #162456;
  transform: translateY(-2px);
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .produtos-main__slide-cta {
    align-self: center;
  }
}
.produtos-main__nav {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}
.produtos-main__nav-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 5;
}
.produtos-main__nav-btn svg {
  width: 20px;
  height: 20px;
  color: #000000;
}
.produtos-main__nav-btn:hover {
  background: #F7E501;
  transform: scale(1.08);
}
@media (max-width: 991px) {
  .produtos-main__nav-btn {
    width: 36px;
    height: 36px;
  }
  .produtos-main__nav-btn svg {
    width: 16px;
    height: 16px;
  }
}
.produtos-main__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.produtos-main__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.produtos-main__dot--ativo {
  background: #000000;
  transform: scale(1.3);
}

@keyframes pm-slide-in {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.anatomia-wrapper {
  position: relative;
}

.anatomia {
  position: relative;
  height: 85vh;
  overflow: hidden;
  background: #0e0520;
}
.anatomia__bgs {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.anatomia__bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.75s ease;
}
.anatomia__bg--ativo {
  opacity: 1;
}
.anatomia__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.anatomia__topo {
  position: absolute;
  top: 15vh;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  padding: 0 16px;
  pointer-events: none;
}
@media (max-width: 991px) {
  .anatomia__topo {
    top: 200px;
  }
}
.anatomia__titulo {
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: clamp(1.2rem, 2.4vw, 2.9rem);
  color: #F7E501;
  letter-spacing: 0.06em;
  text-shadow: 2px 2px 0 #000000, -2px -2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000;
}
@media (max-width: 991px) {
  .anatomia__titulo {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }
}
.anatomia__stages {
  position: absolute;
  inset: 0;
  z-index: 5;
}
.anatomia__stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(10vh + 56px) 16px 32px;
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}
.anatomia__stage--ativo {
  opacity: 1;
  transform: translateY(0);
}
.anatomia__stage--from-below {
  opacity: 0;
  transform: translateY(72px);
  transition: none;
}
.anatomia__stage--from-above {
  opacity: 0;
  transform: translateY(-72px);
  transition: none;
}
.anatomia__stage--exit-up {
  opacity: 0;
  transform: translateY(-72px);
}
.anatomia__stage--exit-down {
  opacity: 0;
  transform: translateY(72px);
}
.anatomia__stage--last {
  justify-content: flex-start;
  align-items: flex-end;
}
.anatomia__stage--last .anatomia__produto {
  transform: translate(40%, 35%);
}
.anatomia__stage--last .anatomia__produto img {
  max-height: 1500px;
  max-width: min(80vw, 880px);
}
@media (max-width: 991px) {
  .anatomia__stage--last {
    justify-content: center;
    align-items: center;
  }
  .anatomia__stage--last .anatomia__produto {
    transform: none;
  }
}
@media (max-width: 991px) {
  .anatomia__stage {
    padding: 48px 16px 120px;
  }
}
.anatomia__produto {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.anatomia__produto img {
  max-height: 60vh;
  max-width: min(54vw, 520px);
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.65));
}
@media (max-width: 991px) {
  .anatomia__produto img {
    max-height: 42vh;
    max-width: 72vw;
  }
}
.anatomia__label {
  position: absolute;
  left: clamp(40px, 10vw, 160px);
  bottom: 45%;
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: clamp(1.68rem, 3.96vw, 4rem);
  color: #F7E501;
  line-height: 1.05;
  max-width: 430px;
  z-index: 6;
  pointer-events: none;
  text-shadow: 3px 3px 0 #000000, -1px -1px 0 #000000, 3px -1px 0 #000000, -1px 3px 0 #000000;
}
@media (max-width: 991px) {
  .anatomia__label {
    font-size: clamp(1.1rem, 4.5vw, 1.5rem);
    max-width: 44%;
    left: 12px;
    bottom: 24px;
    margin-bottom: 100px;
  }
}
.anatomia__desc {
  position: absolute;
  right: clamp(40px, 10vw, 160px);
  top: 50%;
  transform: translateY(-50%);
  max-width: 480px;
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 1.75;
  font-weight: 600;
  z-index: 6;
  pointer-events: none;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}
.anatomia__desc strong {
  font-weight: 800;
}
@media (max-width: 991px) {
  .anatomia__desc {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 44%;
    right: 12px;
    top: auto;
    bottom: 24px;
    margin-bottom: 100px;
    transform: none;
  }
}
.anatomia__progress {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: auto;
}
.anatomia__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.35s ease, transform 0.35s ease;
  cursor: pointer;
}
.anatomia__dot--ativo {
  background: #F7E501;
  transform: scale(1.55);
}

.sp {
  background: url("../img/default/logobg.png") center center no-repeat, #F0EEEE;
  position: relative;
  padding: 56px 0 0;
}
.sp__topo {
  text-align: center;
  margin-bottom: 40px;
}
.sp__nome {
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: #F7E501;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 2px 2px 0 #000000, -1px -1px 0 #000000, 2px -1px 0 #000000, -1px 2px 0 #000000;
}
.sp__desc {
  font-size: 0.9375rem;
  color: #000000;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.sp__galeria {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 991px) {
  .sp__galeria {
    flex-direction: column;
    gap: 12px;
  }
}
.sp__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .sp__thumbs {
    flex-direction: row;
    order: 2;
  }
}
.sp__thumb {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  padding: 4px 10px 4px 4px;
  text-align: left;
}
.sp__thumb img {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.sp__thumb--ativo {
  border-color: #F7E501;
  transform: scale(1.03);
  opacity: 1;
}
.sp__thumb:hover:not(.sp__thumb--ativo) {
  opacity: 0.75;
}
@media (max-width: 991px) {
  .sp__thumb {
    width: auto;
    padding: 4px;
  }
  .sp__thumb img {
    width: 54px;
    height: 54px;
  }
}
.sp__thumb-nome {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  white-space: normal;
}
@media (max-width: 991px) {
  .sp__thumb-nome {
    display: none;
  }
}
.sp__main-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  max-width: 520px;
}
@media (max-width: 991px) {
  .sp__main-wrap {
    max-width: 100%;
    order: 1;
  }
}
.sp__nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #000000;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.sp__nav svg {
  width: 18px;
  height: 18px;
}
.sp__nav:hover {
  background: #F7E501;
  border-color: #F7E501;
}
@media (max-width: 991px) {
  .sp__nav {
    width: 36px;
    height: 36px;
  }
}
.sp__main-img {
  position: relative;
  flex: 1;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  padding: 24px;
}
@media (max-width: 991px) {
  .sp__main-img {
    min-height: 240px;
  }
}
.sp__watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: clamp(4rem, 14vw, 10rem);
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.sp__img {
  position: absolute;
  max-height: 88%;
  max-width: 88%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}
.sp__img--ativo {
  opacity: 1;
  position: relative;
}
.sp__abas {
  border: 2px solid #F7E501;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-bottom: -72px;
}
.sp__aba-nav {
  display: flex;
  border-bottom: 2px solid #F7E501;
}
@media (max-width: 991px) {
  .sp__aba-nav {
    flex-wrap: wrap;
  }
}
.sp__aba-btn {
  flex: 1;
  padding: 14px 16px;
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: clamp(0.75rem, 1.4vw, 1rem);
  letter-spacing: 0.04em;
  color: #F7E501;
  -webkit-text-stroke: 4px #000000;
  paint-order: stroke fill;
  background: transparent;
  border: none;
  border-right: 2px solid #F7E501;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1.2;
}
.sp__aba-btn:last-child {
  border-right: none;
}
.sp__aba-btn--ativo {
  background: #F7E501;
  color: #F7E501;
}
.sp__aba-btn:hover:not(.sp__aba-btn--ativo) {
  background: rgba(247, 229, 1, 0.1);
}
@media (max-width: 991px) {
  .sp__aba-btn {
    flex: 1 1 50%;
    border-bottom: 2px solid #F7E501;
  }
  .sp__aba-btn:nth-child(3) {
    flex: 1 1 100%;
  }
}
.sp__aba-sub {
  display: block;
  font-size: 0.7em;
  text-transform: none;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0.8;
}
.sp__aba-body {
  background: #FFFFFF;
}
.sp__aba-panel {
  display: none;
  padding: 28px 32px;
}
.sp__aba-panel--ativo {
  display: block;
}
@media (max-width: 991px) {
  .sp__aba-panel {
    padding: 20px 16px;
  }
}
.sp__ficha-lista {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9375rem;
  color: #000000;
  line-height: 1.6;
}
.sp__ficha-lista strong {
  font-weight: 700;
}
.sp__vazio {
  font-size: 0.9rem;
  color: #666666;
  font-style: italic;
}

.sp-outros {
  position: relative;
  background: url("../img/default/bgamarelo.png") center center/cover no-repeat;
  padding: 0 0 80px;
  overflow: hidden;
}
.sp-outros__dec {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0.75;
  z-index: 0;
}
.sp-outros__dec--tl {
  top: 80px;
  left: -40px;
  width: clamp(80px, 10vw, 140px);
  transform: rotate(-25deg);
}
.sp-outros__dec--tr {
  top: 60px;
  right: -20px;
  width: clamp(80px, 9vw, 120px);
  transform: rotate(18deg);
}
.sp-outros__dec--bl {
  bottom: 40px;
  left: 20px;
  width: clamp(60px, 7vw, 100px);
  transform: rotate(12deg);
}
.sp-outros__dec--br {
  bottom: 30px;
  right: -10px;
  width: clamp(70px, 8vw, 110px);
  transform: rotate(-15deg);
}
@media (max-width: 991px) {
  .sp-outros__dec {
    display: none;
  }
}
.sp-outros__abas-clearance {
  height: 96px;
}
.sp-outros__titulo {
  position: relative;
  z-index: 1;
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  text-align: center;
  color: #F7E501;
  -webkit-text-stroke: 7px #000000;
  paint-order: stroke fill;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}
.sp-outros__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .sp-outros__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.sp-outros__vazio {
  grid-column: 1/-1;
  text-align: center;
  font-size: 0.9rem;
  color: #000000;
  opacity: 0.6;
}

.sp-orcamento {
  position: relative;
  background: url("../img/default/bg-gondolas.png") center center/cover no-repeat;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.sp-orcamento__dec {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.sp-orcamento__dec--left {
  left: 30px;
  top: 50%;
  width: 160px;
  z-index: 2;
  opacity: 0;
  transform: translateY(-50%) translateX(-70px) scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
@media (max-width: 991px) {
  .sp-orcamento__dec--left {
    display: none;
  }
}
.sp-orcamento::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 36, 86, 0.62);
  z-index: 0;
}
.sp-orcamento .container {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
}
.sp-orcamento__inner {
  display: flex;
  align-items: center;
  padding: 56px 0 64px;
  max-width: 540px;
}
.sp-orcamento__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sp-orcamento__titulo {
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  color: #F7E501;
  line-height: 1.1;
  -webkit-text-stroke: 5px #000000;
  paint-order: stroke fill;
}
@media (max-width: 991px) {
  .sp-orcamento__titulo {
    font-size: 1.55rem;
  }
}
.sp-orcamento__subtitulo {
  font-size: 0.9375rem;
  color: #FFFFFF;
  line-height: 1.65;
  max-width: 400px;
}
.sp-orcamento__cta {
  display: inline-block;
  align-self: flex-start;
  background-color: #FFFFFF;
  padding: 11px 28px;
  color: #F7E501;
  -webkit-text-stroke: 2px #000000;
  paint-order: stroke fill;
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.sp-orcamento__cta:hover {
  background: #F7E501;
  color: #FFFFFF;
}
.sp-orcamento__scroll-hint {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-bottom: 16px;
}
.sp-orcamento__scroll-hint svg {
  width: 28px;
  height: 28px;
  stroke: #FFFFFF;
  opacity: 0.55;
  animation: sp-bounce 1.6s ease-in-out infinite;
}
.sp-orcamento.is-visible .sp-orcamento__dec--left {
  opacity: 1;
  transform: translateY(-50%) translateX(0) scale(1);
}

@keyframes sp-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
.loc-encontre {
  position: relative;
  background: url("../img/default/bg-encontre.png");
  padding: 64px 0 80px;
  overflow: hidden;
}
.loc-encontre__dec {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.loc-encontre__dec--bl {
  bottom: -10px;
  left: 20px;
  width: clamp(80px, 10vw, 240px);
  transform: translateY(50px) rotate(90deg);
  transition-delay: 0.3s;
}
.loc-encontre__dec--bm {
  bottom: 0;
  left: 10%;
  width: clamp(60px, 7vw, 100px);
  transform: translateY(50px) rotate(-90deg);
  transition-delay: 0.5s;
}
@media (max-width: 991px) {
  .loc-encontre__dec {
    display: none;
  }
}
.loc-encontre__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 991px) {
  .loc-encontre__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.loc-encontre__filtro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.loc-encontre__titulo {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: #F7E501;
  text-transform: uppercase;
  line-height: 1.1;
  -webkit-text-stroke: 5px #000000;
  paint-order: stroke fill;
}
.loc-encontre__campo {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.loc-encontre__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
}
.loc-encontre__select-wrap {
  position: relative;
}
.loc-encontre__select {
  width: 100%;
  padding: 10px 36px 10px 12px;
  border: 1.5px solid rgb(211.3125, 205.4875, 205.4875);
  border-radius: 6px;
  background: #FFFFFF;
  font-size: 0.9375rem;
  color: #000000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.loc-encontre__select:focus {
  outline: 2px solid #F7E501;
  border-color: #F7E501;
}
.loc-encontre__chevron {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
  stroke: #000000;
}
.loc-encontre__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: #F7E501;
  color: #000000;
  border: none;
  border-radius: 6px;
  font-family: "Luckiest Guy", cursive;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.loc-encontre__btn svg {
  width: 17px;
  height: 17px;
}
.loc-encontre__btn:hover {
  background: rgb(196.2056451613, 181.9072580645, 0.7943548387);
  transform: translateY(-1px);
}
.loc-encontre__resultados {
  max-width: 800px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}
.loc-encontre__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 991px) {
  .loc-encontre__cards {
    grid-template-columns: 1fr;
  }
}
.loc-encontre__card {
  background: #FFFFFF;
  border: 1.5px solid rgb(220.875, 216.325, 216.325);
  border-radius: 10px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  border-bottom: 3px solid #F7E501;
}
.loc-encontre__card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.loc-encontre__card-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.loc-encontre__card-logo {
  width: 72px;
  height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
  border: 1.5px solid #F7E501;
  padding: 8px;
  background: #FFFFFF;
}
.loc-encontre__card-nome {
  font-weight: 700;
  font-size: 1rem;
  color: #000000;
  line-height: 1.3;
  text-align: center;
}
.loc-encontre__card-cidade {
  font-size: 0.8125rem;
  color: #7B5EA7;
  text-align: center;
  margin-top: 2px;
}
.loc-encontre__card-end {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8125rem;
  line-height: 1.55;
}
.loc-encontre__card-end svg {
  width: 16px;
  height: 16px;
  fill: #F7E501;
  flex-shrink: 0;
  margin-top: 2px;
}
.loc-encontre__card-end-label {
  display: block;
  font-weight: 700;
  color: #000000;
}
.loc-encontre__card-end-text {
  color: #000000;
  font-weight: 600;
}
.loc-encontre__vazio {
  grid-column: 1/-1;
  text-align: center;
  color: rgb(89.25, 89.25, 89.25);
  font-size: 0.9rem;
  padding: 32px 0;
}
.loc-encontre__paginacao {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.loc-encontre__pg-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #000000;
  background: #000000;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.loc-encontre__pg-btn svg {
  width: 17px;
  height: 17px;
}
.loc-encontre__pg-btn:hover:not(:disabled) {
  background: #F7E501;
  border-color: #F7E501;
  color: #000000;
}
.loc-encontre__pg-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.loc-encontre.is-visible .loc-encontre__filtro,
.loc-encontre.is-visible .loc-encontre__resultados {
  opacity: 1;
  transform: none;
}
.loc-encontre.is-visible .loc-encontre__dec--bl {
  opacity: 1;
  transform: translateY(0) rotate(90deg);
}
.loc-encontre.is-visible .loc-encontre__dec--bm {
  opacity: 1;
  transform: translateY(0) rotate(-90deg);
}

.loc-form {
  position: relative;
  background: url("../img/default/bg-encontre.png") center center/cover no-repeat;
  padding: 0 0 80px;
  overflow: hidden;
}
.loc-form__topo {
  text-align: center;
  padding: 22px 16px;
  margin-bottom: 56px;
}
.loc-form__titulo {
  font-family: "Luckiest Guy", cursive;
  font-weight: 200;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: #F7E501;
  -webkit-text-stroke: 4px #000000;
  paint-order: stroke fill;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}
.loc-form__dec {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.loc-form__dec--bl {
  bottom: 0;
  left: -10px;
  width: clamp(70px, 8vw, 110px);
  transform: translateY(40px) rotate(20deg);
  transition-delay: 0.2s;
}
.loc-form__dec--br {
  bottom: 0;
  right: 100px;
  width: clamp(260px, 7vw, 300px);
  transform: translateY(40px) rotate(-15deg);
  transition-delay: 0.35s;
}
.loc-form__dec--bc {
  bottom: 20px;
  left: 8%;
  width: clamp(40px, 5vw, 70px);
  transform: translateY(40px);
  transition-delay: 0.5s;
}
@media (max-width: 991px) {
  .loc-form__dec {
    display: none;
  }
}
.loc-form__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 991px) {
  .loc-form__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.loc-form__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #FFFFFF;
  padding: 30px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.loc-form__col-form {
  border-bottom: 4px solid #F7E501;
  transition-delay: 0.15s;
}
.loc-form__col-canais {
  border-bottom: 4px solid #F7E501;
  transition-delay: 0.3s;
}
.loc-form__col-titulo {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  text-transform: capitalize;
  color: #162456;
}
.loc-form__col-desc {
  font-size: 0.9rem;
  color: #162456;
  line-height: 1.6;
}
.loc-form__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.loc-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 991px) {
  .loc-form__row {
    grid-template-columns: 1fr;
  }
}
.loc-form__input, .loc-form__textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgb(206.53125, 200.06875, 200.06875);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #162456;
  background: #FFFFFF;
  transition: border-color 0.2s ease;
}
.loc-form__input::-moz-placeholder, .loc-form__textarea::-moz-placeholder {
  color: rgb(114.75, 114.75, 114.75);
}
.loc-form__input::placeholder, .loc-form__textarea::placeholder {
  color: rgb(114.75, 114.75, 114.75);
}
.loc-form__input:focus, .loc-form__textarea:focus {
  outline: none;
  border-color: #F7E501;
}
.loc-form__textarea {
  resize: vertical;
  min-height: 120px;
}
.loc-form__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}
.loc-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #F7E501;
  color: #162456;
  border: none;
  border-radius: 6px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.loc-form__btn svg {
  width: 16px;
  height: 16px;
}
.loc-form__btn:hover {
  background: rgb(196.2056451613, 181.9072580645, 0.7943548387);
  transform: translateY(-1px);
}
.loc-form__grupo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid #F0EEEE;
}
.loc-form__grupo:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.loc-form__grupo-titulo {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  font-weight: 700;
  color: #162456;
}
.loc-form__lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.loc-form__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.55;
}
.loc-form__item-icon {
  width: 32px;
  height: 32px;
  border: 1.5px solid #162456;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #162456;
}
.loc-form__item-icon svg {
  width: 15px;
  height: 15px;
}
.loc-form__item-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: #162456;
}
.loc-form__item-link {
  display: block;
  color: #162456;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}
.loc-form__item-link:hover {
  text-decoration: underline;
  color: rgb(145.4112903226, 134.814516129, 0.5887096774);
}
.loc-form__item-text {
  color: #162456;
  font-size: 1rem;
  font-weight: 700;
}
.loc-form__item-text--assunto {
  margin-top: 2px;
  font-size: 0.8rem;
  font-weight: 400;
}
.loc-form.is-visible .loc-form__titulo {
  opacity: 1;
  transform: none;
}
.loc-form.is-visible .loc-form__dec--bl,
.loc-form.is-visible .loc-form__dec--br,
.loc-form.is-visible .loc-form__dec--bc {
  opacity: 1;
  transform: translateY(0) rotate(var(--r, 0deg));
}
.loc-form.is-visible .loc-form__dec--bl {
  --r: 20deg;
}
.loc-form.is-visible .loc-form__dec--br {
  --r: -15deg;
}
.loc-form.is-visible .loc-form__col {
  opacity: 1;
  transform: none;
}

.contato-main {
  position: relative;
  overflow: hidden;
  background: url("../img/default/bg-encontre.png");
}
.contato-main__dec {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
@media (max-width: 991px) {
  .contato-main__dec {
    display: none;
  }
}
.contato-main__dec--animate {
  opacity: 1;
  transform: translateY(0);
}
.contato-main__dec--tl1 {
  width: 220px;
  top: 2%;
  left: -15px;
  rotate: -6deg;
  transition-delay: 0s;
}
.contato-main__dec--tl2 {
  width: 180px;
  top: 10%;
  left: 60px;
  rotate: 110deg;
  transition-delay: 0.15s;
}
.contato-main__dec--bl1 {
  width: 200px;
  bottom: 30px;
  left: -10px;
  rotate: -12deg;
  transition-delay: 0.05s;
}
.contato-main__dec--br1 {
  width: 190px;
  bottom: 60px;
  right: 40px;
  rotate: 8deg;
  transition-delay: 0.1s;
}
.contato-main__dec--br2 {
  width: 160px;
  bottom: 160px;
  right: 130px;
  rotate: -10deg;
  transition-delay: 0.2s;
}
.contato-main__hero {
  padding: 48px 0;
  padding-top: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contato-main__hero-title {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(1.2rem, 3vw, 2rem);
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 5px #000000;
  paint-order: stroke fill;
  line-height: 1.15;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
.contato-main__hero-title p, .contato-main__hero-title h1, .contato-main__hero-title h2, .contato-main__hero-title h3, .contato-main__hero-title h4, .contato-main__hero-title h5, .contato-main__hero-title h6, .contato-main__hero-title span, .contato-main__hero-title strong, .contato-main__hero-title em {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: inherit;
  color: inherit;
  -webkit-text-stroke: inherit;
  paint-order: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  margin: 0;
  padding: 0;
}
.contato-main__hero-title p + p {
  margin-top: 0.3em;
}
.contato-main__layout {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 56px;
  padding: 56px 0 80px;
  align-items: start;
}
@media (max-width: 991px) {
  .contato-main__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contato-main__form-col {
  background-color: #FFFFFF;
  border-bottom: 5px solid #F7E501;
  padding: 40px;
}
.contato-main__canais-col {
  background-color: #FFFFFF;
  border-bottom: 5px solid #F7E501;
  padding: 40px;
}
.contato-main__col-title {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  text-transform: uppercase;
  color: #162456;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}
.contato-main__col-subtitle {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  max-width: 80%;
  font-size: 1.1rem;
  color: #162456;
  line-height: 1.6;
  margin: 0 0 28px;
}
.contato-main__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contato-main__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 575px) {
  .contato-main__row {
    grid-template-columns: 1fr;
  }
}
.contato-main__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contato-main__label {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #162456;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contato-main__input {
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid #B4B4B4;
  border-radius: 6px;
  padding: 10px 14px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.88rem;
  color: #171717;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contato-main__input::-moz-placeholder {
  color: #7B7B7B;
}
.contato-main__input::placeholder {
  color: #7B7B7B;
}
.contato-main__input:focus {
  border-color: #F7E501;
  box-shadow: 0 0 0 3px rgba(247, 229, 1, 0.18);
}
.contato-main__textarea {
  resize: vertical;
  min-height: 130px;
}
.contato-main__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: #F7E501;
  color: #000000;
  font-family: "Luckiest Guy", cursive;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s;
}
.contato-main__btn:hover {
  background: #E5BD00;
  transform: translateY(-2px);
}
.contato-main__canais {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contato-main__canal-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contato-main__canal-group-title {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #162456;
  margin: 0;
}
.contato-main__canal-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.1rem;
  color: #162456;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}
.contato-main__canal-item[href]:hover {
  color: #599AA8;
}
.contato-main__canal-info {
  display: flex;
  flex-direction: column;
}
.contato-main__canal-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7B7B7B;
  line-height: 1.2;
  margin-bottom: 1px;
}
.contato-main__canal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #000000;
  border: 2px solid #000000;
  font-size: 0.75rem;
  margin-top: 2px;
}
.contato-main__canal-icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.contato-main__canal-hint {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  color: #162456;
  margin: 0;
  padding-left: 44px;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.blog-sidebar__widget {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 24px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.blog-sidebar__widget-title {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #000000;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #F7E501;
}
.blog-sidebar__categories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.blog-sidebar__cat-item {
  border-bottom: 1px solid #F0EEEE;
}
.blog-sidebar__cat-item:last-child {
  border-bottom: none;
}
.blog-sidebar__cat-link {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  text-decoration: none;
  transition: padding-left 0.2s;
}
.blog-sidebar__cat-link strong {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-sidebar__cat-link span {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.72rem;
  color: #7B7B7B;
  line-height: 1.4;
  margin-top: 2px;
}
.blog-sidebar__cat-link:hover {
  padding-left: 6px;
}
.blog-sidebar__cat-link:hover strong {
  color: #E5BD00;
}
.blog-sidebar__novelty-label {
  display: block;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #7B7B7B;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.blog-sidebar__carousel {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}
.blog-sidebar__carousel-item img {
  display: block;
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-sidebar__carousel-caption {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8rem;
  color: #162456;
  font-weight: 600;
  margin: 8px 0 4px;
}
.blog-sidebar__thumb-link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}
.blog-sidebar__thumb {
  display: block;
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.blog-sidebar__thumb:hover {
  transform: scale(1.03);
}
.blog-sidebar__read-link {
  margin-bottom: 20px;
  padding-left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s, gap 0.2s;
}
.blog-sidebar__read-link:hover {
  color: #E5BD00;
  gap: 8px;
}

.blog-intro {
  position: relative;
  overflow: hidden;
  background-color: #F0EEEE;
  padding: 36px 0 32px;
  text-align: center;
}
.blog-intro__title {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 6px #000000;
  paint-order: stroke fill;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.blog-intro__text {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #171717;
  line-height: 1.6;
  margin: 0;
}
.blog-intro__link {
  color: #599AA8;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-intro__link:hover {
  color: #10404B;
}

.blog-main {
  position: relative;
  overflow: hidden;
  background-color: #F0EEEE;
  padding: 56px 0 80px;
}
.blog-main__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 991px) {
  .blog-main__layout {
    grid-template-columns: 1fr;
  }
}
.blog-main__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-featured {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.22s, box-shadow 0.22s;
}
.blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.13);
}
.blog-featured__img-link {
  position: relative;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-featured__img {
  display: block;
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s;
}
.blog-featured:hover .blog-featured__img {
  transform: scale(1.04);
}
.blog-featured__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #F7E501;
  color: #000000;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
}
.blog-featured__body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.blog-featured__title {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
}
.blog-featured__title a {
  color: #F7E501;
  -webkit-text-stroke: 4px #000000;
  paint-order: stroke fill;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-featured__title a:hover {
  color: #162456;
  -webkit-text-stroke: 4px #F7E501;
  paint-order: stroke fill;
}
.blog-featured__text {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  color: #7B7B7B;
  line-height: 1.6;
  margin: 0;
}
.blog-featured__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s, gap 0.2s;
}
.blog-featured__link:hover {
  color: #E5BD00;
  gap: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 575px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.22s, box-shadow 0.22s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
}
.blog-card__img-link {
  position: relative;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card__img {
  display: block;
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s;
}
.blog-card:hover .blog-card__img {
  transform: scale(1.04);
}
.blog-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #F7E501;
  color: #000000;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
}
.blog-card__body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}
.blog-card__title {
  font-family: "Luckiest Guy", cursive;
  font-size: 1rem;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0;
}
.blog-card__title a {
  color: #F7E501;
  -webkit-text-stroke: 4px #000000;
  paint-order: stroke fill;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card__title a:hover {
  color: #162456;
  -webkit-text-stroke: 4px #F7E501;
  paint-order: stroke fill;
}
.blog-card__text {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8rem;
  color: #7B7B7B;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
  transition: color 0.2s, gap 0.2s;
}
.blog-card__link:hover {
  color: #E5BD00;
  gap: 8px;
}

.blog-post {
  position: relative;
  overflow: hidden;
  background-color: #F0EEEE;
  padding: 56px 0 80px;
}
.blog-post__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 991px) {
  .blog-post__layout {
    grid-template-columns: 1fr;
  }
}
.blog-post__article {
  padding-bottom: 60px;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.blog-post__header {
  padding: 32px 36px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-post__badge {
  display: inline-block;
  background: #F7E501;
  color: #000000;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  align-self: flex-start;
}
.blog-post__title {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: #162456;
  margin: 0;
  letter-spacing: 0.02em;
}
.blog-post__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.78rem;
  color: #7B7B7B;
}
.blog-post__meta-sep {
  color: #B4B4B4;
}
.blog-post__cover {
  margin: 24px 0 0;
  padding: 0;
  line-height: 0;
}
.blog-post__cover-img {
  display: block;
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .blog-post__cover-img {
    height: 240px;
  }
}
.blog-post__body {
  padding: 36px 36px 0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  color: #162456;
  line-height: 1.6;
}
.blog-post__body p {
  margin: 0 0 20px;
}
.blog-post__body ul {
  margin: 0 0 20px;
  padding-left: 22px;
}
.blog-post__body li {
  margin-bottom: 8px;
}
.blog-post__body h2 {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #162456;
  margin: 32px 0 14px;
}
.blog-post__quote {
  border-left: 4px solid #F7E501;
  margin: 28px 0;
  padding: 12px 20px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  color: #162456;
  background: #FFF0A0;
  border-radius: 0 6px 6px 0;
}
.blog-post__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 36px 36px;
  margin-top: 8px;
  border-top: 1px solid #F0EEEE;
}
.blog-post__footer-label {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7B7B7B;
}
.blog-post__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.blog-post__share-btn:hover {
  opacity: 0.85;
  transform: scale(1.1);
}
.blog-post__share-btn--whatsapp {
  background: #2FB54D;
  color: #FFFFFF;
}
.blog-post__share-btn--facebook {
  background: #1877F2;
  color: #FFFFFF;
}

.dist-vant {
  position: relative;
  background: url("../img/default/logobg.png") center center no-repeat;
  padding: 60px 0 0;
  overflow: hidden;
}
.dist-vant__dec {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1;
  opacity: 0;
  transform: translateX(-70px) rotate(90deg) scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.dist-vant__dec--left {
  left: -12px;
  top: 50%;
  width: 200px;
}
@media (max-width: 991px) {
  .dist-vant__dec {
    display: none;
  }
}
.dist-vant__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
@media (max-width: 991px) {
  .dist-vant__layout {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
}
.dist-vant__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}
@media (max-width: 991px) {
  .dist-vant__content {
    max-width: 100%;
  }
}
.dist-vant__titulo {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 5px #000000;
  paint-order: stroke fill;
  line-height: 1.1;
}
.dist-vant__titulo p {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
}
.dist-vant__desc {
  font-size: clamp(0.85rem, 1.1vw, 0.9375rem);
  color: #162456;
  line-height: 1.7;
}
.dist-vant__desc p {
  color: inherit;
  margin: 0;
}
.dist-vant__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: transparent;
  color: #F7E501;
  font-family: "Luckiest Guy", cursive;
  -webkit-text-stroke: 4px #000000;
  paint-order: stroke fill;
  box-shadow: 1px 4px 18px #000000;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 4px;
  align-self: flex-start;
  transition: background 0.2s ease, color 0.2s ease;
}
.dist-vant__cta:hover {
  background: #F7E501;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .dist-vant__cta {
    align-self: center;
  }
}
.dist-vant__mapa-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}
@media (max-width: 991px) {
  .dist-vant__mapa-wrap {
    display: none;
  }
}
.dist-vant__mapa {
  width: clamp(700px, 22vw, 180px);
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.4));
}
.dist-vant__produtos-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: -20px;
  margin-bottom: 60px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}
@media (max-width: 991px) {
  .dist-vant__produtos-wrap {
    margin-top: 50px;
  }
}
.dist-vant__produtos {
  width: clamp(320px, 55%, 760px);
  height: auto;
  display: block;
}
.dist-vant__faixa {
  background: linear-gradient(to right, #162456 0%, #304FBC 100%);
  padding: 32px 0 40px;
  margin-top: 0;
}
.dist-vant__faixa-titulo {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(1.2rem, 2vw, 2rem);
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 6px #000000;
  paint-order: stroke fill;
  text-align: center;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0s;
}
.dist-vant__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 991px) {
  .dist-vant__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.dist-vant__card {
  border: 1.5px solid #F7E501;
  border-radius: 8px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.dist-vant__card:nth-child(1) {
  transition-delay: 0s;
}
.dist-vant__card:nth-child(2) {
  transition-delay: 0.1s;
}
.dist-vant__card:nth-child(3) {
  transition-delay: 0.2s;
}
.dist-vant__card:nth-child(4) {
  transition-delay: 0.3s;
}
.dist-vant__card:nth-child(5) {
  transition-delay: 0.4s;
}
.dist-vant__card:nth-child(6) {
  transition-delay: 0.5s;
}
.dist-vant__card:nth-child(7) {
  transition-delay: 0.6s;
}
.dist-vant__card:nth-child(8) {
  transition-delay: 0.7s;
}
.dist-vant__card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  color: #F7E501;
}
.dist-vant__card-icon svg {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
}
.dist-vant__card-titulo {
  font-family: "Luckiest Guy", cursive;
  font-size: 1.2rem;
  text-transform: uppercase;
  -webkit-text-stroke: 4px #000000;
  paint-order: stroke fill;
  color: #F7E501;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.dist-vant__card-desc {
  font-size: 1rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.6;
}
.dist-vant.is-visible .dist-vant__dec--left {
  opacity: 1;
  transform: translateX(0) rotate(90deg) scale(1);
}
.dist-vant.is-visible .dist-vant__content,
.dist-vant.is-visible .dist-vant__mapa-wrap,
.dist-vant.is-visible .dist-vant__produtos-wrap {
  opacity: 1;
  transform: none;
}
.dist-vant.is-visible .dist-vant__faixa-titulo {
  opacity: 1;
  transform: none;
}
.dist-vant.is-visible .dist-vant__card {
  opacity: 1;
  transform: none;
}

.dist-distr {
  position: relative;
  background: #F0EEEE url("../img/default/bg-distribuidor.png") center/cover no-repeat;
}
.dist-distr__principal {
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .dist-distr__principal {
    padding: 40px 0 32px;
  }
}
.dist-distr__titulo {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 5px #000000;
  paint-order: stroke fill;
  text-align: center;
  margin-bottom: 40px;
}
.dist-distr__layout {
  display: grid;
  grid-template-columns: 300px auto auto;
  gap: 48px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .dist-distr__layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.dist-distr__tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 991px) {
  .dist-distr__tabs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.dist-distr__tab {
  text-align: center;
  padding: 12px 16px;
  border: 1.5px solid rgb(204.140625, 197.359375, 197.359375);
  border-radius: 6px;
  background: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.dist-distr__tab--ativo {
  background: #F7E501;
  border-color: #F7E501;
  color: #000000;
}
.dist-distr__tab:hover:not(.dist-distr__tab--ativo) {
  border-color: #F7E501;
}
.dist-distr__painel {
  position: relative;
  min-height: 100px;
  width: 400px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .dist-distr__painel {
    width: 100%;
  }
}
.dist-distr__panel {
  display: none;
  font-size: 0.9375rem;
  color: #000000;
  font-weight: 600;
  line-height: 1.75;
  padding-top: 8px;
  text-align: center;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}
.dist-distr__panel strong {
  color: #F7E501;
  font-weight: 700;
}
.dist-distr__panel--ativo {
  display: block;
}
@media (max-width: 991px) {
  .dist-distr__foto-wrap {
    display: none;
  }
}
.dist-distr__foto {
  width: clamp(200px, 24vw, 320px);
  height: auto;
  border-radius: 8px;
  display: none;
}
.dist-distr__foto--ativa {
  display: block;
}
.dist-distr__redes {
  padding: 48px 0 0;
  position: relative;
  overflow: hidden;
}
.dist-distr__redes-dec {
  position: absolute;
  bottom: 0;
  left: -10px;
  width: clamp(70px, 8vw, 110px);
  transform: rotate(10deg);
  opacity: 0.7;
  pointer-events: none;
}
@media (max-width: 991px) {
  .dist-distr__redes-dec {
    display: none;
  }
}
.dist-distr__redes-titulo {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 4px #000000;
  paint-order: stroke fill;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 36px;
}
.dist-distr__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  min-height: 80px;
}
.dist-distr__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dist-distr__logo-item img {
  height: 48px;
  max-width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(40%);
  transition: filter 0.2s ease;
}
.dist-distr__logo-item img:hover {
  filter: none;
}
.dist-distr__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.dist-distr__dot {
  width: 28px;
  height: 6px;
  border-radius: 3px;
  border: none;
  background: rgb(204.140625, 197.359375, 197.359375);
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}
.dist-distr__dot--ativo {
  background: #F7E501;
  width: 40px;
}
.dist-distr__cta-wrap {
  display: flex;
  justify-content: center;
  padding: 32px 0 48px;
}
.dist-distr__cta {
  display: inline-block;
  font-family: "Luckiest Guy", cursive;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F7E501;
  background: #FFFFFF;
  -webkit-text-stroke: 2px #000000;
  paint-order: stroke fill;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  padding: 10px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.dist-distr__cta:hover, .dist-distr__cta:focus-visible {
  background: #000000;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .dist-distr__cta {
    font-size: 1.4rem;
    padding: 10px 24px;
  }
}

.dist-contato {
  position: relative;
  padding-bottom: 60px;
  background: linear-gradient(to right, #304FBC 0%, #162456 100%);
  overflow: visible;
}
.dist-contato__bg {
  position: absolute;
  inset: 0;
  background: url("../img/default/logobg.png") center center/auto 90% no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
.dist-contato__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: end;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 0;
  overflow: visible;
}
@media (max-width: 991px) {
  .dist-contato__inner {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }
}
.dist-contato__form-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dist-contato__titulo {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 5px #000000;
  paint-order: stroke fill;
  line-height: 1.1;
  margin: 0;
}
.dist-contato__subtitulo {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}
.dist-contato__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dist-contato__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 991px) {
  .dist-contato__row {
    grid-template-columns: 1fr;
  }
}
.dist-contato__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dist-contato__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}
.dist-contato__input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}
.dist-contato__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.dist-contato__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.dist-contato__input:focus {
  border-color: #F7E501;
  background: rgba(255, 255, 255, 0.12);
}
.dist-contato__input--textarea {
  resize: vertical;
  min-height: 80px;
}
.dist-contato__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  padding: 14px 32px;
  background: #F7E501;
  color: #000000;
  font-family: "Luckiest Guy", cursive;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.dist-contato__submit svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.dist-contato__submit:hover {
  background: #E5BD00;
  transform: translateY(-1px);
}
.dist-contato__mascote-wrap {
  position: relative;
}
@media (max-width: 991px) {
  .dist-contato__mascote-wrap {
    display: none;
  }
}
.dist-contato__mascote {
  overflow: visible;
  display: block;
  width: auto;
  height: 724px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(-8px 0 24px rgba(0, 0, 0, 0.5));
  z-index: 10;
  pointer-events: none;
}

.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 80px 0;
  background-color: #fff;
}
.error-404__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}
.error-404__image {
  width: 100%;
  max-width: 420px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.error-404__title {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #000000;
  margin: 0;
}
.error-404__text {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  color: #000000;
  opacity: 0.75;
  line-height: 1.6;
  margin: 0;
}
.error-404__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background-color: #F7E501;
  color: #000000;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.error-404__btn:hover {
  background-color: #E5BD00;
  color: #000000;
  text-decoration: none;
}

.legal-page {
  padding-top: 64px;
  padding-bottom: 80px;
}
.legal-page__body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #171717;
}
.legal-page__body h1, .legal-page__body h2, .legal-page__body h3, .legal-page__body h4 {
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-weight: 700;
  color: #000000;
}
.legal-page__body h2 {
  font-size: 1.4rem;
}
.legal-page__body h3 {
  font-size: 1.15rem;
}
.legal-page__body p {
  margin-bottom: 1.2em;
}
.legal-page__body ul, .legal-page__body ol {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}
.legal-page__body ul li, .legal-page__body ol li {
  margin-bottom: 0.4em;
}
.legal-page__body a {
  color: #10404B;
  text-decoration: underline;
}
.legal-page__body a:hover {
  color: #0B5362;
}
.legal-page__body strong {
  font-weight: 700;
}

.formulario-enviado {
  padding: 80px 0 100px;
  background: #FFFFFF;
}
.formulario-enviado__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.formulario-enviado__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #F7E501;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.formulario-enviado__icon svg {
  width: 40px;
  height: 40px;
  color: #000000;
}
.formulario-enviado__titulo {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  color: #F7E501;
  -webkit-text-stroke: 4px #000000;
  paint-order: stroke fill;
  line-height: 1.1;
  margin: 0;
}
.formulario-enviado__texto {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.1rem;
  color: #162456;
  line-height: 1.7;
  max-width: 540px;
  margin: 0;
}
.formulario-enviado__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Luckiest Guy", cursive;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000000;
  background: #F7E501;
  padding: 12px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.18s;
  margin-top: 8px;
}
.formulario-enviado__btn:hover {
  background: #E5BD00;
  transform: translateY(-2px);
  color: #000000;
}

.botao_whatsapp {
  background-color: #25d366;
  width: 60px;
  height: 60px;
  position: fixed;
  z-index: 900;
  bottom: 40px;
  right: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, bottom 0.3s ease;
  border: none;
  cursor: pointer;
}
.botao_whatsapp:hover {
  background-color: #1f9249;
}
.botao_whatsapp i {
  color: #fff;
  font-size: 32px;
  line-height: 1;
}
@media (min-width: 992px) {
  .botao_whatsapp.scroll {
    bottom: 100px;
  }
}
@media (max-width: 991px) {
  .botao_whatsapp {
    bottom: 24px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
  .botao_whatsapp i {
    font-size: 28px;
  }
}

.zap-lente {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.zap-lente.exibir {
  display: block;
}

.zap-modal {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 340px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  z-index: 1001;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.zap-modal.exibir {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
@media (max-width: 480px) {
  .zap-modal {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 90px;
  }
}
.zap-modal__header {
  background: #25d366;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}
.zap-modal__header-icon i {
  color: #FFFFFF;
  font-size: 28px;
  line-height: 1;
}
.zap-modal__header-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.zap-modal__header-text strong {
  color: #FFFFFF;
  font-size: 0.95rem;
}
.zap-modal__header-text span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
}
.zap-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  padding: 4px;
  line-height: 1;
}
.zap-modal__close:hover {
  color: #FFFFFF;
}
.zap-modal__form {
  padding: 20px 18px;
}
.zap-modal__msg {
  font-size: 0.85rem;
  color: #171717;
  margin-bottom: 14px;
  line-height: 1.5;
}
.zap-modal__field {
  margin-bottom: 12px;
}
.zap-modal__field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 4px;
}
.zap-modal__field input {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #171717;
  outline: none;
  transition: border-color 0.2s ease;
}
.zap-modal__field input:focus {
  border-color: #25d366;
}
.zap-modal__field input.campo-invalido {
  border-color: #D32020;
}
.zap-modal__submit {
  width: 100%;
  padding: 11px;
  background: #25d366;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  transition: background 0.2s ease;
}
.zap-modal__submit:hover {
  background: #1f9249;
}
.zap-modal__submit i {
  font-size: 1.1rem;
}
