/* Hero */
section#hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  /* gap: 4.5625rem; */
  gap: 8rem;

  padding: 4.1875rem 2rem;

  /* min-height: calc(100dvh - var(--gap-x) - var(--gap-x)); */
  border-radius: 40px;

  overflow: hidden;
}
section#hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero.webp') no-repeat center;
  background-size: cover;
  z-index: -1;
  will-change: transform;
}
section#hero .content-top p {
  color: rgba(255, 255, 255, 1);
  font-style: Bold;
  font-size: 1.31rem;
  font-weight: 700;
  line-height: 1.94rem;
  letter-spacing: -3%;
  text-align: center;
}
section#hero .content-top p i {
  color: rgba(255, 255, 255, 1);
  font-style: Italic;
  font-size: 1.56rem;
  font-weight: 400;
  line-height: 1.94rem;
  letter-spacing: -3%;
  text-align: center;
}
section#hero .content-center h1 {
  max-width: 66.5rem;
  
  color: rgba(255, 255, 255, 1);
  font-family: var(--font-AppleGaramond);
  font-style: Italic;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 4.56rem;
  letter-spacing: 0%;
  text-align: center;

  margin: 0 auto 3rem auto;
}
section#hero .content-center p {
  color: rgba(255, 255, 255, 1);
  font-style: Italic;
  font-size: 1.31rem;
  font-weight: 400;
  line-height: 1.94rem;
  letter-spacing: -3%;
  text-align: center;
}
section#hero .botao {
  margin-bottom: var(--gap-x);
  
  padding: 1.13rem 5.75rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3.13rem;
  backdrop-filter: blur(40px);
  
  color: rgba(255, 255, 255, 1);
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.31rem;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;

  transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
section#hero .botao span {
  display: inline-block;
  transition: all .3s cubic-bezier(0.76, 0, 0.24, 1);
}
section#hero .botao::after {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}
section#hero .botao::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 3.13rem;
  padding: 1px; 
  
  background: linear-gradient(150deg, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, .7) 100%);
  
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
          
  pointer-events: none;
  z-index: -1;
  transition: all .2s ease-in-out;
}
section#hero .botao:hover::before {
  opacity: 0;
}
section#hero .botao:hover {
  background: #fff;
  color: #000;
}
section#hero .botao:hover span {
  transform: translateY(-150%);
  opacity: 0;
}
section#hero .botao:hover::after {
  transform: translateY(-100%);
}
section#hero .botao:active {
  background: rgba(255, 255, 255, .8);
}




/* Empresa */
section#empresa {
  display: flex;
  justify-content: space-between;
  padding: 0 calc(var(--gap-x)*2);
  margin: 7.4rem 0;
}
section#empresa .content-manufatura p {
  max-width: 12rem;
  color: rgba(0, 0, 0, 1);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.56rem;
  letter-spacing: 0%;
  text-align: left;
  margin: 0 0 1.25rem 0;
}
section#empresa .content-manufatura .flags {
  color: rgba(255, 255, 255, 1);
  font-family: var(--font-AppleGaramond);
  font-size: 2rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0%;
  text-align: left;
}
section#empresa .content-comercial p {
  max-width: 45.2rem;
  color: rgba(0, 0, 0, 1);
  font-size: 1.88rem;
  font-weight: 500;
  line-height: 2.31rem;
  letter-spacing: -3%;
  text-align: left;  
}
section#empresa .content-comercial .botao {
  margin-top: 3.25rem;
  
  padding: 1.25rem 3rem;
  background: #000;
  border-radius: 3.13rem;
  backdrop-filter: blur(40px);
  
  color: rgba(255, 255, 255, 1);
  font-family: var(--font-Inter);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.06rem;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
  
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;

  transition: all .2s ease-in-out;
}
section#empresa .content-comercial .botao span {
  display: inline-block;
  transition: all .3s cubic-bezier(0.76, 0, 0.24, 1);
}
section#empresa .content-comercial .botao::after {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}
section#empresa .content-comercial .botao:hover {
  background: #F1EFEB;
  color: #000;
}
section#empresa .content-comercial .botao:hover span {
  transform: translateY(-150%);
  opacity: 0;
}
section#empresa .content-comercial .botao:hover::after {
  transform: translateY(-100%);
}
section#empresa .content-comercial .botao:active {
  background: rgba(247, 244, 238, .8);
}




