/* ====================================
   RESET
==================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#02132f;
}

/* ====================================
   BANNER PRINCIPAL
==================================== */

.ass-products-showcase{
    position:relative;
    width:100%;
    height:640px;
    overflow:hidden;

    background:
    linear-gradient(
        90deg,
        rgba(0,9,35,.98) 0%,
        rgba(0,18,58,.96) 0%,
        rgba(0,13,40,.93) 0%
    ),
    url("../imag/construction-worker-overlooking-cityscape.webp");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* ====================================
   CAMADA ESCURA
==================================== */

.ass-dark-layer{
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at left center,
        rgba(0,68,180,.35),
        transparent 70%
    );

    z-index:1;
}

/* ====================================
   FAIXA AMARELA DIAGONAL
==================================== */

.ass-golden-strip{
    position:absolute;

    top:-150px;
    right:18%;

    width:260px;
    height:130%;

    background:#f7be00;

    transform:rotate(34deg);

    z-index:2;
}

/* ====================================
   CONTAINER
==================================== */

.ass-showcase-wrapper{
    position:relative;
    z-index:3;

    max-width:1400px;
    min-height:650px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:60px;
}

/* ====================================
   CONTEÚDO ESQUERDO
==================================== */

.ass-showcase-content{
    width:52%;
}

/* ====================================
   ETIQUETA PRODUTOS
==================================== */

.ass-category-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    color:#f7be00;

    border:1px solid #f7be00;

    padding:12px 20px;

    border-radius:6px;

    font-size:14px;
    font-weight:700;

    margin-bottom:25px;
}

.ass-category-badge i{
    font-size:14px;
}

/* ====================================
   TÍTULO
==================================== */

.ass-showcase-content h1{
    color:#ffffff;

    font-size:3.2rem;
    line-height:1.05;

    font-weight:900;

    max-width:650px;
}

.ass-showcase-content h1 span{
    display:block;
    color:#f7be00;
}

/* ====================================
   DESCRIÇÃO
==================================== */

.ass-showcase-content p{
    margin-top:25px;

    color:#ffffff;

    font-size:1.35rem;
    line-height:1.7;

    max-width:620px;
}

/* ====================================
   BENEFÍCIOS
==================================== */

.ass-feature-grid{
    display:flex;
    align-items:flex-start;
    gap:35px;

    margin-top:45px;

    flex-wrap:wrap;
}

.ass-feature-card{
    display:flex;
    flex-direction:column;
    align-items:center;

    text-align:center;

    color:#ffffff;

    position:relative;
}

.ass-feature-card:not(:last-child)::after{
    content:'';

    position:absolute;

    right:-18px;
    top:5px;

    width:1px;
    height:55px;

    background:rgba(255,255,255,.15);
}

.ass-feature-card i{
    color:#f7be00;

    font-size:28px;

    margin-bottom:12px;
}

.ass-feature-card span{
    font-size:15px;
    line-height:1.5;
    font-weight:500;
}

/* ====================================
   IMAGEM DIREITA
==================================== */

.ass-showcase-visual{
    width:48%;

    position:relative;

    display:flex;
    justify-content:center;
    align-items:flex-end;
}

.ass-showcase-visual img{
    width:100%;
    max-width:600px;
    height: 500px;
    margin-top: 90px;
    display:block;
    object-fit:contain;
    position:relative;
    z-index:5;
}

/* ====================================
   TABLET
==================================== */

@media(max-width:991px){

    .ass-showcase-wrapper{
        flex-direction:column;
        text-align:center;

        padding:50px 30px;
    }

    .ass-showcase-content{
        width:100%;
    }

    .ass-showcase-visual{
        width:100%;
        margin-top:40px;
    }

    .ass-showcase-content h1{
        font-size:4rem;
        max-width:none;
    }

    .ass-showcase-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .ass-feature-grid{
        justify-content:center;
    }

    .ass-golden-strip{
        right:50%;
        transform:
            translateX(50%)
            rotate(34deg);
    }
}

/* ====================================
   SMARTPHONE
==================================== */

@media(max-width:768px){

    .ass-products-showcase{
        min-height:auto;
    }

    .ass-showcase-wrapper{
        padding:40px 20px;
    }

    .ass-showcase-content h1{
        font-size:2.8rem;
    }

    .ass-showcase-content p{
        font-size:1rem;
        line-height:1.8;
    }

    .ass-feature-grid{
        gap:25px;
    }

    .ass-feature-card{
        width:45%;
    }

    .ass-feature-card::after{
        display:none;
    }

    .ass-golden-strip{
        width:170px;
    }
}

