@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


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

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f2ef;
    color:#2f2724;
}

/*img{
    max-width:100%;
    display:block;
}*/

a{
    text-decoration:none;
}

/* =========================
    NAVBAR
========================== */

header{
    width:100%;
    background:#f5f2ef;
    position:sticky;
    top:0;
    z-index:1000;
    backdrop-filter:blur(10px);
}

.navbar{
    width:100%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px 0;
}

.logo img{
    width:400px;
}

/* =========================
    HERO
========================== */

    .hero{
    width:100%;
    min-height:69vh;

    background:
    url('/img/jjj.png');

    background-size: contain;
    background-position:center;
    background-repeat: no-repeat;

    display:flex;
    align-items:center;
}
.hero-content{
    width:100%;
    margin:auto;

    color:white;
}

.hero-content img{
    width:100%;
}


.hero-content h1{
    font-size:68px;
    max-width:720px;
    line-height:1.05;
    margin-bottom:24px;
}

.hero-content p{
    max-width:620px;
    font-size:20px;
    line-height:1.7;
    color:#e4d9d4;
    margin-bottom:36px;
}

.hero-content a{
    display:inline-block;

    padding:18px 36px;
    border-radius:40px;

    background:#b38463;
    color:white;

    font-weight:bold;
    transition:0.3s;
}

.hero-content a:hover{
    background:#9c6d4f;
}

/* =========================
    PRODUTOS
========================== */

.products{
    width:100%;
    max-width:1400px;
    margin:90px auto;
}

.section-header{
    text-align:center;
    margin-bottom:55px;
}

.section-header h2{
    font-size: 36px;
    color:#433733;
    margin-bottom:12px;
}

.section-header p{
    color:#7c6d67;
    font-size:18px;
}

.products-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:28px;
}

.product-card{
  position: relative;
  width:100%;
  max-width:300px;

  display:flex;
  flex-direction:column;

  background:white;
  border-radius: 12px;
  overflow:hidden;

  box-shadow:0 10px 30px rgba(0,0,0,0.8);

  transition:0.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-image{
    width:100%;
 
    overflow:hidden;
    background:#fff;
}

.product-image img{
    width:100%;
    max-height: 100%;
    max-height: 300px;
    object-fit:cover;
    transition:0.4s;
}

.product-card:hover .product-image img{
    transform:scale(1.03);
}

.product-info{
  display:flex;
  flex-direction:column;
    padding:20px;
    background-color: #ffffff;
}


.product-info h3{
    font-size:16px;
    color:#433733;
    margin-bottom:14px;
}

.product-description{
    color: #7c6d67;
    line-height:1.7;
    margin-bottom:20px;
}

.product-price{
    font-size: 24px;
    color: #000;
    font-style: italic;
}

.product-installments{

  color:#6c625d;

  font-size:14px;

  font-weight:500;
  margin-bottom: 24px;

}

.fa-id-card{
  color: rgb(157, 51, 12);
  font-size: 1.2rem;
}

.buy-btn{
    width: 250px;
    height: 40px;
    border:none;
    cursor:pointer;
    background: green;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding: 12px;
    border-radius:12px;
    font-size:12px;
    font-weight:bold;
    transition:0.3s;
    margin-top: auto;
    background: rgba(57,181,74,.88);
    border:  1px solid rgba(57,181,74,.18);
    color:  #fff;
    position: relative;
}

.product-status{
  position:absolute;
  top:16px;
  right:16px;

  z-index:10;

  padding:10px 16px;

  border-radius:30px;

  font-size:12px;
  font-weight:bold;
  letter-spacing:0.5px;

  backdrop-filter:blur(8px);

  box-shadow:0 4px 12px rgba(0,0,0,0.12);
}

.product-status.indisponivel{
  background:rgba(180, 35, 24, 0.92);
  color:white;
}

.product-code{
  position:absolute;

  top:16px;
  left:16px;

  z-index:10;

  padding:10px 14px;

  border-radius:30px;

  background: rgb(84, 69, 65, 0.5);

  color:#000;

  font-size:12px;
  font-weight:bold;
  letter-spacing:1px;

  box-shadow:0 4px 12px rgba(0,0,0,0.10);

  backdrop-filter:blur(8px);
}


/* =========================
    FOOTER
========================== */

footer{
  background:#2b2725;
  color:#ddd;

  padding:50px 20px;

  text-align:center;
}

.footer-logo{
  display:flex;
  justify-content:center;

  margin-bottom:24px;
}

.footer-logo img{
  width: 250px;
  opacity:0.95;
}

footer p{
    font-size: 14px;
    line-height:1.8;
    color:#bdb2ac;
}

footer .text{
    font-size: 12px;
}

.footer-whatsapp{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;

  margin-bottom:28px;
}

.footer-whatsapp a{
  display:flex;
  align-items:center;
  gap:10px;

  padding:12px 20px;

  border-radius:40px;

  background: #544541;

  color:#e6ddd8;

  transition:0.3s;
}

.footer-whatsapp img{
  width:20px;
}

 .dev{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
}

 .dev img{
    width: 140px;
}

/* =========================
    RESPONSIVO
========================== */

@media(max-width:900px){

    .hero-content h1{
    font-size:48px;
    }

}

@media(max-width:768px){

    .navbar{
        gap:20px;
    }

    .logo img{
        width: 250px;
    }

    .whatsapp-nav span{
    display:none;
    }

    .hero{
    min-height:70vh;
    }

    .hero{
    background: url('/img/Design\ sem\ nome\ \(2\).png') no-repeat center;
    height: 100vh;
    background-size:cover;
    padding:40px 20px;
    }

    .hero-content h1{
    font-size:40px;
    }

    .hero-content p{
    font-size:17px;
    }

    .section-header h2{
    font-size: 24px;
    }

    .products-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

}

.fa-whatsapp{
    font-size: 1.3rem;
    color: #fff;

}

.whatsapp-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 15px;
    background-color: green;
    padding: 10px;
    border-radius: 50%;
    max-width: 50px;
    max-height: 50px;
    z-index: 1000;        
}

.whatsapp-icon i{
    font-size:2.5rem;
    color: #fff;        
}


@media(max-width:468px){

    .product-card{
        max-width: 280px;
    }
}





/* =========================
   INDISPONÍVEL
========================= */

.product-status{

  position:absolute;

  top:16px;
  right:16px;

  z-index:20;

  padding:10px 14px;

  border-radius:30px;

  font-size:12px;

  font-weight:bold;

  letter-spacing:.5px;

  box-shadow:
  0 4px 12px rgba(0,0,0,.12);

}

.product-status.indisponivel{

  background:
  rgba(180,35,24,0.8);

  color:white;

}

/* =========================
   EM BREVE
========================= */

.product-coming-soon{

  position:absolute;

  top:58px;

  right:16px;

  z-index:20;

  padding:8px 12px;

  border-radius:22px;

  background:

  rgba(211,158,72,.75);

  color:white;

  font-size:11px;

  font-weight:700;

  letter-spacing:.5px;

  box-shadow:

  0 4px 10px rgba(0,0,0,.10);

}




/* =========================
   PIX OFF
========================= */

.pix-discount{

  display:flex;

  align-items:center;

  justify-content:center;

  gap:8px;

  width:fit-content;  

  padding:5px 9px;

  border-radius: 30px;

  background: darkcyan;

  border:  1px solid rgba(57,181,74,.25);

  color: bisque;
  margin-bottom:  10px;
  font-size: 12px;
  font-weight:700;

}

.pix-icon{

  font-size:15px;
  color: bisque;

}