/* Produtos */
section#produtos .card-produto {
  padding: 0.44rem;
  background: #f1efeb;
  border-radius: 1.38rem;
}
section#produtos .card-produto p {
  color: rgba(0, 0, 0, 1);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.25rem;
  letter-spacing: 0%;
  text-align: left;
  margin: 1.25rem 0.63rem;
}
section#produtos .card-produto .image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 1.13rem;
}
section#produtos {
  position: relative;
}
section#produtos .swiperProdutos-navigations {
  display: none;
}




/* Atendemos */
section#atendemos {
  margin: 9rem 0;
}
section#atendemos h2 {
  max-width: 73.06rem;

  color: rgba(0, 0, 0, 1);
  font-family: var(--font-AppleGaramond);
  font-style: Italic;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.56rem;
  letter-spacing: 0%;
  text-align: center;

  margin: 0 auto;
}
section#atendemos h2 .reveal-char {
  color: rgba(0, 0, 0, 0.15);
  transition: color 0.15s ease;
}





/* Beneficios */
section#beneficios {
  padding: 0 calc(var(--gap-x)*2);
  margin: 9rem 0;
}
section#beneficios .titulo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0 0 4.19rem 0;

  opacity: 0;
}
section#beneficios .titulo h2 {
  color: rgba(0, 0, 0, 1);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.25rem;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
}
section#beneficios .titulo span {
  color: rgba(106, 106, 106, 1);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.25rem;
  letter-spacing: 0%;
  text-align: right;
  text-transform: uppercase;
}
section#beneficios .list-beneficios {
  display: flex;
  align-items: stretch;
  gap: 2.56rem;
  
  margin: 0;
  padding: 0;
  list-style: none;
}
section#beneficios .list-beneficios .item-beneficio {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  
  padding: 1.75rem 1.25rem;
  background: rgba(242, 242, 242, 1);
  border-radius: 1.38rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
section#beneficios .list-beneficios .item-beneficio:hover {
  transform: scale(1.03)!important;
  box-shadow: 0 0 0 3px rgba(170, 170, 170, 1);
}
section#beneficios .list-beneficios .item-beneficio:nth-child(2) {
  background: rgba(234, 229, 217, 1);
}
section#beneficios .list-beneficios .item-beneficio:nth-child(2):hover {
  box-shadow: 0 0 0 3px rgba(164, 153, 128, 1);
}
section#beneficios .list-beneficios .item-beneficio:nth-child(3) {
  background: rgba(241, 239, 235, 1);
}
section#beneficios .list-beneficios .item-beneficio:nth-child(3):hover {
  box-shadow: 0 0 0 3px rgba(174, 169, 161, 1);
}
section#beneficios .list-beneficios .item-beneficio:nth-child(5) {
  background: rgba(239, 233, 219, 1);
}
section#beneficios .list-beneficios .item-beneficio:nth-child(5):hover {
  box-shadow: 0 0 0 3px rgba(172, 161, 137, 1);
}
section#beneficios .list-beneficios .item-beneficio h3 {
  max-width: 12.13rem;

  color: rgba(0, 0, 0, 1);
  font-size: 1.13rem;
  font-weight: 600;
  line-height: 1.31rem;
  letter-spacing: 0%;
  text-align: left;
  margin: 0 0 2.5rem 0;
}
section#beneficios .list-beneficios .item-beneficio p {
  color: rgba(0, 0, 0, 1);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.06rem;
  letter-spacing: 0%;
  text-align: left;
  padding-right: 3rem;
}




/* Segmentos */
section#segmentos .titulo {
  margin: 0 0 8rem 0;
}
section#segmentos .titulo h2 {
  color: rgba(0, 0, 0, 1);
  font-family: var(--font-AppleGaramond);
  font-size: 4rem;
  font-weight: 400;
  line-height: 3.88rem;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 .64rem 0;
}
section#segmentos .titulo p {
  color: rgba(0, 0, 0, 1);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.56rem;
  letter-spacing: 0%;
  text-align: center;
}
section#segmentos .list-segmentos {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
section#segmentos .list-segmentos .item-segmento {
  position: relative;
  flex: 1;
  aspect-ratio: 43 / 58;
  z-index: 1;
  overflow: visible;
  display: flex;
}
section#segmentos .list-segmentos .item-segmento:hover {
  z-index: 2;
}
section#segmentos .list-segmentos .item-segmento .link-segmento {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3.81rem 2.38rem 2.38rem 2.38rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  z-index: 1;
  overflow: hidden;
  transition: top 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
