/* Bootstrap Icon */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css");

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,700;1,400&display=swap");

/* Variaveis */
:root {
  --preto: #3c3c3b;
  --branco: #f5f5f5;
}

h2 {
  font: 700 2rem "Rubik", sans-serif;
}

/* Bootstrap */
.row {
  width: 100%;
}

/* Swiper */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero */
.hero {
  display: flex;
  justify-content: space-between;
  padding: 10px 20%;
  background-color: gray;
  color: white;

  @media (max-width: 990px) {
    padding: 10px;
  }

  @media (max-width: 440px) {
    display: none;
  }
}

.hero div:nth-child(n) {
  display: flex;
  gap: 20px;
  align-items: center;

  @media (max-width: 600px) {
    display: block;
  }
}

.hero div:last-child {
  display: flex;
  justify-content: center;
}

.hero p {
  margin: 0;
}

.hero i {
  gap: 20px;
}

.hero .redes i {
  font-size: 1.5rem;
  color: #fff;
}
.hidden {
  display: none;
}

/* Navbar */
.navbar {
  padding: 0px 20%;
  text-align: center;
}

.nav-item:last-child {
  background-color: gray;
  border-radius: 25px;
}

.nav-item:last-child a {
  color: white;
}

.nav-item:last-child a:hover {
  color: white;
}

/* Case */

#case {
  height: 100%;
  width: 100%;
  background-color: #EBEBEB;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 3rem;

  @media (max-width: 1920px) {
    
  }

  @media (max-width: 1200px) {
  
  }
}
#case h2{
  font-size: 3rem;
  margin-bottom: 1.5rem;
  @media (max-width: 768px) {
    font-size: 2rem;
  }
}
#case div{
  display: flex;
  width: 80%;
  height: 90%;
  @media (max-width: 1000px) {
    width: 100%;
  }
  @media (max-width: 750px) {
    flex-direction: column;
  }
}
#case div figure{
  width: 50%;
  height: 100%;@media (max-width: 750px) {
    width: 100%;
  }
}
#case div figure img{
  width: 100%;
  height: 100%;
  position: relative;
}
#case .case-text{
  display: flex;
  justify-content: center;
  @media (max-width: 768px) {
    width: 100%;
  }
}
#case .case-text ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
#case .case-text ul li{
  width: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px; /* Adapte conforme necessário */
  @media (max-width: 768px) {
    width: 100%;
  }
}
/* Sobre */
#sobre h2 {
  text-align: start !important;
}

#sobre .col-md-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;

  @media (max-width: 768px) {
    margin: auto;
  }
}
#sobre .col-md-6:first-child{
  padding: 1rem 3rem;
}

#sobre .CTA {
  padding: 35px 0;
  display: flex;
  justify-content: center;
  height: 120px;
}
#produtos a{
  border: 1px solid #fff;
}

#sobre a,
#produtos a,
#servicos a,
#cta a, .t-conosco a{
  background-color: var(--preto);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: 0.3s;
}

#sobre a:hover,
#produtos a:hover,
#servicos a:hover,
#cta a:hover, .t-conosco a:hover{
  background-color: #fff;
  color: #000;
  border: 1px solid var(--preto);
  scale: 1.2;
}

#sobre img {
  @media (max-width: 1200px) {
    width: 100%;
  }
}

/* Produtos */
.prod{
  margin-top: 5rem;
  @media (max-width: 1400px) {
    margin-top: 0;
  }
}
#produtos {
  background-image: url("../img/produtos-bg.avif");
  height: 105vh;
  gap: 20px;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;

  @media (max-width: 1400px) {
    height: 100%;
  }
}

#produtos h2 {
  text-align: center !important;
  color: var(--branco);
}

#produtos .row {
  gap: 20px;
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto;
  width: 95%;

  @media (max-width: 1330px) {
    width: 620px;
  }

  @media (max-width: 826px) {
    width: 300px;
  }
}

#produtos .col-md-3 {
  background-color: white;
  width: 300px;
  border-radius: 20px;
  padding: 0;
  text-align: center;
  height: 440px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* Adicionando o efeito de sombra */
}

#produtos .col-md-3 img {
  width: 100%;
  border-radius: 20px 20px 0 0;
}

