@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");

:root {
  --vermelho: #e00208;
  --vermelhoclaro: #ff4b4b;
  --vermelhoescuro: #a50e18;
  --preto: #000;
  --branco: #fff;

  /* #c31c39  */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
body {
  font-family: "Poppins", sans-serif;
  width: 100vw;
  overflow-x: hidden;
}

footer hr {
  height: 70px;
}

.relat-modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #000000aa;
  z-index: 99999;

  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-relat {
  width: 55%;
  height: fit-content;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.modal-relat > img {
  width: 100%;
  z-index: 10;
  pointer-events: none;
  user-select: none;
}

.modal-relat > .close {
  display: flex;
  justify-content: right;
  padding-inline: 20px;
  padding-top: 10px;
}

.modal-relat > .close > button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

@media (max-width: 714px) {
  .modal-relat {
    width: 90%;
  }
}

/* =============================== ScrollBar =============================== */

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}
::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background: #ff0000;
  border: 0px none #ffffff;
}
::-webkit-scrollbar-thumb:hover {
  background: #ff3d3d;
}
::-webkit-scrollbar-thumb:active {
  background: #ff0000;
}
::-webkit-scrollbar-track {
  background: #ffffff;
  border: 0px none #ffffff;
}
::-webkit-scrollbar-track:hover {
  background: #ffffff;
}
::-webkit-scrollbar-track:active {
  background: #ffffff;
}
::-webkit-scrollbar-corner {
  background: transparent;
}

/* =============================== Header =============================== */
header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px;
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.745), transparent);
  z-index: 1000;
  transition: 0.5s ease;
}
header img {
  position: relative;
  width: 60px;
  margin-top: 30px;
  margin-bottom: 30px;
  transition: 0.2s;
}

header ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

header ul li {
  position: relative;
  list-style: none;
}

header ul li a {
  position: relative;
  margin: 0 10px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.5px;
  font-weight: 300;
  transition: 0.3s;
}
header.sticky {
  height: 60px;
  background: #fff;
  border-bottom: 1px solid var(--vermelho);
}
header.sticky ul li a {
  color: #000;
}
header.sticky ul li a:hover {
  color: var(--vermelho);
}

header ul li a:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: ".";
  color: transparent;
  background: var(--vermelho);
  height: 1px;
  border-radius: 2px;
  transition: 0.3s ease;
}
header ul li a:hover:after {
  width: 100%;
  box-shadow: 1px 1px 5px #ff00008a;
}

section {
  width: 100%;
  height: 100vh;
}

#buySegs {
  padding:6px 14px;
  border-radius: 10px;
  background-color: #E9511D;
  color: #fff;
}

#buySegs:hover {
  opacity: 0.7;
}

#buySegs:hover:after {
  width: 0 !important;
}

header #buySegs {
  color: #fff;
  background-color: transparent;
}

header.sticky #buySegs {
  color: #fff;
  background-color: #E9511D;
}

.toggle {
  display: none;
  justify-content: center;
  align-items: center;
  margin: 0;
  font-size: 30px;
  cursor: pointer;
  color: var(--vermelho);
  margin-top: 5px;
}

/* =============================== Homepage =============================== */

.home {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.home .text-home {
  text-align: left;
  display: flex;
  flex-direction: column;
  width: 90%;
  font-size: 20px;
  color: #fff;
  animation: reveal 1s ease forwards;
  z-index: 2;
}

.home .text-home img {
  width: 23%;
  margin-bottom: 20px;
}
.home .text-home p {
  width: 40%;
  font-weight: 200;
  font-size: 19px;
}
.home .text-home .homeButton {
  display: flex;
  justify-content: center;
  align-items: center;

  min-width: 130px;
  width: 13%;
  height: 55px;
  border-radius: 10px;
  background-color: var(--vermelho);

  text-decoration: none;
  color: var(--branco);
  font-size: 19px;
  font-weight: 200;

  margin-top: 30px;
  transition: 0.2s ease;
}
.home .text-home .homeButton:hover {
  background-color: var(--vermelhoescuro);
  transform: translateY(-3px);
}

video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  margin: 0 auto;
  left: 50%;
  transform: translate(-50%, 0);
}

