@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;600;700&display=swap");

html{
  scroll-behavior: smooth;
}

* {
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/** Começo Header */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  /* background-color: #311d77; */
  color: #311d77;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav li {
  cursor: pointer;
  transition: 0.3s;
}

nav li:hover {
  color: #f17f1a;
}


nav a{
  color: #000000;
  text-decoration: none;
}



.containerButtonHeader button {
  background-color: #f17f1a;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  padding-right: 2rem;
  padding-left: 2rem;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  font-weight: bolder;
  border: 1px solid #f17f1a;
}

.containerButtonHeader button:hover {
  background-color: transparent;
  color: #f17f1a;
}

@media screen and (max-width: 800px) {
  nav {
    flex-direction: column;
  }

  .containerButtonHeader button {
    background-color: #f17f1a;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    padding-right: 2rem;
    padding-left: 2rem;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
    font-weight: bolder;
    border: 1px solid #f17f1a;
  }

  .containerButtonHeader {
    width: 50%;
    margin:auto;
  }

  .logo {
    width: 40%;
  }

  .logo img {
    height: 5rem;
  }

  nav ul {
    display: none;
  }
}

/*! Fim Header  */

/** Começo Hero */

.heroSection {
  background-color: #311d77;
  padding: 3rem;
}

.heroSection a{
  text-decoration: none;
}

.titleHero {
  color: #fff;
  font-size: 2rem;
  text-align: center;
}

.subtitleHero {
  color: #f17f1a;
  text-align: center;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.containerButtonHero{
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.containerButtonHero button{
  background-color: #f17f1a;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  padding-right: 2rem;
  padding-left: 2rem;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  font-weight: bolder;
  border: 1px solid #f17f1a;
}

.containerButtonHero button:hover {
  background-color: transparent;
  color: #f17f1a;
}

/*! Fim Hero  */

/** Começo MainProducts */

.mainProducts {
  padding: 3rem;
}

.titleMainProducts {
  text-transform: uppercase;
  text-align: center;
  color:#f17f1a;
}

.swiper {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.swiper1 {
  width: 90%;
}

.slide-container {
  max-width: 90%;
  width: 100%;
  padding: 40px 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}

.ProductCard {
  border-radius: 25px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  padding: 1rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.ProductCard img {
  height: 10rem;
  width: 6rem;
}

#especial {
  width: 20rem;
  height: 20rem;
  border-radius: 4px;
  transition: 1s;
}




#especial2{
  width: 20rem;
  height: 20rem;
  transition: 1s;
}



.productTitle {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.textProduct {
  color: #000000;
  margin-top: 2rem;
  width: 80%;
  text-align: center;
}

.buttonProduct button {
  background-color: #f17f1a;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  padding-right: 2rem;
  padding-left: 2rem;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  font-weight: bolder;
  border: 1px solid #f17f1a;
  margin-top: 2rem;
}

.buttonProduct button:hover {
  background-color: transparent;
  color: #f17f1a;
}

.swiper-navBtn {
  color: #311d77;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover {
  color: #311d77;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 35px;
}
.swiper-button-next {
  right: 0;
}
.swiper-button-prev {
  left: 0;
}

.swiper-pagination-bullet {
  background-color: #3314a0;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #8074ac;
}
@media screen and (max-width: 800px) {
  .slide-content {
    margin: 0 10px;
  }
  .swiper-navBtn {
    display: none;
  }

  .swiper1 {
    width: 100%;
  }

  .ProductCard {
    border-radius: 25px;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  
  
  #especial{
    
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .textProduct {
    color: #000000;
    margin-top: 2rem;
    width: 100%;
    text-align: center;
  }
  .mainProducts {
    padding: 0rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .swiper {
    padding: 2rem;
  }
}

/*! Fim MainProducts  */

/** Inicio Sectors */

.sectors {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.titleSectors {
  text-align: center;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--laranja);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.sector {
  max-width: 80dvw;
  text-align: left;
  margin: auto;
  padding: 1rem;
  border-bottom: 1px solid #f17f1a;
  display: flex;
  flex-direction: column;
}

.nameSector {
  font-size: 1.3rem;
  margin-left: 1rem;
}

.arrowIcon {
  margin-right: 3rem;
}

.arrowIcon img {
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.containerShowSector {
  display: flex;
  justify-content: space-between;
  align-items:center;
}

.hiddenDetails {
  display: none;
  padding: 1rem;

  width: 100%;
}

.rotated {
  transform: rotate(180deg);
}

.disrotated {
  transform: rotate(0deg);
}

@media screen and (max-width: 800px) {
  .sectors {
    margin-top: 2rem;
    margin-bottom: 5rem;
  }
  .sector {
    max-width: 100dvw;
    text-align: left;
    margin: auto;
    padding: 1rem;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid var(#f17f1a);
    display: flex;
    flex-direction: column;
  }
  
  .nameSector{
    font-size:1rem;
    margin-left: 1rem;
  }
  
}

/*! Fim Sectors */

/** Inicio Marquee */

.marquee {
  overflow: hidden;
  width: 100%;
  margin: auto;
  transition: linear;

  width: 60%;
  border-radius: 10px;
}

.marquee div {
  transition: linear;
}

.titleMarquee {
  text-align: center;
  text-transform: uppercase;
}

.card {
  background-color: #311d77;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 1rem;
}

@media screen and (max-width: 800px) {
  .marquee {
    width: 100%;
  }

  .imgMarquee img {
    height: 4rem;
  }
}

/*! Fim Marquee */

/** Inicio Footer  */

footer {
  margin-top: 5rem;
  background-color: #311d77;
  padding: 2rem;
  color: #fff;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

footer a {
  text-decoration: none;
  color: #fff;
}

.containerRedeSocial {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.containerInfos {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.containerEndereco {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
}

.mapaImg img {
  height: 2rem;
}

.email img {
  height: 3rem;
}

.containerContatos {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.contatoEmail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}

@media screen and (max-width: 800px) {
  .containerInfos {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .containerContatos {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .containerEndereco {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
  }
}

/*! Fim Footer */
.modal{
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: #ffffffee;
  border-radius: 15px;
  top: 0;
  
  bottom: 0;
  left: 0; 
  right: 0; 
  margin-left: auto; 
  margin-right: auto;
  
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
}

#closeModal{
  background-color: #f17f1a;
  position: fixed;
  top: 100px;
  right: 100px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display:flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: rgb(255, 255, 255);
  font-size: 2rem;
  cursor: pointer;
}

.textModal{
  z-index: 999;
}

.imageModal{
  height: 70vh;
  width: 40vw;
}

.hide{
  display: none;
}


@media screen and (max-width: 800px) {
  .modal{
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: #ffffffee;
    border-radius: 15px;
    top: 0;
    
    bottom: 0;
    left: 0; 
    right: 0; 
    margin-left: auto; 
    margin-right: auto;
    
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
  }
  
  #closeModal{
    background-color: #f17f1a;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display:flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: rgb(255, 255, 255);
    font-size: 2rem;
    cursor: pointer;
  }
  
  .textModal{
    z-index: 999;
  }
  
  .imageModal{
    height: 40vh;
    width: 80vw;
  }
  
  .hide{
    display: none;
  }

}