#produtos .CTA {
  padding: 10px 20px;
}

@media (min-width: 992px) {
  .product-card:nth-child(n+5) {
    display: none;
  }
}
/* Contato */

#contato {
  padding: 50px 10%;
  text-align: center !important;
  background-image: url("../img/contato-bg.webp");
}

#contato div:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;

  @media (max-width: 840px) {
    display: block;
  }
}

.contato-form {
  margin-top: 1.5rem;
}

#contato iframe {
  border-radius: 10px;
  @media (max-width: 840px) {
    width: 100%;
    height: 400px;
    border-radius: 10px;
  }
}

#contato form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 400px;
}
#contato form input{
  border-radius: 5px;
  border: none;
}

#contato textarea {
  height: 200px;
  border-radius: 5px;
}

#prod-cta {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  align-items: center;

  @media (max-width: 1200px) {
    display: block;
    margin-top: 2rem;
  }
}

#prod-cta a {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: 0.3s;
}

#opcoes {
  width: 600px;
  margin: 100px;

  @media (max-width: 1200px) {
    width: 100%;
    margin: 0;
  }
}

#opcoes ul {
  @media (max-width: 1200px) {
    padding: 0;
  }
}

.produto-opt {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding-left: 15px;
  border-left: 4px solid rgba(200, 255, 255, 0);
}

.produto-opt h3 {
  font-size: larger;
  color: grey;
}

.produto-opt.active {
  background-color: #e3f4f28f;
  border-left: 4px solid #009cea;
}

.produto-opt.active h3 {
  color: #4885d6;
}

.produto-opt.active:hover {
  background-color: #e3f4f28f;
  border-left: 4px solid #009cea;
}

.produto-opt:hover {
  background-color: var(--1st-background);
  color: black;
  border-left: 4px solid grey;
}

#opcoes i {
  padding: 10px 15px 10px 15px;
  margin-right: 20px;
  font-size: large;
  color: white;
  background-color: rgba(0, 155, 114, 0.75);
  border-radius: 50%;
}

#opcoes img {
  margin-right: 40px;
}

.icone-select img {
  width: 100px;

  @media (max-width: 450px) {
    width: 50px;
  }
}

#prod-cta figure {
  display: flex;
  justify-content: center;
}

#img-produto {
  height: 100%;
  object-fit: cover;
  border-radius: 20px;

  @media (max-width: 600px) {
    width: 100%;
    height: 100%;
  }
}

/* serviços */
#servicos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
  height: 105vh;
  gap: 20px;

  @media (max-width: 1400px) {
    height: 100%;
  }
}

#servicos h2 {
  text-align: center !important;
}

#servicos .row {
  gap: 20px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 95%;

  @media (max-width: 1330px) {
    width: 620px;
  }

  @media (max-width: 826px) {
    width: 300px;
  }
}

.col-md-3 {
  background-color: white;
  width: 300px;
  border-radius: 20px;
  padding: 0;
  text-align: center;
  height: 440px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5); /* Adicionando o efeito de sombra */
}

.col-md-3 img {
  width: 100%;
  border-radius: 20px 20px 0 0;
}

.CTA {
  padding: 10px 20px;
}
p {
  margin-bottom: 0 !important;
  font-size: 1.2rem;
}
#cta {
  height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  background-image: url(../img/trabalhador-de-visao-frontal-na-construcao-usando-equipamento-de-protecao\ 1.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 40%;

  @media (max-width: 826px) {
    background-image: none;
    height: auto;
    padding: 2rem 0;
  }
}

.text-cta {
  display: flex;
  flex-direction: column;
  margin-left: 10%;
  font-weight: 500;
  width: 50%;
  gap: 1.5rem;

  @media (max-width: 826px) {
    margin: auto;
    width: 80%;
    justify-content: center;
    text-align: center;
  }
}

.text-cta p {
  text-align: start;
  width: 100%;
  font-size: 1.2rem;

  @media (max-width: 826px) {
    width: 100%;
  }
}

.text-cta span {
  font-weight: 900;
}

.text-cta .CTA {
  margin-top: 0;
}