.linear-gradient {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  background: linear-gradient(to right, #000, transparent);
}

/*=============================== Animation home =============================== */

@keyframes reveal {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

/* =============================== Fim animatation home =============================== */

/* =============================== Fim homepage =============================== */

/* =============================== ToTop Button =============================== */

.toTop {
  z-index: 999;

  position: fixed;
  right: 35px;
  bottom: 35px;

  width: 40px;
  height: 40px;
  background-color: var(--vermelho);
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;

  transition: 0.3s ease;
}
.toTop:hover {
  background-color: var(--vermelhoclaro);
  box-shadow: 0 0 10px var(--vermelhoclaro);
  transform: scale(1.1);
}
.toTop ion-icon {
  font-size: 20px;
  color: #fff;
}

/* =============================== Fim toTop Button =============================== */

/*=============================== About =============================== */

.about {
  height: 100%;
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.about .about-content {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 60%;
  padding: 50px 0;
}
.about .about-content h2 {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  font-size: 50px;
  font-weight: 200;
  color: var(--preto);
}
.about .about-content p {
  font-size: 20px;
  font-weight: 300;
  margin-top: 30px;
  margin-bottom: 20px;

  color: var(--preto);
}
.about .about-content img {
  margin-top: 15px;
  max-width: 800px;
  width: 100%;
}

/* =============================== Fim about =============================== */

/* =============================== Catalogos =============================== */

.products {
  background: linear-gradient(#000000aa, #000000ee),
    url("../img/catalog-banner.jpg");
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.534);
  text-align: center;
}

.products .content-products {
  padding: 50px 0;
  height: 100%;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.products .content-products h2 {
  font-size: 50px;
  font-weight: 200;
  color: var(--branco);

  margin-bottom: 30px;
}
.products .content-products p {
  position: relative;
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 30px;
  color: var(--branco);
  line-height: 1.4;
}

.catalog-button {
  padding: 8px 16px;
  max-width: 290px;
  border-radius: 8px;
  border: 2px solid white;
  transition: 0.3s ease;
  cursor: pointer;
}

.swiper {
  width: 100%;
  height: 100%;
  display: inline;
}

.swiper-container {
  width: 800px;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 32px 0;
}

.product-img {
  width: 250px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 789px) {
  .swiper {
    width: 100%;
    height: 100%;
    padding: 0 20px;
  }

  .swiper-container {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 8px 0 32px 0;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    transition: all 0.3s ease;
  }

  .swiper-slide-prev,
  .swiper-slide-next {
    opacity: 0.8 !important;
    transform: scale(0.85) translateX(0) !important;
  }

  .swiper-slide-prev {
    transform: scale(0.85) translateX(30%) !important;
  }

  .swiper-slide-next {
    transform: scale(0.85) translateX(-30%) !important;
  }

  .product-img {
    width: 100%;
    max-width: 220px;
  }

  .swiper-pagination {
    display: none !important;
  }
}

.pop-up-catalogo {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  display: none;
  background-color: #ebebee;

  border-radius: 20px;
  transition: all 0.3s ease;

  justify-content: center;
  align-items: flex-end;
}
.show {
  display: flex;
  transition: 0.3s;
}
.pop-up-catalogo ion-icon {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.5rem;
  color: #555;
  cursor: pointer;
}
.pop-up-catalogo iframe {
  width: 100%;
  height: 100%;
  border: 1px solid #a5a5a5;
  border-radius: 10px;
}

/* =============================== Card catalogos =============================== */

.cards {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 690px;
  display: flex;
  justify-content: center;
}
.cards .card img {
  width: 70%;
  border-radius: 10px;
}
.card button {
  width: 70%;
  height: 40px;
  border-radius: 10px;
  border: 2px solid var(--branco);
  background-color: transparent;

  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;

  text-decoration: none;
  text-align: center;
  color: var(--branco);
  transition: 0.2s ease;
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 300;
}

.card1,
.card2 {
  cursor: pointer;
}
button:hover {
  color: var(--vermelhoescuro);
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0px 2px 15px -7px var(--branco);
}

.button {
  display: inline-block;
  border-radius: 7px;
  border: none;
  color: white;
  font-family: inherit;
  text-align: center;
  font-size: 13px;
  width: 10em;
  padding: 1em;
  transition: all 0.4s;
  cursor: pointer;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.4s;
}

.cards .button span:after {
  content: " Catálogo";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.7s;
}

.button:hover span {
  padding-right: 4em;
}

.button:hover span:after {
  opacity: 4;
  right: -190;
}
/* ===============================  Seg's   ===============================*/
.segs {
  width: 100vw;
  height: 84vh;
  display: flex;
  position: relative;
  font-family: "Bricolage Grotesque", sans-serif;
  overflow: hidden;
}

.content-segs {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  z-index: 2;
}

.left-content-segs {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0px 80px;
  justify-content: center;
}

#underline {
  position: absolute;
  transform: scale(1.21);
  top: 314px;
  left: 638px;
}

.left-content-segs > h1 {
  font-size: 50px;
  margin-bottom: 16px;
  font-weight: 600;
  color: #2A2F6C;
}

.left-content-segs > p {
  font-size: 22px;
  width: 100%;
  font-weight: 200;
  color: rgba(5,11,41,82)
}

#highlight {
  color: #E9511D;
  font-weight: 500;
}

.right-content-segs {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mockups {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mockups img {
  position: absolute;
  width: auto;
}

.mockup-back {
  left: 240px;
  z-index: 1;
  transform: translateY(180px) translateX(140px) scale(1.3) rotate(10deg);
}

.mockup-front {
  left: 50px; 
  z-index: 2;
  transform: translateY(180px) scale(1.3);
}

.assets-segs {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

#left-segs {
  position: absolute;
  left: 0;
  top: 0;
}

#right-segs {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.button-area-segs {
  display: flex;
  margin-top: 32px;
  gap: 12px;
  width: 100%;
}

.button-area-segs button {
  padding: 8px 12px;
  height: 44px;
  max-width: 320px;
  min-width: 280px;
  border-radius: 12px;
  border: none;
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  cursor: pointer;
  transition: .3s ease;
}


.contact-button-segs {
  background-color: #2A2F6C;
}

.go-to-segs-button {
  background-color: #E9511D;
}

.go-to-segs-button:hover {
  background-color: #E9511D;
}

.contact-button-segs:hover {
  background-color: #2A2F6C;
}



@media (min-width: 1200px) and (max-width: 1444px) {
  .mockup-back {
    transform: translateY(200px) translateX(-20px)  rotate(10deg);
  }

  .mockup-front {
    transform: translateY(200px) translateX(-80px) scale(1.05);
  }

  .left-content-segs > h1 {
    font-size: 46px;
    line-height: 1.0;
  }

  .left-content-segs > p {
    font-size: 20px;
    width: 85%;
  }

  #underline {
  display: none;
  }
}


@media (min-width: 992px) and (max-width: 1199px) {
  .mockup-back {
    transform: translateY(180px) translateX(-60px) scale(1.1) rotate(10deg);
  }

  .mockup-front {
    transform: translateY(180px) translateX(-60px) scale(1.1);
  }

  .left-content-segs {
    padding: 0 40px;
  }

  .left-content-segs > h1 {
    font-size: 38px;
  }

  .left-content-segs > p {
    font-size: 18px;
    width: 90%;
  }

  #underline {
 display: none;
}
}

@media (min-width: 768px) and (max-width: 991px) {
  .mockup-back {
    transform: translateY(180px) translateX(-80px) scale(1.05) rotate(10deg);
  }

  .mockup-front {
    transform: translateY(200px) translateX(-80px) scale(1.05);
  }

    .left-content-segs {
    align-items: center;
  }
  .right-content-segs{
    width: 40%;
  }

  .left-content-segs > h1 {
    font-size: 38px;
    line-height: 1;
  }

  .left-content-segs > p {
    font-size: 18px;
    width: 100%;
  }

  .button-area-segs {
    width: 100%;
    align-items: center;
    gap: 8px;
  }
  .button-area-segs button {
    font-size: 16px;
  }

  #underline {
    display: none;
  }
}
@media (max-width: 767px) {
  .mockups {
    display: none;
  }

  .left-content-segs {
    padding: 0 20px;
    text-align: center;
    align-items: center;
  }

  .right-content-segs {
    width: 0%;
  }

  .left-content-segs > h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .left-content-segs > p {
    font-size: 16px;
    width: 100%;
  }

  .button-area-segs {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

    .button-area-segs button {
    font-size: 16px;
  }

  #underline {
    display: none;
  }
}
@media (min-width: 1440px) and (max-width: 1684px) {
  #underline {
    display: none;
  }
}
/* ===============================  Areas   ===============================*/
.atuacao {
  width: 100%;
  height: 100vh;
  display: flex;
}
.left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 0 30px;
}
.left .left-content {
  width: 80%;
  display: flex;
  flex-direction: column;
}
.left h1 {
  color: var(--vermelho);
  font-size: 50px;
  font-weight: 200;
  text-align: left;
}
.left p {
  text-align: left;
  margin: 15px 0;
  font-size: 20px;
  font-weight: 300;
}
.right {
  flex: 1;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.right svg {
  width: 80%;
}
.estado,
.text {
  transition: 0.3s ease;
}
.estado:hover {
  fill: rgb(137, 0, 0);
}
.t {
  pointer-events: none;
  transition: 0.3s ease;
}
.estado-pr:hover ~ .text-pr,
.estado-sc:hover ~ .text-sc,
.estado-rs:hover ~ .text-rs {
  fill: #fff;
}

/* =============================== Map sect =============================== */

.map-sect {
  width: 100%;
  height: 50vh;
  position: relative;
  border-bottom: 3px solid var(--vermelho);
  border-top: 3px solid var(--vermelho);
}

.map-sect iframe {
  width: 100%;
  height: 100%;
}
.map-sect a {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

/* =============================== Button map =============================== */

.venhaNosConhecer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  max-width: 60%;
  min-width: 250px;
  height: 50px;
  border-radius: 10px;
  font-size: 16px;
  color: var(--branco);
  background-color: var(--vermelho);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  z-index: 1;
  text-decoration: none;
}
.venhaNosConhecer:hover {
  background-color: var(--vermelhoescuro);
}

/* =============================== Fim button map =============================== */

/* =============================== Trabalhe conosco =============================== */

.trabalhe-conosco {
  background: #f3f3f3;
  height: 100%;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trabalhe-conosco .t-conosco-content {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.trabalhe-conosco .t-conosco-content h2 {
  font-size: 50px;
  font-weight: 200;
  color: var(--preto);

  margin-bottom: 15px;
}
.trabalhe-conosco .t-conosco-content p {
  position: relative;
  display: flex;
  justify-content: center;
  font-size: 19px;
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.4;
  color: var(--preto);
}

.trabalhe-conosco .t-conosco-content .t-conosco-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

/* Base compartilhado */
.trabalhe-conosco .t-conosco-content .t-conosco-buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;

  min-width: 210px;
  height: 52px;
  border-radius: 12px;
  padding: 0 28px;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  z-index: 999;
}

/* Botão 1 — Vagas Comerciais: vermelho sólido */
.trabalhe-conosco .t-conosco-content .t-conosco-buttons a:first-child {
  background-color: var(--vermelho);
  color: var(--branco);
  border: 2px solid var(--vermelho);
  box-shadow:
    inset 0 2px 6px rgba(255, 255, 255, 0.18),
    inset 0 -3px 6px rgba(0, 0, 0, 0.2),
    0 4px 12px rgba(224, 2, 8, 0.35);
}

.trabalhe-conosco .t-conosco-content .t-conosco-buttons a:first-child:hover {
  background-color: var(--vermelhoescuro);
  border-color: var(--vermelhoescuro);
  box-shadow:
    inset 0 2px 6px rgba(255, 255, 255, 0.12),
    inset 0 -3px 6px rgba(0, 0, 0, 0.25),
    0 6px 18px rgba(165, 14, 24, 0.45);
  transform: translateY(-2px);
}

.trabalhe-conosco .t-conosco-content .t-conosco-buttons a:last-child {
  background-color: #970000;
  color: var(--branco);
  box-shadow:
    inset 0 2px 6px rgba(255, 255, 255, 0.06),
    inset 0 -3px 6px rgba(0, 0, 0, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

.trabalhe-conosco .t-conosco-content .t-conosco-buttons a:last-child:hover {
  background-color: var(--vermelho);
  border-color: var(--vermelho);
  box-shadow:
    inset 0 2px 6px rgba(255, 255, 255, 0.15),
    inset 0 -3px 6px rgba(0, 0, 0, 0.25),
    0 6px 18px rgba(224, 2, 8, 0.4);
  transform: translateY(-2px);
}

/* =============================== Fim trabalho-conosco =============================== */

footer {
  position: relative;
  width: 100%;
  background: var(--vermelhoescuro);
  min-height: 100px;
  display: flex;
  flex-direction: column;
}
.footer-content {
  display: flex;
  padding: 0 30px;
}
.footer-left,
.footer-right {
  flex: 1;
}

/* =============================== Footer right =============================== */

.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 60px;
}
.socials {
  display: flex;
  flex-direction: column;
}
.socials a {
  display: flex;
  align-items: center;
  opacity: 0.8;
  margin: 5px 10px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
}
.footer-right .socials a:hover {
  transform: translateY(-5px);
  opacity: 1;
}
.socials a ion-icon {
  font-size: 30px;
  margin-right: 5px;
}

/* =============================== Footer left =============================== */

.footer-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 250px;
  position: relative;
}

.footer-left .information-local a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s ease;
}
.footer-left .information-local a:hover {
  transform: translateY(-5px);
  opacity: 1;
}
.footer-left .img-logoFooter {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-left .img-logoFooter {
  height: 200px;
  border-spacing: 5px;
  margin-right: 10px;
  transition: 0.3s ease;
}

.footer-left .img-logoFooter:hover {
  transform: translateY(-5px);
}

.footer-left .information-local {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

/* =============================== Copyright bottom =============================== */

.copyright {
  width: 100%;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  color: #fff;
}
.copyright .copy {
  text-align: center;
}

/* =============================== Wave footer =============================== */

footer .wave svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
/* =============================== Media =============================== */

/* =============================== 1800px =============================== */
@media (min-width: 1800px) {
  .home .text-home {
    font-size: 20px;
  }
  .home .text-home span {
    font-size: 32px;
  }
}

/* =============================== 1000px =============================== */
@media (max-width: 1000px) {
  footer {
    flex-direction: column;
  }
  .footer-content {
    display: flex;
    flex-direction: column;
  }
  .footer-left,
  .footer-right {
    justify-content: center;
    align-items: center;
  }
}

/* =============================== 700px =============================== */

@media (max-width: 714px) {
  header {
    position: fixed;
    width: 100%;
    height: 60px;
    background: #fff;
    border-bottom: 1px solid var(--vermelho);
  }
  /* .product-img{
    width: 42vw;
    border-radius: 8px;
  } */

  /* =============================== MENU =============================== */

  nav {
    z-index: 10000;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.86);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(150%) skewX(15deg);
    transition: 0.5s ease-in-out;
  }

  .active ~ nav {
    transform: translateX(0%) skew(0deg) !important;
  }
  ul {
    display: flex;
    flex-direction: column;
  }
  li {
    margin: 15px 0;
  }
  nav ul li a {
    color: #fff !important;
  }

  .toggle {
    display: block;
  }
  /* ============================================================== */

  .linear-gradient {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 50%, transparent);
    background-position: center;
    background-size: cover;
  }

  .home .text-home p {
    width: 80%;

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .home .text-home {
    width: 100%;

    align-items: center;
  }

  .home .text-home .imgHome {
    width: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  .home .text-home .homeButton {
    width: 60%;

    display: flex;
    justify-content: center;

    margin: 20px 0 0 0;
    padding: 0;
  }
  .homeButton {
    width: 80%;

    margin: 0;
    padding: 0;
  }

  /* ABOUT */

  .about .about-content {
    width: 90%;
  }
  .about .about-content h2 {
    text-align: center;
  }

  .about .about-content p {
    text-align: center;
    font-size: 16px;
  }

  .about .about-content img {
    align-items: center;
  }

  /* CATALAGOS (PRODUCTS) */

  .products {
    height: 100%;
  }

  .products .content-products {
    width: 100%;

    justify-content: center;
    align-items: center;
    display: flex;
    text-align: center;
    flex-direction: column;
  }

  .products .content-products p {
    width: 90%;
    font-size: 16px;
  }

  .products .content-products .card1,
  .card2 {
    width: 70%;
  }

  .content .card {
    width: 30vh;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0;
  }

  .cards {
    display: flex;
    flex-direction: column;
  }
  .card a {
    margin-bottom: 30px;
  }

  .button {
    margin-bottom: 15px;
  }

  /* AREA DE ATUACAO */

  .atuacao .left {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 30px 0;
  }

  .atuacao .left .left-content h1 {
    align-items: center;
    text-align: center;
  }

  .atuacao .left .left-content p {
    text-align: center;
    align-items: center;

    font-size: 16px;
  }

  .atuacao .right .map-svg {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .atuacao .right .map-svg svg {
    width: 60%;
    height: 80%;

    align-items: center;

    margin-bottom: 30px;
  }

  .atuacao {
    flex-direction: column;
  }

  .estado-pr ~ .text-pr,
  .estado-sc ~ .text-sc,
  .estado-rs ~ .text-rs {
    fill: #fff;
  }

  /* MAPA SEGALAS  */

  .map-sect {
    width: 100%;
    height: 50vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(to right, #0000009e, #00000031),
      url("../img/segals.jpg");
    background-size: cover;
    background-position: right center;
    background-attachment: fixed;
  }

  /* TRABALHE CONOSCO */

  .trabalhe-conosco {
    display: flex;
    justify-content: center;

    width: 100%;

    padding: 0 10 !important;
  }

  .trabalhe-conosco .t-conosco-content {
    width: 100%;
  }

  .trabalhe-conosco .t-conosco-content p {
    width: 90%;
    font-size: 16px;
    text-align: center;
  }

  .trabalhe-conosco .t-conosco-content .t-conosco-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .trabalhe-conosco .t-conosco-content .t-conosco-buttons a {
    width: 100%;
    min-width: unset;
  }

  /* FOOTER */

  footer .footer-left .img-logoFooter {
    display: none;
  }

  .footer-left .information-local {
    margin-bottom: 30px;
    text-align: center;
  }
  hr {
    display: none;
  }
  .footer-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .social_icon {
    display: flex;
    flex-direction: row;
  }

  .copyright {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .copy {
    font-size: 12px;
    margin-top: 30px;
  }
}
@media (max-height: 380px) {
  h1 {
    font-size: 25px !important;
  }

  p {
    font-size: 16px !important;
  }
}

.privacy-policy {
  position: fixed;
  width: 100%;
  height: fit-content;
  bottom: 0;
  left: 0;
  background-color: #000000aa;
  z-index: 99999;
  animation: swap 1s;
  color: #ebebee;
  padding: 16px 3rem;
  display: flex;
  gap: 10rem;
  align-items: center;
  backdrop-filter: blur(10px);
}

@keyframes swap {
  from {
    bottom: -100%;
  }

  to {
    bottom: 0;
  }
}

.cookie-button {
  border: none;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  border-radius: 6px;
}

.cookie-button:last-child {
  margin-bottom: 0px;
}

.policy-links {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}

.not-visible {
  display: none;
}

.modal-backdrop {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #00000055;
  z-index: 99999999;
}

.container-pdf {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.iframe-pdf {
  height: 90vh;
  width: 80vw;
}

.button-close {
  display: flex;
  justify-content: right;
  padding: 10px;
}

.button-close > button {
  border: none;
  padding: 12px;
  background-color: var(--vermelhoescuro);
  color: whitesmoke;
  transition: 0.3s;
}

.cookie-definition-container {
  padding: 16px;
  width: 30vw;
  background-color: #a50e18;
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
}

.list-cookies-definitions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
}

.list-cookies-definitions > ul {
  list-style-type: none;
}

.button-line {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
.button-line > div {
  display: flex;
  gap: 12px;
}

.button-line > div > button {
  border: none;
  padding: 12px;
  background-color: var(--vermelhoescuro);
  color: whitesmoke;
  transition: 0.3s;
}

.button-line > div > button:hover {
  border: none;
  padding: 12px;
  background-color: var(--vermelhoclaro);
  color: whitesmoke;
  transition: 0.3s;
}
