/* ==========================================================
   WHY PERTECNICA
========================================================== */

.hcg-why-pertecnica-section {

    position: relative;
    overflow: hidden;

    padding: 110px 0;

    background:
        linear-gradient(
            180deg,
            #f8f9fb 0%,
            #f5f7fa 100%
        );
}


/* ==========================================================
   PREMIUM VERTICAL ORANGE LINES
========================================================== */

.hcg-why-pertecnica-section::before {

    content: '';

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:

        /* LEFT THIN LINES */

        linear-gradient(
            to bottom,
            rgba(249,115,22,.95),
            rgba(249,115,22,.18)
        ),

        linear-gradient(
            to bottom,
            rgba(249,115,22,.35),
            rgba(249,115,22,.08)
        ),

        /* RIGHT THIN LINES */

        linear-gradient(
            to bottom,
            rgba(249,115,22,.95),
            rgba(249,115,22,.18)
        ),

        linear-gradient(
            to bottom,
            rgba(249,115,22,.35),
            rgba(249,115,22,.08)
        );

    background-repeat: no-repeat;

    background-size:

        /* LEFT */
        2px 88%,
        1px 84%,

        /* RIGHT */
        2px 88%,
        1px 84%;

    background-position:

        /* LEFT */
        38px center,
        56px center,

        /* RIGHT */
        calc(100% - 38px) center,
        calc(100% - 56px) center;
}


/* ==========================================================
   CONTAINER
========================================================== */

.hcg-why-pertecnica-section
.hcg-container {

    width:
        min(
            1280px,
            92%
        );

    margin: 0 auto;

    position: relative;
    z-index: 2;
}


/* ==========================================================
   HEADER
========================================================== */

.hcg-why-header {

    text-align: center;

    max-width: 1000px;

    margin:
        0 auto 70px;
}

.hcg-why-label {

    display: inline-block;

    color: #f97316;

    text-transform: uppercase;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.hcg-why-header h2 {

    font-size:
        clamp(
            46px,
            6vw,
            84px
        );

    line-height: 1.08;

    font-weight: 800;

    color: #0b132b;

    margin:
        0 0 22px;
}

.hcg-why-header p {

    font-size: 22px;

    line-height: 1.9;

    color: #64748b;

    max-width: 1000px;

    margin: 0 auto;
}


/* ==========================================================
   GRID - 2 COLUMNS ONLY
========================================================== */

.hcg-why-grid {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap: 36px;
}


/* ==========================================================
   CARD
========================================================== */

.hcg-why-card {

    position: relative;

    background: #ffffff;

    border:
        1px solid
        rgba(
            15,
            23,
            42,
            .06
        );

    border-radius: 30px;

    padding: 48px;

    min-height: 330px;

    text-decoration: none !important;

    transition:
        all .35s ease;

    box-shadow:
        0 14px 34px
        rgba(
            15,
            23,
            42,
            .05
        );
}


/* ORANGE ACCENT LINE */

.hcg-why-card-line {

    display: block;

    width: 72px;
    height: 4px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #f97316,
            #fb923c
        );

    margin-bottom: 30px;
}


/* CARD TITLE */

.hcg-why-card h3 {

    font-size: 30px;

    font-weight: 700;

    line-height: 1.2;

    color: #0b132b;

    margin:
        0 0 24px;
}


/* CARD DESCRIPTION */

.hcg-why-card p {

    font-size: 19px;

    line-height: 1.9;

    color: #64748b;

    margin: 0;
}


/* HOVER */

.hcg-why-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(
            249,
            115,
            22,
            .12
        );

    box-shadow:
        0 22px 45px
        rgba(
            15,
            23,
            42,
            .08
        );
}


/* ==========================================================
   CTA
========================================================== */

.hcg-why-footer {

    text-align: center;

    margin-top: 55px;
}

.hcg-why-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 340px;
    height: 68px;

    padding: 0 40px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #ff6b00,
            #ff8c2f
        );

    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 20px;
    font-weight: 700;

    box-shadow:
        0 16px 34px
        rgba(
            249,
            115,
            22,
            .18
        );

    transition:
        all .3s ease;
}

.hcg-why-button:hover {

    transform:
        translateY(-3px);
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 900px) {

    .hcg-why-grid {

        grid-template-columns:
            1fr;
    }

    .hcg-why-card {

        min-height: auto;
        padding: 36px;
    }

    .hcg-why-header h2 {

        font-size: 52px;
    }

    .hcg-why-card h3 {

        font-size: 26px;
    }
}