.text-cta figure {
  width: 60%;
  margin-top: 2rem;

  @media (max-width: 826px) {
    width: 100%;
  }
}
.text-cta figure figcaption{
  font-size: 2rem;
  @media (max-width: 826px) {
    font-size: 1.5rem;
  }
}

.text-cta figure img {
  width: 100%;

  @media (max-width: 826px) {
    width: 100%;
  }
}

footer {
  background-color: #3c3c3b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
}

footer .top {
  display: flex;
  align-items: center;
  padding: 5% 14%;
  width: 100%;
  justify-content: space-around;
  gap: 2rem;

  @media (max-width: 826px) {
    flex-direction: column;
    gap: 2rem;
  }
}
.menu-footer{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: bold;
  width: 27%;
  height: 100%;
  gap: 1rem;
  @media (max-width: 826px){
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
}
.contato{
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.contato h3, .contato p{
  width: 100%;
}
.contato h3{
  font-size: 1.5rem;
  color: #fff;
}
@media (max-width: 826px){
  .contato{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
}

footer .top p,
.bot p {
  color: white;
  font-size: 1.2rem;
}

footer .top .icons i {
  font-size: 2rem;
  color: white;
}

.icons {
  display: flex;
  gap: 1.3rem;
}

.bot {
  border-top: 1px solid #605050;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5rem;
  justify-content: center;
  padding: 1rem 0;

  @media (max-width: 826px){
    flex-direction: column;
    gap: .5rem;
  }
}
.bot .copy, .bot .promo{
  display: flex;
  flex-direction: column;
  text-align: center;
}
.bot img {
  width: 120px;
  padding: 1rem;
}
.bot .promo img{
  height: 120px;
  width: auto;
}

/* Swiper slide */
#home-slide {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: start;
  font-size: 18px;
  background: #fff;
  display: flex;

  align-items: center;
  height: 100%;
  width: 100vh;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  @media (max-width: 826px) {
    height: 100vh;
    width: 100%;
    object-fit: cover;
  }
}
.margem{
  gap: 1.6rem;
}
#home {
  color: white;
}

.mySwiper {
  color: white !important;
  margin-top: 5%;

  @media (max-width: 826px) {
    height: 100%;
    width: 100%;
  }
}

.slide-1 {
  background-image: url(../img/home-1.svg);
  background-size: cover;
  height: 100vh;
}

.slide-2 {
  background-image: url(../img/home-2.svg);
  background-size: cover;
  height: 100vh;

  @media (max-width: 826px) {
    background-image: url(../img/home-2-1.svg);
  }
}

.slide-3 {
  background-image: url(../img/home-3.svg);
  background-size: cover;
  height: 100vh;
}

.slide-4 {
  background-image: url(../img/home-4.svg);
  background-size: cover;
  height: 100vh;
  @media (max-width: 826px) {
    background-image: url(../img/home-4-1.jpg);
  }
}

.slide-5 {
  background-image: url(../img/home-5.svg);
  background-size: cover;
  height: 100vh;
}

.home-slide {
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center !important;
  text-align: center !important;
  gap: 1rem;
}

.left {
  margin-left: 10%;
  @media (max-width: 826px) {
    margin: auto;
  }
}

.right {
  margin-left: 60%;
  align-items: end !important;
  text-align: end;
  gap: 1rem;
  @media (max-width: 826px) {
    margin: auto;
  }
}

.home-slide h1 {
  font-size: 5rem;
  font-weight: 700;

  @media (max-width: 826px) {
    font-size: 3rem;
  }
}

.home-slide h2 {
  font-size: 4rem;
  font-weight: 700;
  @media (max-width: 826px) {
    font-size: 2.5rem;
    margin: auto;
  }
}

.home-slide span {
  font-size: 2rem;
  @media (max-width: 826px) {
    font-size: 1.7rem;
  }
}

.home-slide p {
  font-size: 1.5rem;
  @media (max-width: 826px) {
    font-size: 1.2rem;
  }
}

.cta {
  display: flex;
  justify-content: space-between;
  margin: auto;
}

.cta a {
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  color: #000;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
}
.cta a:hover {
  background-color: var(--preto);
  color: #fff;
  scale: 1.2;
  transition: 0.3s;
}

header{
  position: fixed;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid #000;
  top: 0;
}



#faq {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 3rem 0;
}

