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

.hero-produto{
    position: relative;
    width: 100%;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 20px 100px;
}

.hero-produto-bg{
    position: absolute;
    inset: 0;
    background:
    linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.72)),
    url('../images/banner.jpg') center center/cover no-repeat;
    transform: scale(1.05);
}

.hero-produto-content{
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: #fff;
}

.hero-produto-content .hero-tag{
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 22px;
    border-radius: 40px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    color: #fff;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
}

.hero-produto-content h1{
    font-size: clamp(42px,7vw,78px);
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.hero-produto-content p{
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.8;
}

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

.produtos-intro{
    padding: 90px 20px 20px;
    background: #fff;
}

.produtos-intro-content{
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.produtos-intro .section-tag{
    margin-bottom: 18px;
    display: inline-block;
}

.produtos-intro h2{
    font-size: clamp(34px,5vw,54px);
    color: #111;
    margin-bottom: 24px;
}

.produtos-intro p{
    font-size: 18px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.produtos-categorias{
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.produtos-categorias span{
    background: linear-gradient(135deg,#1c1c1c,#2c2c2c);
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* =========================================
   GALERIA
========================================= */

.galeria-produtos{
    padding: 70px 20px 120px;
    background: #f6f7fb;
}

.galeria-grid{
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 28px;
}

.produto-card{
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    transition: .45s ease;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
}

.produto-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,.14);
}

.produto-image{
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.produto-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.produto-card:hover img{
    transform: scale(1.08);
}

.produto-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,.55),transparent);
    opacity: 0;
    transition: .4s ease;
}

.produto-card:hover .produto-overlay{
    opacity: 1;
}

.zoom-icon{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    opacity: 0;
    transform: translateY(15px);
    transition: .4s ease;
}

.produto-card:hover .zoom-icon{
    opacity: 1;
    transform: translateY(0);
}

.produto-info{
    padding: 26px;
    text-align: center;
}

.produto-info h3{
    font-size: 21px;
    color: #111;
    margin-bottom: 12px;
}

.produto-info p{
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}



/* HERO PRODUTO */

.hero-produto{
    position: relative;
    min-height: 88vh;
    padding-top: 180px;
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-produto-bg{
    position: absolute;
    inset: 0;
    background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.72)),
   url('../images/banner.jpg')
    center center/cover no-repeat;

    transform: scale(1.04);
}

.hero-produto-overlay{
    position: absolute;
    inset: 0;
    background:
    radial-gradient(circle at center,
    rgba(255,255,255,.04),
    transparent 60%);
}

.hero-produto-content{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    text-align: center;
    padding: 0 25px;
}

.hero-produto .hero-tag{
    display: inline-block;
    color: #fff;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 600;
}

.hero-produto h1{
    color: #fff;
    font-size: clamp(52px, 8vw, 95px);
    line-height: 1;
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-produto p{
    color: rgba(255,255,255,.88);
    font-size: 19px;
    line-height: 1.9;
    max-width: 760px;
    margin: 0 auto 40px;
}

.hero-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary{
    min-width: 260px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

@media(max-width:768px){

    .hero-produto{
        min-height: auto;
        padding-top: 170px;
        padding-bottom: 90px;
    }

    .hero-produto h1{
        font-size: 58px;
    }

    .hero-produto p{
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-buttons .btn-primary{
        width: 100%;
        min-width: auto;
    }

}



/* ========================================
   HERO PRODUTO CORREÇÃO FINAL
======================================== */

.hero-produto{
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    padding:
        180px 20px
        120px;
}

/* imagem fundo */
.hero-produto-bg{
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.75)
        ),
        url('../images/banner.jpg');

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

    z-index: 1;
}

/* conteúdo */
.hero-produto-content{
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 900px;

    text-align: center;
    color: #fff;
}

/* tag */
.hero-produto-content .hero-tag{
    display: inline-block;

    color: #fff !important;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 24px;

    padding: 10px 18px;

    border: 1px solid rgba(255,255,255,.25);

    background: rgba(255,255,255,.08);

    border-radius: 999px;

    backdrop-filter: blur(10px);
}

/* título */
.hero-produto-content h1{
    color: #fff !important;

    font-size: clamp(48px, 8vw, 90px);
    line-height: 1;

    margin-bottom: 28px;

    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;

    text-shadow: 0 10px 30px rgba(0,0,0,.45);
}

/* texto */
.hero-produto-content p{
    color: rgba(255,255,255,.92) !important;

    font-size: 20px;
    line-height: 1.8;

    max-width: 760px;
    margin: 0 auto 40px;
}

/* botão */
.hero-produto .btn-primary{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 34px;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #00c853,
        #00e676
    );

    color: #fff !important;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none;

    box-shadow:
        0 15px 40px rgba(0,200,83,.35);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.hero-produto .btn-primary:hover{
    transform: translateY(-5px);

    box-shadow:
        0 20px 50px rgba(0,200,83,.45);
}

/* mobile */
@media(max-width:768px){

    .hero-produto{
        min-height: 85vh;

        padding:
            160px 20px
            100px;
    }

    .hero-produto-content p{
        font-size: 16px;
        line-height: 1.7;
    }

}



/* BOTÃO HERO VERMELHO */

.btn-red{
    background: linear-gradient(
        135deg,
        #c62828,
        #ff1744
    ) !important;

    box-shadow:
        0 15px 40px rgba(255,23,68,.35) !important;
}

.btn-red:hover{
    transform: translateY(-5px);

    box-shadow:
        0 20px 50px rgba(255,23,68,.5) !important;
}