/* ====================================
   TELEMÓVEIS PEQUENOS
==================================== */

@media(max-width:480px){

    .ass-showcase-content h1{
        font-size:2.2rem;
    }

    .ass-category-badge{
        font-size:12px;
        padding:10px 15px;
    }

    .ass-feature-card{
        width:100%;
    }

    .ass-golden-strip{
        width:120px;
    }
}

/* =======================================
RESET
======================================= */

.ass-products-section{

    background:#ffffff;

    background-size:cover;
    background-position:center;

    padding:50px 20px 70px;
}

/* =======================================
CONTAINER
======================================= */

.ass-container{
    max-width:1300px;
    margin:auto;
}

/* =======================================
TÍTULOS
======================================= */

.ass-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;

    margin-bottom:35px;
}

.ass-title span{
    width:80px;
    height:2px;
    background:#d8a400;
}

.ass-title h2{
    color:#080808;
    font-size:2rem;
    font-weight:800;
}

.ass-title strong{
    color:#f2b705;
}

/* =======================================
CATEGORIAS
======================================= */

.ass-categories{
    display:grid;
    grid-template-columns:
    repeat(6,1fr);
    gap:25px;
    margin-bottom:60px;
}

.ass-category{
    text-align:center;
    color:#0a0a0a;
}

.ass-category-icon{
    width:110px;
    height:110px;
    border:1.8px solid #f2b705;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 15px;
    transition:.35s;
}

.ass-category-icon i{
    font-size:42px;
    color:#062D66;
    transition:.35s;
}

.ass-category:hover .ass-category-icon{

    transform:translateY(-5px);
    border-color:#ffc107;
    box-shadow:
    0 0 25px rgba(242,183,5,.25);
}

.ass-category:hover .ass-category-icon i{

    color:#ffc107;
}

.ass-category h3{

    font-size:1rem;
    line-height:1.5;
    font-weight:700;
}

/* =======================================
PRODUTOS
======================================= */

.ass-products-title{
    margin-bottom:30px;
}

.ass-products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    padding: 0 50px;
    gap:15px;
}

.ass-product-card{

    background:#ffffff;

    border-radius:8px;

    overflow:hidden;

    padding:15px;

    display:flex;
    flex-direction:column;

    transition:.35s;
    margin-bottom: 30px;
}

.ass-product-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.15);
}

.ass-product-image{

    height:180px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:15px;
}

.ass-product-image img{

    max-width:100%;
    max-height:170px;

    transition:.35s;
}

.ass-product-card:hover img{

    transform:scale(1.05);
}

.ass-product-card h4{

    color:#111;

    font-size:18px;

    font-weight:700;

    margin-bottom:10px;

    line-height:1.4;
}

.ass-product-card p{

    color:#555;

    font-size:14px;

    line-height:1.7;

    margin-bottom:20px;

    flex:1;
}

.ass-btn{

    background:#f2b705;

    color:#111;

    text-decoration:none;

    text-align:center;

    padding:12px;

    border-radius:4px;

    font-weight:700;

    transition:.3s;
}

.ass-btn:hover{

    background:#ffc107;
}
/* =======================================
TABLET
======================================= */

@media(max-width:1024px){

    .ass-categories{

        grid-template-columns:
        repeat(4,1fr);
    }

    .ass-products-grid{

        grid-template-columns:
        repeat(3,1fr);
    }
}

/* =======================================
SMARTPHONE
======================================= */

@media(max-width:768px){

    .ass-title h2{
        font-size:1.3rem;
        text-align:center;
    }

    .ass-title span{
        width:40px;
    }

    .ass-categories{

        grid-template-columns:
        repeat(2,1fr);

        gap:20px;
    }

    .ass-category img{

        width:90px;
        height:90px;
    }

    .ass-products-grid{

        grid-template-columns:1fr;
    }

    .ass-price{

        font-size:1.7rem;
    }
}

/* ==========================================
   ALL SAFETY SOLUTIONS
   BANNER DE BENEFÍCIOS
========================================== */