/* section#segmentos .list-segmentos .item-segmento:hover .link-segmento {
  top: -30px;
} */
section#segmentos .list-segmentos .item-segmento .link-segmento::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(180.00deg, rgba(0.25, 0.25, 0.25, 0) 0%,rgba(0, 0, 0, 1) 100%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.4s ease;
}
section#segmentos .list-segmentos .item-segmento:hover .link-segmento::after {
  opacity: 1;
}
section#segmentos .list-segmentos .item-segmento .link-segmento .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: -1;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
section#segmentos .list-segmentos .item-segmento:hover .link-segmento .bg {
  transform: scale(1.08);
}
section#segmentos .list-segmentos .item-segmento:nth-child(2) .link-segmento .bg {
  object-position: 85% bottom;
}
section#segmentos .list-segmentos .item-segmento .link-segmento .content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  gap: 4.5rem;
  height: 100%;
}
section#segmentos .list-segmentos .item-segmento .link-segmento .content h3 {
  color: rgba(255, 255, 255, 1);
  font-family: var(--font-AppleGaramond);
  font-style: Italic;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 3.88rem;
  letter-spacing: 0%;
  text-align: left;
}
section#segmentos .list-segmentos .item-segmento .link-segmento .content .content-footer {
  margin-top: auto;
}
section#segmentos .list-segmentos .item-segmento .link-segmento .content .content-footer p {
  color: rgba(255, 255, 255, 1);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.56rem;
  letter-spacing: 0%;
  text-align: left;
  margin: 0 0 2.13rem 0;
}
section#segmentos .list-segmentos .item-segmento .link-segmento .content .content-footer .botao {
  padding: 1rem 2.31rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3.13rem;
  backdrop-filter: blur(40px);
  color: rgba(255, 255, 255, 1);
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.31rem;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: background-color .2s ease-in-out, color .2s ease-in-out;
}
section#segmentos .list-segmentos .item-segmento .link-segmento .content .content-footer .botao span {
  display: inline-block;
  transition: all .3s cubic-bezier(0.76, 0, 0.24, 1);
}
section#segmentos .list-segmentos .item-segmento .link-segmento .content .content-footer .botao::after {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}
section#segmentos .list-segmentos .item-segmento .link-segmento .content .content-footer .botao::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 3.13rem;
  padding: 1px; 
  background: linear-gradient(150deg, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, .7) 100%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  transition: all .2s ease-in-out;
}
section#segmentos .list-segmentos .item-segmento:hover .link-segmento .content .content-footer .botao::before {
  opacity: 0;
}
section#segmentos .list-segmentos .item-segmento:hover .link-segmento .content .content-footer .botao {
  background: #fff;
  color: #000;
}
section#segmentos .list-segmentos .item-segmento:hover .link-segmento .content .content-footer .botao span {
  transform: translateY(-150%);
  opacity: 0;
}
section#segmentos .list-segmentos .item-segmento:hover .link-segmento .content .content-footer .botao::after {
  transform: translateY(-100%);
}
section#segmentos .list-segmentos .item-segmento .link-segmento .content .content-footer .botao:active {
  background: rgba(255, 255, 255, .8);
}




/* Comercial */
section#comercial {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: calc(var(--gap-x) + calc(var(--gap-x)*2));
  background: rgba(234, 229, 217, 1);
  overflow: hidden;
}
section#comercial .content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5.5rem;

  width: 100%;
  max-width: calc(var(--maxWidth) - (var(--gap-x)*4));
  margin: 0 var(--gap-x);
  /* min-height: calc(100dvh - var(--gap-x) - (calc(var(--gap-x)*2) * 2)); */

  padding: 7.38rem 8rem;
  border-radius: 2.31rem;

  overflow: hidden;

  background-color: #000;

  z-index: 0;
}
section#comercial .content .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: .7;
  z-index: -1;
}
section#comercial .content h2 {
  color: rgba(255, 255, 255, 1);
  font-family: var(--font-AppleGaramond);
  font-style: Italic;
  font-size: 4rem;
  font-weight: 700;
  line-height: 4.56rem;
  letter-spacing: 0%;
  text-align: center;
  perspective: 600px;
}
section#comercial .content p {
  max-width: 73.81rem;
  margin: 0 auto;

  color: rgba(255, 255, 255, 1);
  font-style: Italic;
  font-size: 1.31rem;
  font-weight: 400;
  line-height: 1.94rem;
  letter-spacing: -3%;
  text-align: center;
}
section#comercial .content .botao {
  width: fit-content;
  margin: 0 auto;

  padding: 1.25rem 3rem;
  background: #EFE9DB;
  border-radius: 3.13rem;
  backdrop-filter: blur(40px);
  
  color: rgba(0, 0, 0, 1);
  font-family: var(--font-Inter);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.06rem;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
  
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;

  transition: all .2s ease-in-out;
}
section#comercial .content .botao span {
  display: inline-block;
  transition: all .3s cubic-bezier(0.76, 0, 0.24, 1);
}
section#comercial .content .botao::after {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}
section#comercial .content .botao:hover {
  background: #FFF;
  color: #000;
}
section#comercial .content .botao:hover span {
  transform: translateY(-150%);
  opacity: 0;
}
section#comercial .content .botao:hover::after {
  transform: translateY(-100%);
}
section#comercial .content .botao:active {
  background: rgba(255, 255, 255, .8);
}




