/* =========================
   1. RESET E CONFIG GLOBAL
========================= */

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

body {
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  font-family: Arial, sans-serif;
  background: #000;
  overflow-x: hidden;
  padding-top: 120px;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  padding: 60px 8%;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #d4af37;
}

/* =========================
   2. HEADER
========================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.99);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}


.logo img {
  height: 80px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #d4af37;
}

/* =========================
   3. BANNER / CAROUSEL
========================= */

.carousel {
  margin-top: 80px;
  position: relative;
  overflow: visible;
  width: 100%;
  aspect-ratio: 1920 / 600;
}

.slide{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  opacity:0;
  transition:opacity 0.8s ease;
}

.slide.active{
  opacity:1;
  z-index:2;
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}

.media-banner{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}



/* =========================
   IMAGEM DESKTOP / MOBILE
========================= */

.banner-desktop{
  display:block;
}

.banner-mobile{
  display:none;
}


/* =========================
   INDICADORES DO CAROUSEL
========================= */

.carousel-indicators{
  position:absolute;
  bottom:-30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:12px;
  z-index:10;
}

.indicator{
  width:12px;
  height:12px;
  border-radius:50%;
  background:rgba(255,255,255,0.5);
  cursor:pointer;
  transition:all 0.3s ease;
}

.indicator:hover{
  transform:scale(1.2);
}

.indicator.active{
  background:#ffffff;
  transform:scale(1.3);
}


/* =========================
   BOTÃO
========================= */

.banner-btn{
  display:inline-block;
  margin-top:15px;
  padding:12px 28px;
  background:#f4c542;
  color:#000;
  font-weight:600;
  border-radius:6px;
  text-decoration:none;
  transition:all 0.3s ease;
}

