/* ===================================================
   EXPERTISE
=================================================== */

.expertise{

    padding:70px 0 30px;
    background:#050505;

}

 /* ===================================================
   CONTAINER
=================================================== */

.expertise .container{

    max-width:1400px;

    margin:auto;

    text-align:center;

}

 /* ===================================================
   TAG
=================================================== */

.expertise .section-tag{

    display:inline-block;

    color:var(--gold);

    font-size:14px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:28px;

}

.expertise .section-tag::after{

    content:"";

    display:block;

    width:46px;

    height:2px;

    background:var(--gold);

    margin:18px auto 0;

}

 /* ===================================================
   TITULO
=================================================== */

.expertise h2{

    font-size:clamp(58px,5vw,76px);

    line-height:1.05;

    font-weight:800;

    color:#ffffff;

    margin-bottom:45px;

}

.expertise h2 span{

    color:var(--gold);

}

 /* ===================================================
   TEXTO
=================================================== */

.expertise-text{

    max-width:820px;

    margin:0 auto;

    font-size:22px;

    line-height:1.8;

    font-weight:400;

    color:rgba(255,255,255,.90);

    margin-bottom:90px;

}

.expertise-text strong{

    color:var(--gold);

    font-weight:600;

}

 /* ===================================================
   GRID
=================================================== */

.expertise-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:32px;

}

 /* ===================================================
   CARD
=================================================== */

.expertise-card{

    background:#0b0b0b;

    border:1px solid rgba(212,168,71,.18);

    border-radius:20px;

    padding:36px;

    transition:.35s ease;

}

.expertise-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

    box-shadow:

    0 18px 40px rgba(212,168,71,.12);

}

 /* ===================================================
   ÍCONE
=================================================== */

.expertise-card i{

    font-size:38px;

    color:var(--gold);

    margin-bottom:28px;

}

 /* ===================================================
   TITULO CARD
=================================================== */

.expertise-card h3{

    font-size:30px;

    font-weight:700;

    color:#ffffff;

    margin-bottom:28px;

}

 /* ===================================================
   LISTA
=================================================== */

.expertise-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.expertise-card li{

    position:relative;

    padding-left:28px;

    margin-bottom:12px;

    line-height:1.8;

    color:rgba(255,255,255,.88);

}

.expertise-card li::before{

    content:"";

    position:absolute;

    left:0;

    top:11px;

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--gold);

}

 /* ===================================================
   RESPONSIVO
=================================================== */

@media(max-width:1200px){

    .expertise h2{

        font-size:64px;

    }

}


@media(max-width:992px){

    .expertise{

        padding:120px 0;

    }

    .expertise-grid{

        grid-template-columns:1fr;

    }

    .expertise h2{

        font-size:54px;

    }

    .expertise-text{

        font-size:19px;

        margin-bottom:70px;

    }

}


@media(max-width:768px){

    .expertise{

        padding:100px 0;

    }

    .expertise h2{

        font-size:44px;

    }

    .expertise-text{

        font-size:17px;

    }

    .expertise-card{

        padding:30px;

    }

}