/* Contato */
section#contato {
  padding: 0 calc(var(--gap-x)*2);
  margin: 9rem 0 0 0;
}
section#contato .titulo {
  text-align: center;
  margin: 0 0 4.63rem 0;
}
section#contato .titulo h2 {
  max-width: 73.5rem;
  margin: 0 auto 2.5rem auto;

  color: rgba(0, 0, 0, 1);
  font-family: var(--font-AppleGaramond);
  font-size: 4rem;
  font-weight: 400;
  line-height: 3.88rem;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}
section#contato .titulo p {
  max-width: 39.56rem;
  margin: 0 auto;

  color: rgba(0, 0, 0, 1);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.56rem;
  letter-spacing: 0%;
  text-align: center;
  text-align: center;
}
section#contato .contato-content {
  display: flex;
  gap: 0;

  border-radius: 3.06rem;
  overflow: hidden;
}
section#contato .contato-content .contato-image {
  position: relative;
  display: block;
  width: 50%;
  margin-right: -3rem;
  z-index: -1;
}
section#contato .contato-content .contato-image img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
section#contato .contato-content .contato-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: fit-content;
  padding: 2.63rem 2.19rem;
  background-color: #F3F3F3;
  border-radius: 3.06rem;
}
section#contato .contato-content .contato-form .form-header p {
  color: rgba(0, 0, 0, 1);
  font-family: var(--font-AppleGaramond);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
  margin: 0 0 2.38rem 0;
}
section#contato .contato-content .contato-form .form-fields {
  display: flex;
  flex-direction: column;
  gap: .88rem;
  flex: 1;
}
section#contato .contato-content .form-group {
  position: relative;
}
section#contato .contato-content .form-group input,
section#contato .contato-content .form-group textarea {
  width: 100%;
  padding: 1rem 1.31rem;
  
  border: 0.06rem solid rgba(204, 204, 204, 1);
  border-radius: 1rem;
  background: rgba(230, 230, 230, 1);
  outline: none;
  
  color: rgba(0, 0, 0, 1);
  font-family: var(--font-Inter);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4rem;
  
  transition: border-color 0.2s ease, background 0.2s ease;
  
  appearance: none;
  -webkit-appearance: none;
}
section#contato .contato-content .form-group textarea {
  min-width: 100%;
  min-height: 10rem;
  resize: vertical;
  padding-top: 1.5rem;
}
section#contato .contato-content .form-group input:focus,
section#contato .contato-content .form-group textarea:focus {
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 1);
}
section#contato .contato-content .form-group label {
  position: absolute;
  left: 1.31rem;
  top: 50%;
  transform: translateY(-50%);
  
  color: rgba(0, 0, 0, 1);
  font-size: 1rem;
  font-weight: 400;
  line-height: 3.56rem;
  letter-spacing: 0%;
  text-align: left;
  
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  
  transform-origin: left center;
  white-space: nowrap;
}
section#contato .contato-content .form-group--textarea label {
  top: 0;
  transform: none;
}
section#contato .contato-content .form-group input:focus ~ label,
section#contato .contato-content .form-group input:not(:placeholder-shown) ~ label,
section#contato .contato-content .form-group textarea:focus ~ label,
section#contato .contato-content .form-group textarea:not(:placeholder-shown) ~ label {
  top: -1rem;
  transform: translateY(0) scale(0.65);
  color: rgba(100, 100, 100, 1);
}
section#contato .contato-content .form-group--textarea input:focus ~ label,
section#contato .contato-content .form-group--textarea input:not(:placeholder-shown) ~ label,
section#contato .contato-content .form-group--textarea textarea:focus ~ label,
section#contato .contato-content .form-group--textarea textarea:not(:placeholder-shown) ~ label {
  top: -.25rem;
  transform: scale(0.65);
  transform-origin: left top;
}