.banner-btn:hover{
  background:#ffd95a;
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

/* BOTÃO BANNER DATA */
.banner-data-btn {
  background: #e91e63;
  color: #fff;
}

/* BOTÃO BANNER DATA COM ANIMAÇÃO */
.banner-data-btn {
  background: linear-gradient(45deg, #ff4d6d, #ff8fa3);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* EFEITO HOVER (quando passa o mouse) */
.banner-data-btn:hover {
  transform: translateY(-3px); /* sobe levemente */
  box-shadow: 0 8px 20px rgba(0,0,0,0.25); /* sombra suave */
}

/* EFEITO AO CLICAR */
.banner-data-btn:active {
  transform: scale(0.97); /* leve "pressionado" */
}

.banner-data-btn:hover {
  background: linear-gradient(45deg, #ff4d6d, #ff8fa3) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.banner-data-btn {
  display: none;
}


/* =========================
   OVERLAY DO BANNER
========================= */

.overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 8%;
  background:rgba(0,0,0,0.4);
  z-index:1;
}


/* =========================
   TEXTO DO BANNER
========================= */

.banner-content{
  position:relative;
  z-index:2;
  max-width:600px;
  text-align:center;

  opacity:0;
  transform:translateY(40px);
  transition:all 0.8s ease;
}

.slide.active .banner-content{
  opacity:1;
  transform:translateY(0);
}

.banner-content h2{
  font-size:2.5rem;
  font-weight:500;
  margin-bottom:10px;
}

.banner-content h1{
  font-size:1.4rem;
  line-height:1.3;
}

.banner-content p{
  font-size:1.3rem;
  margin-bottom:20px;
  line-height:1.6;
  opacity:0.95;
}


/* =========================
   4. CATEGORIAS
========================= */

/* =========================
   CATEGORIAS (FILTRO)
========================= */

.categorias {
  text-align: center;
}

.categorias-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.filtro-btn {
  padding: 12px 22px;
  border: 2px solid #d4af37;
  background: transparent;
  color: #d4af37;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filtro-btn:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-3px);
}

.filtro-btn.ativo {
  background: #d4af37;
  color: #000;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}



/* =========================
   5. PRODUTOS
========================= */

.produtos {
  padding: 60px 5%;
  text-align: center;
}

.produtos h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 1px;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.produto-card-link {
  text-decoration: none;
  color: inherit;
}

/* ===== NOVO ESTILO PREMIUM MINIMALISTA ===== */

.produto-card {
  background: #000;
  border-radius: 14px;
  padding: 22px;
  transition: all 0.3s ease;
  border: 1px solid #1a1a1a;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.produto-card:hover {
  transform: translateY(-6px);
  border-color: #d4af37;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.produto-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 18px;
}

.produto-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 8px;
  color: #ffffff;
}

.produto-card h3::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #d4af37;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

.produto-card:hover h3::after {
  width: 70px;
}

.produto-card p {
  font-size: 0.92rem;
  color: #cccccc;
  line-height: 1.5;
  margin-top: 12px;
  flex-grow: 1;
}

.produto-card::after {
  content: "Ver detalhes";
  font-size: 0.85rem;
  font-weight: 500;
  color: #d4af37;
  margin-top: 18px;
  display: inline-block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.produto-card:hover::after {
  opacity: 1;
}
/* =========================
   6. DEPOIMENTOS
========================= */

.depoimentos {
  padding: 80px 20px;
  text-align: center;
}

.depoimento-wrapper {
  position: relative;
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
}

.depoimento-carousel {
  overflow: hidden;
  width: 100%;
}

.depoimento-track {
  display: flex;
  transition: transform 0.6s ease;
}

.depoimento {
  min-width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

.depoimento p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.depoimento span {
  font-weight: bold;
  font-size: 14px;
}

/* Setas */
.nav {
  background: #000;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
}

.nav:hover {
  transform: scale(1.1);
}

/* =========================
   7. CONTATO
========================= */

.orcamento {
  max-width: 600px;
  margin: 80px auto;
  padding: 20px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

input, select, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  transition: 0.3s;
}

input:focus, select:focus, textarea:focus {
  border-color: #000;
  outline: none;
}

.erro {
  color: red;
  font-size: 12px;
  height: 14px;
}

.btn-enviar {
  background: #000;
  color: #fff;
  padding: 12px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn-enviar:hover {
  background: #333;
}

.sucesso-msg {
  margin-top: 15px;
  color: green;
  font-weight: bold;
}

.valor-estimado {
  margin-top: 15px;
  padding: 12px 15px;
  border-radius: 8px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  font-weight: 600;
  color: #25D366;
  font-size: 15px;
  transition: all 0.3s ease;
}

/* =========================
   8. FOOTER
========================= */

footer {
  text-align: center;
  padding: 30px;
  background: #000;
  border-top: 1px solid #222;
}

/* =========================
   9. WHATSAPP FIXO
========================= */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.whatsapp-float {
  animation: pulse 3s infinite;
}

/* =========================
   CONTROLE VIDEO DESKTOP / MOBILE
========================= */

.video-mobile{
  display:none;
}

.video-desktop{
  display:block;
}

/* =========================
   RESPONSIVO - MOBILE
========================= */

@media (max-width:768px){

  header{
    display:flex;
    flex-direction:column;
    align-items:center;
    width:100%;
    box-sizing:border-box;
  }

  nav{
    width:100%;
  }

  nav ul{
    width:100%;
    padding:0;
    margin:0;
  }

  .carousel{
    aspect-ratio:unset;
    height:60vh;
    min-height:320px;
  }

  .carousel-indicators{
  bottom:-20px;
}

  .slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
  }

  /* troca banner desktop/mobile */

  .banner-desktop{
    display:none;
  }

  .banner-mobile{
    display:block;
  }

  /* overlay melhor para leitura no celular */

  .overlay{
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:30px 20px;

    background:linear-gradient(
      180deg,
      rgba(0,0,0,0.65) 0%,
      rgba(0,0,0,0.35) 60%,
      rgba(0,0,0,0) 100%
    );
  }

  .banner-content h1{
    font-size:1.6rem;
  }

  .banner-content p{
    font-size:1rem;
  }

  .whatsapp-float{
    width:55px;
    height:55px;
    bottom:15px;
    right:15px;
  }

  .whatsapp-float img{
    width:24px;
    height:24px;
  }

}







