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

.produtos-page{
    background:#faf7f1;
    padding-top:88px;
}

/* =========================
   BANNER
========================= */

.produtos-hero{
    height:220px;

    background-image:url("../images/produtos/cora/cozinha-cora-destaque.jpg");

    background-size:cover;
    background-position:center;

    position:relative;
}

.produtos-hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.35);
}

.produtos-hero-overlay{
    position:relative;
    z-index:2;

    height:100%;

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

    text-align:center;

    color:white;
}

.produtos-hero-overlay h1{
    font-size:44px;
    font-weight:600;
    margin-bottom:15px;
}

.produtos-hero-overlay p{
    max-width:700px;
    font-size:18px;
}

/* =========================
   INTRO
========================= */

.produtos-intro{
    text-align:center;
    padding: 45px 20px 25px;
}

.produtos-intro h2{
    color:#79472a;
    font-size:34px;
    margin-bottom:10px;
}

.produtos-intro p{
    color:#666;
    font-size:18px;
}

/* =========================
   CATEGORIAS
========================= */

.categorias-grid{
    max-width:1300px;
    margin:0 auto;
    margin-top:0;
    padding:20px 40px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap: 34px;
}

.categoria-card{
    display:block;
    background:white;
    border-radius:20px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    transition:.25s ease;
}

.categoria-card.lancamento {
  position: relative;
}


.categoria-card.lancamento::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;

  width: 72px;
  height: 72px;

  background-image: url("/assets/images/general/selo-lancamento.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  z-index: 5;
  pointer-events: none;
}


.categoria-card:hover{
    transform:translateY(-5px);

    box-shadow:0 14px 30px rgba(0,0,0,.13);
}

.categoria-card img{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
}

.categoria-info{
       padding:12px 14px;
}

.categoria-info span{
    color:#e79058;
    text-transform:uppercase;
    font-size:10px;
    font-weight:600;
    letter-spacing:1px;
}

.categoria-info h3{
    margin-top:8px;
    margin-bottom:10px;
    line-height: 1.35;
    color:#79472a;
    font-size: 24px;
}

.categoria-info p{
    color:#666;
    line-height:1.5;
        font-size:13px;
}

/* =========================
   CTA
========================= */

.produtos-cta{
    text-align:center;

    margin-top:40px;

    padding:35px 20px 45px;

    background:#e3d8d0;
}

.produtos-cta h2{
    color:#414019;
    margin-bottom:10px;
}

.produtos-cta p{
    color:#666;
    margin-bottom:25px;
}

.produtos-cta a{
    display:inline-block;

    padding:14px 30px;

    background:#e79058;

    color:white;

    text-decoration:none;

    border-radius:30px;

    font-weight:600;
     margin-top:15px;

    transition:.2s ease;
}

.produtos-cta a:hover{
    background:#79472a;
}

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


@media(max-width:1200px){
  .categorias-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;

  }
 .categoria-card img {
    height: 210px;
  }


}

@media(max-width:768px){
  .categorias-grid {
    grid-template-columns: repeat(2, 1fr);
  }

   .categoria-card img {
    height: 210px;
  }
}

@media(max-width:520px){
  .categorias-grid {
    grid-template-columns: 1fr;
  }

   .categoria-card img {
    height: 210px;
  }
}

.menu-categorias-interno {
  max-width: 1200px;
  margin: 35px auto 15px;
  padding: 0 20px;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.menu-categorias-interno a {
  padding: 10px 18px;

  border: 1px solid rgba(121, 71, 42, .35);
  border-radius: 30px;

  color: #79472a;
  background: transparent;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  transition: .2s ease;
}

.menu-categorias-interno a:hover {
  background: #e79058;
  border-color: #e79058;
  color: #fff;
}

.menu-categorias-interno a.ativo {
  background: #79472a;
  border-color: #79472a;
  color: #fff;
}