section#contato .contato-content .contato-form .botao {
  margin-top: 1.69rem;
  
  padding: 1.13rem 3rem;
  background: #000;
  border-radius: 1.25rem;

  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  
  color: rgba(255, 255, 255, 1);
  font-size: 1.19rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;

  transition: all .2s ease-in-out;
}
section#contato .contato-content .contato-form .botao span {
  display: inline-block;
  transition: all .3s cubic-bezier(0.76, 0, 0.24, 1);
}
section#contato .contato-content .contato-form .botao::after {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}
section#contato .contato-content .contato-form .botao:hover {
  background: #ffffff;
  color: #000;
}
section#contato .contato-content .contato-form .botao:hover span {
  transform: translateY(-150%);
  opacity: 0;
}
section#contato .contato-content .contato-form .botao:hover::after {
  transform: translateY(-100%);
}
section#contato .contato-content .contato-form .botao:active {
  background: rgba(255, 255, 255, .5);
}

section#contato .contato-content .form-group .error-message {
  position: absolute;
  top: 100%;
  left: 1.31rem;
  color: #ff3333;
  font-size: 0.75rem;
  line-height: normal;
  display: none;
}
section#contato .contato-content .form-group.has-error {
  margin-bottom: 0.8rem;
}
section#contato .contato-content .form-group.has-error .error-message {
  display: block;
}
section#contato .contato-content .form-group.has-error input,
section#contato .contato-content .form-group.has-error textarea {
  border-color: #ff3333;
}

.notification-toast {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 9999;
  transition: top 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  font-family: var(--font-Inter);
  font-size: 0.94rem;
  font-weight: 500;
}
.notification-toast.show {
  top: 2rem;
}
.notification-toast.success {
  background: rgba(26, 36, 26, 0.95);
  border-color: rgba(40, 167, 69, 0.4);
}
.notification-toast.error {
  background: rgba(36, 26, 26, 0.95);
  border-color: rgba(220, 53, 69, 0.4);
}



/* Desktops Pequenos / Laptops */
@media (max-width: 1400px) {
  section#beneficios {
    margin: 6rem 0;
  }
  section#beneficios .list-beneficios {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }
  section#beneficios .list-beneficios .item-beneficio {
    grid-column: span 2;
    width: auto;
  }
  section#beneficios .list-beneficios .item-beneficio:nth-child(4),
  section#beneficios .list-beneficios .item-beneficio:nth-child(5) {
    grid-column: span 3;
  }

  section#segmentos .titulo {
    margin: 0 0 4rem 0;
  }
  section#segmentos .titulo h2 {
    font-size: 3rem;
  }
  section#segmentos .list-segmentos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  section#segmentos .list-segmentos .item-segmento .link-segmento {
    padding: 3rem 2rem 2rem 2rem;
  }
  section#segmentos .list-segmentos .item-segmento .link-segmento .content {
    gap: 3rem;
  }
  section#segmentos .list-segmentos .item-segmento .link-segmento .content h3 {
    font-size: 3rem;
    line-height: normal;
  }
  section#segmentos .list-segmentos .item-segmento .link-segmento .content .content-footer p {
    font-size: 1.13rem;
    line-height: normal;
    margin: 0 0 1.5rem 0;
  }

  section#comercial .content {
    gap: 5rem;
    padding: 5rem;
    min-height: unset;
  }
}

/* Tablets (paisagem e retrato) */
@media (max-width: 1024px) {
  section#beneficios .list-beneficios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  section#beneficios .list-beneficios .item-beneficio {
    width: auto;
  }
  section#beneficios .list-beneficios .item-beneficio h3 {
    margin: 0 0 1.5rem 0;
  }
  section#beneficios .list-beneficios .item-beneficio:last-child {
    grid-column: span 2;
  }




  section#segmentos .list-segmentos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }



  section#comercial .content {
    gap: 5rem;
    padding: 5rem;
    min-height: unset;
  }
}