#faq .faq-content {
  padding: 0 0 2%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto 3%;
  width: 100%;
  max-width: 850px; /* Defina uma largura máxima para o conteúdo */
}

#faq h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.pergunta {
  background-color: var(--background-color-2);
  border-radius: 10px;
  padding: 1% 5%;
  box-shadow: 0 0 3px 1px #011222;
}

.pergunta i {
  font-size: 30px;
  color: #011222;
  margin-right: 1rem;
}

.faq-question {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

@keyframes slide-bottom {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(5px);
  }
}

.faq-answer {
  animation: slide-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  display: none;
}

.faq-answer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  padding-left: 32px;
}

.faq-answer p {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  padding: 0 0 1rem 0;
}

#faq .active {
  box-shadow: 0 0 3px 1px #011222;
}

@media screen and (max-width: 767px) {
  #faq {
    width: 80%;
    margin: auto;
  }
}


 /* Adicione as imagens por CSS */
 .img-slide-1, .img-slide-2, .img-slide-3 {
  background-size: cover;
  background-position: center;
  height: 50vh; /* Defina a altura dos slides como 100vh */
}
.img-slide-1 {
  background-image: url('/img/1.jpg');
}
.img-slide-2 {
  background-image: url('/img/3.avif');
}
.img-slide-3 {
  background-image: url('/img/4.avif');
}
.carousel-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%; /* Defina a altura do carousel-caption como 100% */
  gap: 1.5rem;
}

.carousel-caption h5 {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
}

/* Aplicar a animação ao slide */
.carousel-item {
  animation: slide-in 0.5s ease-in-out;
}
.t-conosco .row{
  margin: 0 !important;
}
.t-conosco .row .col-md-12{
  padding: 0 !important;
}
@media screen and (max-width: 1075px) {
  .bradcam_area{
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .bradcam_area{
    display: none;
  }
  footer .footer_top .container{
    margin-bottom: 1rem;
  }
  .carousel-caption h5{
    font-size: 1.6rem;
  }
  .carousel-caption a{
  font-size: 1rem;
}
}

.container {
  margin: 50px auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
#feedback .text{
  width: 100%;
  text-align: center;
  margin-top: 3rem;
}

.card {
  width: calc(33.33% - 40px);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px;
  padding: 20px;
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 20px;
  color: #666;
}

.card .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}

.card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .card {
      width: calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  .card {
      width: calc(100% - 40px);
  }
}

/* ICONE WHATSAPP */

.wa::after {
  animation-delay: 0.4s;
}
.wa::after,
.wa::before {
  content: "";
  position: absolute;
  opacity: 0;
  border: 3px solid #0ba360;
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  animation: WaveWhatsApp 1.3s ease infinite;
}
*,
::after,
::before {
  box-sizing: border-box;
}
.wa {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 40px;
  width: 10vh;
  height: 10vh;
  bottom: 40px;
  text-align: center;
  border-radius: 50%;
  background: #0ba360;
  z-index: 1000;
}

.wa:hover {
  background: #128c7e;
  transition: background 0.3s ease;
}

.wa img {
  width: 5vh;
  height: 5vh;
}

@keyframes WaveWhatsApp {
  0% {
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* FIM ICONE WHATSAPP */

.top-card{
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.pulsando{
  -webkit-border-radius: 20;
  -moz-border-radius: 20;
  border-radius: 50px;
  text-decoration: none;
  animation: pulse 2s infinite;
  padding: 10px 15px !important;
}
.pulsando:hover{
  background: linear-gradient(to bottom, gray, gray);
  text-decoration: none;
  
  cursor: pointer;
  color: #ffffff;
}

/* Animação de pulsação */
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(128, 128, 128, 1);
    box-shadow: 0 0 0 0 rgba(128, 128, 128, 1);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(92,168,44, 0);
      box-shadow: 0 0 0 30px rgba(92,168,44, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(92,168,44, 0);
      box-shadow: 0 0 0 0 rgba(92,168,44, 0);
  }
}
 main{
  padding-top: 50px;
 }