.allsafe-priority-banner{

    max-width:1400px;
    width:100%;

    margin:0 auto;

    display:flex;
    align-items:center;

    border:1px solid #d8a400;
    border-radius:24px;

    overflow:hidden;

    background:
    linear-gradient(
        90deg,
        #00174b 0%,
        #001340 100%
    );

    position:relative;
}

/* ==========================================
   BLOCO AMARELO ESQUERDO
========================================== */

.allsafe-priority-highlight{

    width:380px;
    min-height:170px;

    background:#f2b705;

    display:flex;
    align-items:center;

    gap:25px;

    padding:30px;

    position:relative;

    clip-path:polygon(
        0 0,
        100% 0,
        85% 100%,
        0 100%
    );
}

/* ==========================================
   ÍCONE ESCUDO
========================================== */

.allsafe-priority-icon{

    flex-shrink:0;
}

.allsafe-priority-icon i{

    font-size:90px;
    color:#ffffff;
}

/* ==========================================
   TEXTO ESQUERDO
========================================== */

.allsafe-priority-content h2{

    color:#081426;

    font-size:24px;
    font-weight:900;

    line-height:1.05;

    margin-bottom:12px;

    text-transform:uppercase;
}

.allsafe-priority-content p{

    color:#081426;

    font-size:14px;
    line-height:1.6;

    max-width:200px;
}

/* ==========================================
   ÁREA DIREITA
========================================== */

.allsafe-features-grid{

    flex:1;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    align-items:center;
}

/* ==========================================
   ITEM
========================================== */

.allsafe-feature-card{

    text-align:center;

    padding:25px 25px;

    color:#ffffff;

    position:relative;
}

/* Linha divisória */

.allsafe-feature-card:not(:last-child)::after{

    content:"";

    position:absolute;

    right:0;
    top:50%;

    transform:translateY(-50%);

    width:1px;
    height:95px;

    background:
    rgba(255,255,255,.15);
}

/* ==========================================
   ÍCONES
========================================== */

.allsafe-feature-card i{

    color:#f2b705;

    font-size:34px;

    margin-bottom:15px;

    display:block;
}

/* ==========================================
   TÍTULOS
========================================== */

.allsafe-feature-card h3{

    font-size:18px;
    font-weight:800;

    line-height:1.35;

    margin-bottom:10px;

    text-transform:uppercase;
}

/* ==========================================
   DESCRIÇÃO
========================================== */

.allsafe-feature-card p{

    font-size:14px;

    line-height:1.6;

    color:#d6d6d6;
}

/* ==========================================
   EFEITO HOVER
========================================== */

.allsafe-feature-card{

    transition:.35s ease;
}

.allsafe-feature-card:hover{

    background:
    rgba(255,255,255,.03);
}

.allsafe-feature-card:hover i{

    transform:translateY(-3px);
}

.allsafe-feature-card i{

    transition:.35s ease;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width:992px){

    .allsafe-priority-banner{

        flex-direction:column;
    }

    .allsafe-priority-highlight{

        width:100%;

        clip-path:none;

        justify-content:center;
    }

    .allsafe-features-grid{

        width:100%;

        grid-template-columns:
        repeat(2,1fr);
    }

    .allsafe-feature-card:nth-child(2)::after{

        display:none;
    }
}

/* ==========================================
   SMARTPHONE
========================================== */

@media (max-width:768px){

    .allsafe-priority-highlight{

        flex-direction:column;

        text-align:center;

        padding:35px 25px;
    }

    .allsafe-priority-content p{

        max-width:100%;
    }

    .allsafe-priority-icon i{

        font-size:70px;
    }

    .allsafe-priority-content h2{

        font-size:28px;
    }

    .allsafe-features-grid{

        grid-template-columns:1fr;
    }

    .allsafe-feature-card{

        border-bottom:
        1px solid rgba(255,255,255,.08);
    }

    .allsafe-feature-card:last-child{

        border-bottom:none;
    }

    .allsafe-feature-card::after{

        display:none !important;
    }
}

/* ==========================================
   TELEMÓVEIS PEQUENOS
========================================== */

@media (max-width:480px){

    .allsafe-priority-highlight{

        padding:30px 20px;
    }

    .allsafe-priority-content h2{

        font-size:24px;
    }

    .allsafe-priority-content p{

        font-size:13px;
    }

    .allsafe-feature-card{

        padding:25px 20px;
    }

    .allsafe-feature-card h3{

        font-size:16px;
    }

    .allsafe-feature-card p{

        font-size:13px;
    }
}