@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');
button {
  cursor: pointer;
}

.fonte-osv {
  font-family: "Oswald", sans-serif;
}

.fonte-jost {
  font-family: "Jost", sans-serif;
}

nav   {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-size: 18px;
}
 
/* Slide*/  
.swiper {
  margin-top: 125px!important;
}

/* Setas de navegação */
.swiper-button-next,
.swiper-button-prev {
  background-color: white;
  color: black;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  border: 0;
}

/* Remove o ícone padrão e insere seta estilizada */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

/* Seta direita */
.swiper-button-next::after {
  content: '→';
}

/* Seta esquerda */
.swiper-button-prev::after {
  content: '←';
}

/* Substitui o ícone padrão por → e ← */
.swiper-button-next::after {
  content: '→';
}

.swiper-button-prev::after {
  content: '←';
}

/* Paginação bullets */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #f97316; /* laranja tailwind: orange-500 */
  opacity: 0.5;
  margin: 0 6px;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  font-family: "Oswald", sans-serif;
}

.slider-overlay {
  position: absolute;
  top: 50%;
  left:220px;
  transform: translateY(-50%);
  z-index: 20;
  max-width: 400px;
  background:none; 
  padding: 20px;
  border-radius: 8px;
}

.slider-overlay h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #aaa;
  line-height: 75px;
}

.slider-overlay p {
  font-family: "Jost", sans-serif;
  font-size: 19px;
  margin-bottom: 16px;
  color: #ffffff;
}

.btn-orange {
  display: inline-block;
  background-color: #f97316; /* laranja */
  color: white;
  padding: 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  font-size:18px
}

.btn-orange:hover {
  background-color: #ea580c; /* laranja mais escuro */
}


@media (max-width:768px) {

.slide-container {
  width: 100%;
  height: 100dvh; /* altura total da tela no celular */
  overflow: hidden;
}

.hack-celular {
  width: 100%;
  height: 25vh!important;
  object-fit: cover;

}


.slider-overlay {
  position: absolute;
  z-index: 10;
  top: 53%;
  left: 1px;
  width: 65%;
  height: 100%;
  padding: 2rem;
}
  
.slider-overlay h1 {
  font-size: 1.2rem;
  line-height: 40px;
}

.slider-overlay p {
  font-size: 12px;
  margin-top:-10px
}

 .slider-overlay .btn-orange  {
  font-size:13px;
  padding:2px 5px 2px 5px;


 }

  .swiper-button-next,
  .swiper-button-prev {
      display: none;
  }

  .swiper-pagination-bullet {
    display: none;
  }

  footer nav {
    font-size:14px!important
  }
  footer nav a {
    border-bottom:2px solid #FFF
  }
}




@media (max-width:390px) {
  .hack-celular {
    width: 100%;
    height: 25vh!important;
    object-fit: cover;
  }

  .slider-overlay h1 {
    font-size: 1.1rem;
    line-height: 40px;
  }

  .slider-overlay p {
    font-size: 11px;
    margin-top:-10px
  }


}

@media (max-width:375px) {
  .hack-celular {
    width: 100%;
    height: 25vh!important;
    object-fit: cover;
  }

  .slider-overlay h1 {
    font-size: 1.1rem;
    line-height: 40px;
    margin-top:-13px
  }

  .slider-overlay p {
    font-size: 10px;
    margin-top:-14px;
    margin-bottom: 0px;
  }


}

@media (max-width:320px) {
  .hack-celular {
  width: 100%;
  height: 27vh!important;
  object-fit: cover;
}

}

.produtos h2 {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size:32px
}

.produtos h3, .produtos p {
  font-family: "Oswald", sans-serif;
  font-size:19px;
  font-weight: normal;
}

.produtos .linkP {
  font-size:15px;
  font-family: "Jost", sans-serif;
}

/* Muda o fundo atrás da imagem */
.glightbox-container .gslide-media {
  background-color: #ffffff; /* ou qualquer cor que quiser */
  z-index:999999 !important
}

/* Se quiser aplicar borda ou sombra na imagem */
.glightbox-container .gslide-image img {
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}


.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10;
  pointer-events: none;
}


  .modal-overlay {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow-y: auto;
  }
  .modal-header {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
  }
  .modal-close-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .modal-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem;
  }
  .carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
  }
  .carousel a {
    flex-shrink: 0;
    scroll-snap-align: start;
    border-radius: 8px;
    display: block;
  }
  .carousel img {
    height: 300px;
    border-radius: 8px;
    object-fit: contain;
  }
  video {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto 0;
    display: block;
    border-radius: 8px;
  }
  /* Estilos adicionais para produtos */
  .produtos {
    max-width: 1200px;
    margin: 2rem auto;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    padding: 0 1rem;
  }
  .produto-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0 15px rgb(0 0 0 / 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  .produto-header {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
  }
  .produto-textos {
    flex: 1;
  }
  .produto-img-container {
    flex-shrink: 0;
    max-width: 250px;
  }
  .produto-img-container img {
    width: 100%;
    border-radius: 0.5rem;
  }
  .btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .btn {
    cursor: pointer;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    color: white;
    transition: background-color 0.3s ease;
    flex: 1;
    max-width: 200px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
  }
  .btn-whatsapp {
    background-color: #22c55e;
  }
  .btn-whatsapp:hover {
    background-color: #16a34a;
  }
  .btn-modal {
    background-color: #f59e0b;
  }
  .btn-modal:hover {
    background-color: #d97706;
  }


  

.masonry-wrapper {
  max-width: 1000px; /* controla o total da galeria */
  margin: 0 auto;
  padding: 1rem;
}

.masonry-grid {
  column-count: 4;
  column-gap: 16px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  display: block;
}

.masonry-item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Responsivo */
@media (max-width: 1024px) {
  .masonry-grid {
    column-count: 3;
  }
}

@media (max-width: 640px) {
  .masonry-grid {
    column-count: 1;
  }
}