/* Dispositivos Móveis (smartphones) */
@media (max-width: 767px) {
  section#hero {
    min-height: unset;
    padding: var(--gap-x);
    gap: calc(var(--gap-x) * 6);
  }
  section#hero .content-top p {
    font-size: 1rem;
  }
  section#hero .content-top p i {
    font-size: 1.2rem;
  }
  section#hero .content-center {
    padding: 0 var(--gap-x);
  }
  section#hero .content-center h1 {
    font-size: 2rem;
    line-height: normal;
    margin: 0 0 var(--gap-x) 0;
  }
  section#hero .content-center p {
    font-size: 1rem;
    line-height: normal;
  }
  section#hero .botao {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }



  section#empresa {
    flex-direction: column;
    padding: unset;
    margin: 5rem 0;
  }
  section#empresa .content-manufatura {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 0 0 2rem 0;
  }
  section#empresa .content-manufatura p,
  section#empresa .content-manufatura .flags {
    margin: 0;
  }
  section#empresa .content-comercial p {
    font-size: 1.25rem;
    line-height: normal;
  }
  section#empresa .content-comercial .botao {
    width: 100%;
    margin-top: 2rem;
  }

  
  section#produtos .swiperProdutos .swiper-wrapper {
    margin-left: var(--gap-x);
  }
  section#produtos .swiperProdutos-navigations {
    display: flex;
    align-items: center;
    gap: .5rem;
    width: fit-content;
    padding: .25rem;
    background-color: #f1efeb;
    border-radius: 5rem;
    margin-left: auto;
    margin-bottom: .5rem;
    margin-right: var(--gap-x);
  }
  section#produtos .swiperProdutos-navigations .button-prev,
  section#produtos .swiperProdutos-navigations .button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #000000;
    transition: all 0.3s ease;
    z-index: 10;
  }
  section#produtos .swiperProdutos-navigations .button-prev svg,
  section#produtos .swiperProdutos-navigations .button-next svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  section#produtos .swiperProdutos-navigations .button-prev:active,
  section#produtos .swiperProdutos-navigations .button-next:active {
    transform: scale(0.9);
    background: rgba(255, 255, 255, 0.95);
  }

  section#atendemos {
    padding: unset;
    margin: 5rem 0;
  }
  section#atendemos h2 {
    font-size: 2rem;
    line-height: normal;
  }



  section#beneficios {
    padding: unset;
    margin: 5rem 0;
  }
  section#beneficios .titulo {
    gap: 1rem;
    margin: 0 0 2rem 0;
  }
  section#beneficios .titulo h2,
  section#beneficios .titulo span {
    font-size: 1rem;
    line-height: normal;
  }
  section#beneficios .titulo span {
    white-space: nowrap;
  }
  section#beneficios .list-beneficios {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }




  section#segmentos .titulo {
  margin: 0 0 2rem 0;
  }
  section#segmentos .titulo h2 {
  font-size: 2.5rem;
  margin: 0;
  }
  section#segmentos .titulo p {
  font-size: 1rem;
  margin: 0;
  }
  section#segmentos .list-segmentos {
    display: flex;
    flex-direction: column;
  }
  section#segmentos .list-segmentos .item-segmento .link-segmento {
  padding: 2rem;
  }




  section#comercial {
    padding: var(--gap-x);
  }
  section#comercial .content {
    gap: calc(var(--gap-x) * 4);
    min-height: unset;
    padding: 2rem;
  }
  section#comercial .content h2 {
    font-size: 2rem;
    line-height: normal;
  }
  section#comercial .content h2 br {
    display: none;
  }
  section#comercial .content p {
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
  }
  section#comercial .content .botao {
    width: 100%;
    font-size: .75rem;
  }




  section#contato {
    padding: unset;
    margin: 5rem 0 0 0;
  }
  section#contato .titulo h2 {
    max-width: unset;
    font-size: 2.5rem;
    line-height: normal;
    margin: 0 0 1rem 0;
  }
  section#contato .titulo p {
    font-size: 1rem;
    line-height: normal;
    margin: 0;
  }
  section#contato .contato-content {
    flex-direction: column;
  }
  section#contato .contato-content .contato-image {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    margin: 0 0 -3rem 0;
    border-radius: 2rem;
  }
  section#contato .contato-content .contato-image img {
    object-position: center 90%;
  }
  section#contato .contato-content .contato-form {
    padding: 1.5rem;
    border-radius: 2rem;
    width: 100%;
  }
  section#contato .contato-content .contato-form .form-header p {
    text-align: center;
    margin: 0 0 1.5rem 0;
  }
  section#contato .contato-content .contato-form .botao {
    font-size: .9rem;
    font-weight: 700;
  }
}