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

.hero-empresa{
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;

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

    text-align: center;
}

.hero-empresa-bg{
    position: absolute;
    inset: 0;

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

    z-index: 1;
}

/* DESKTOP */

.hero-empresa-bg.desktop{
    background-image: url("../images/loja.jpg");
}

/* MOBILE */

.hero-empresa-bg.mobile{
    display: none;
    background-image: url("../images/loja2.jpg");
}

.hero-empresa-overlay{
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.65),
            rgba(0,0,0,.72)
        );

    z-index: 2;
}

.hero-empresa-content{
    position: relative;
    z-index: 3;

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

    padding: 140px 20px 80px;
}

.hero-empresa-content h1{
    font-size: clamp(48px,8vw,92px);
    line-height: 1;
    color: #fff;

    margin-bottom: 25px;

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

.hero-empresa-content p{
    color: rgba(255,255,255,.9);

    font-size: 19px;
    line-height: 1.7;

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

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

    flex-wrap: wrap;
}

/* ===================================
   EMPRESA
=================================== */

.empresa-section{
    padding: 120px 0;
    background: #fff;
}

.empresa-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.empresa-texto h2{
    font-size: 46px;
    line-height: 1.2;

    margin: 18px 0 30px;

    color: #0f172a;
}

.empresa-texto p{
    font-size: 17px;
    line-height: 1.9;
    color: #475569;

    margin-bottom: 22px;
}

.empresa-image img{
    width: 100%;
    border-radius: 28px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.18);
}

/* ===================================
   DIFERENCIAIS
=================================== */

.diferenciais{
    padding: 120px 0;
    background: #f8fafc;
}

.diferenciais-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;

    margin-top: 60px;
}

.diferencial-card{
    background: #fff;

    border-radius: 24px;

    padding: 40px 30px;

    transition: .4s ease;

    box-shadow:
        0 10px 40px rgba(0,0,0,.05);
}

.diferencial-card:hover{
    transform: translateY(-10px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.12);
}

.diferencial-card i{
    width: 70px;
    height: 70px;

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

    border-radius: 20px;

    background: linear-gradient(135deg,#0f172a,#1e293b);

    color: #fff;
    font-size: 28px;

    margin-bottom: 25px;
}

.diferencial-card h3{
    font-size: 24px;
    color: #0f172a;

    margin-bottom: 18px;
}

.diferencial-card p{
    color: #64748b;
    line-height: 1.8;
}

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

.empresa-produtos{
    padding: 120px 0;
    background: #fff;
}

.empresa-produtos-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.empresa-produtos-image img{
    width: 100%;
    border-radius: 28px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.18);
}

.empresa-produtos-texto h2{
    font-size: 44px;
    line-height: 1.2;

    margin: 20px 0 30px;

    color: #0f172a;
}

.empresa-produtos-texto p{
    color: #475569;

    line-height: 1.9;
    margin-bottom: 22px;
}

.empresa-produtos-texto ul{
    list-style: none;
    margin-top: 30px;
}

.empresa-produtos-texto li{
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 18px;

    font-weight: 600;
    color: #0f172a;
}

.empresa-produtos-texto li i{
    color: #00c853;
}

/* ===================================
   MARCAS
=================================== */

.empresa-marcas{
    padding: 120px 0;
    background: #f8fafc;
}

.empresa-marcas-grid{
    display: grid;
    grid-template-columns: repeat(5,1fr);

    gap: 20px;

    margin-top: 60px;
}

.empresa-marca{
    background: #fff;

    border-radius: 20px;

    padding: 30px 20px;

    text-align: center;

    font-size: 22px;
    font-weight: 700;

    color: #0f172a;

    transition: .4s ease;

    box-shadow:
        0 10px 40px rgba(0,0,0,.05);
}

.empresa-marca:hover{
    transform: translateY(-8px);
}

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

.empresa-cta{
    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #111827
        );

    text-align: center;
}

.empresa-cta-content h2{
    font-size: 56px;
    color: #fff;

    margin: 20px 0;
}

.empresa-cta-content p{
    max-width: 700px;

    margin: 0 auto 35px;

    color: rgba(255,255,255,.82);

    line-height: 1.8;
    font-size: 18px;
}

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

@media(max-width:991px){

    .empresa-grid,
    .empresa-produtos-grid{
        grid-template-columns: 1fr;
    }

    .diferenciais-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .empresa-marcas-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:768px){

    .hero-empresa{
        min-height: 92vh;
    }

    .hero-empresa-bg.desktop{
        display: none;
    }

    .hero-empresa-bg.mobile{
        display: block;
    }

    .hero-empresa-content{
        padding: 140px 20px 60px;
    }

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

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

    .empresa-section,
    .diferenciais,
    .empresa-produtos,
    .empresa-marcas,
    .empresa-cta{
        padding: 90px 0;
    }

    .empresa-texto h2,
    .empresa-produtos-texto h2,
    .empresa-cta-content h2{
        font-size: 36px;
    }

    .diferenciais-grid,
    .empresa-marcas-grid{
        grid-template-columns: 1fr;
    }

    .diferencial-card{
        padding: 35px 25px;
    }

}


/* =========================================
   HERO EMPRESA - TEXOS BRANCOS
========================================= */

.hero-empresa-content .hero-tag{
    color:#ffffff !important;

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

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

    backdrop-filter:blur(10px);

    box-shadow:0 8px 30px rgba(0,0,0,.18);
}

/* CASO TENHA SECTION TAG BRANCA */

.hero-empresa-content .section-tag{
    color:#ffffff !important;
}









/