/* ===================================
   DIFERENCIAL SECTION
=================================== */

.diferencial-section {
    position: relative;

    padding: 100px 5%;

    background:
        radial-gradient(circle at top left,
            rgba(0, 191, 255, 0.06),
            transparent 30%),

        radial-gradient(circle at bottom right,
            rgba(255, 140, 0, 0.05),
            transparent 30%),

        #020817;

    overflow: hidden;
}

/* ===================================
   TÍTULO
=================================== */

.section-title {
    text-align: center;

    max-width: 760px;

    margin: auto;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;

    padding: 10px 18px;

    margin-bottom: 20px;

    border-radius: 999px;

    background: rgba(0, 191, 255, 0.08);
    border: 1px solid rgba(0, 191, 255, 0.15);

    color: #00bfff;

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 1px;
}

.section-title h2 {
    color: #fff;

    font-size: 2.8rem;

    line-height: 1.2;

    margin-bottom: 20px;
}

.section-title p {
    color: #94a3b8;

    line-height: 1.8;

    font-size: 1rem;
}

/* ===================================
   WRAPPER
=================================== */

.diferencial-wrapper {
    display: grid;

    grid-template-columns: 420px 1fr;

    gap: 50px;

    align-items: center;
}

/* ===================================
   ILUSTRAÇÃO
=================================== */

.diferencial-illustration {
    position: relative;
}

.diferencial-illustration svg {
    width: 100%;
    height: auto;

    filter: drop-shadow(0 0 40px rgba(0, 191, 255, 0.12));
}

/* ===================================
   CARD
=================================== */

.diferencial-card {
    position: relative;

    padding: 45px;

    border-radius: 28px;

    background: rgba(7, 21, 41, 0.88);

    border: 1px solid rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(18px);

    overflow: hidden;
}

.diferencial-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(90deg,
            #00bfff,
            #ff8c00);
}

/* ===================================
   GRID
=================================== */

.diferenciais-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 35px;
}

/* ===================================
   ITEM
=================================== */

.diferencial-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.02);

    border: 1px solid rgba(255, 255, 255, 0.04);

    transition: 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-4px);

    border-color: rgba(0, 191, 255, 0.25);

    background: rgba(0, 191, 255, 0.04);
}

.diferencial-item span {
    min-width: 34px;
    height: 34px;

    border-radius: 10px;

    background: rgba(0, 191, 255, 0.1);

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

    color: #00bfff;

    font-size: 0.9rem;
    font-weight: bold;
}

.diferencial-item p {
    color: #dbeafe;

    line-height: 1.5;

    font-size: 0.95rem;
}

/* ===================================
   TEXTO
=================================== */

.diferencial-text {
    display: flex;
    flex-direction: column;

    gap: 22px;
}

.text-highlight {
    display: flex;
    gap: 18px;
}

.highlight-line {
    width: 4px;

    border-radius: 999px;

    background: linear-gradient(to bottom,
            #00bfff,
            #ff8c00);
}

.diferencial-text p {
    color: #94a3b8;

    line-height: 1.9;

    font-size: 0.96rem;
}

/* ===================================
   CORES
=================================== */

.blue-primary {
    color: #00bfff;
}

.orange-primary {
    color: #ff8c00;
}

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

@media (max-width: 1100px) {

    .diferencial-wrapper {
        grid-template-columns: 1fr;
    }

    .diferencial-illustration {
        max-width: 360px;
        margin: auto;
    }

}

@media (max-width: 768px) {

    .section-title h2 {
        font-size: 2.1rem;
    }

    .diferencial-card {
        padding: 28px;
    }

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

}