.so-home-solda-automotiva {
    padding: 104px 0;
    background: var(--so-branco);
}

.so-home-solda-automotiva__grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
    gap: 72px;
    align-items: center;
}

.so-home-solda-automotiva__visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 34px;
    overflow: hidden;
    border-radius: 34px;
    background:
        radial-gradient(circle at 28% 26%, rgba(255, 138, 0, 0.18), transparent 26%),
        radial-gradient(circle at 74% 20%, rgba(47, 107, 255, 0.18), transparent 30%),
        linear-gradient(135deg, #000714 0%, #07162a 54%, #0b1f3a 100%);
    box-shadow: var(--so-sombra-destaque);
}

.so-home-solda-automotiva__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 58px 58px;
}

.so-home-solda-automotiva__quadro {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(0, 7, 20, 0.68);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.so-home-solda-automotiva__quadro span {
    display: block;
    margin-bottom: 12px;
    color: var(--so-laranja);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.so-home-solda-automotiva__quadro strong {
    display: block;
    max-width: 420px;
    color: var(--so-branco);
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.so-home-solda-automotiva__quadro p {
    max-width: 420px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.65;
}

.so-home-solda-automotiva__conteudo h2 {
    max-width: 700px;
    margin: 0;
    color: var(--so-azul-escuro);
    font-size: clamp(36px, 4.4vw, 62px);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.so-home-solda-automotiva__conteudo > p {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--so-texto-secundario);
    font-size: 17px;
    line-height: 1.76;
}

.so-home-solda-automotiva__lista {
    display: grid;
    gap: 14px;
    margin: 32px 0;
}

.so-home-solda-automotiva__item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 22px;
    border: 1px solid var(--so-borda);
    border-radius: 22px;
    background: var(--so-gelo);
    color: var(--so-azul-escuro);
    text-decoration: none;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.so-home-solda-automotiva__item:hover {
    transform: translateX(4px);
    border-color: rgba(255, 138, 0, 0.50);
    background: var(--so-branco);
    box-shadow: 0 18px 42px rgba(11, 31, 58, 0.08);
}

.so-home-solda-automotiva__icone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff4e5 0%, #ffe1b6 100%);
    color: var(--so-laranja);
    border: 1px solid rgba(255, 138, 0, 0.18);
    box-shadow: 0 10px 24px rgba(255, 138, 0, 0.10);
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.so-home-solda-automotiva__icone svg {
    width: 26px;
    height: 26px;
    display: block;
    fill: currentColor;
}

.so-home-solda-automotiva__item:hover .so-home-solda-automotiva__icone {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--so-laranja) 0%, #ffad45 100%);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(255, 138, 0, 0.20);
}

.so-home-solda-automotiva__item strong {
    display: block;
    color: var(--so-azul-escuro);
    font-size: 18px;
    line-height: 1.25;
}

.so-home-solda-automotiva__item p {
    margin: 8px 0 0;
    color: var(--so-texto-secundario);
    font-size: 15px;
    line-height: 1.62;
}

@media (max-width: 1040px) {
    .so-home-solda-automotiva__grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .so-home-solda-automotiva__visual {
        max-width: 760px;
        min-height: 400px;
    }
}

@media (max-width: 680px) {
    .so-home-solda-automotiva {
        padding: 72px 0;
    }

    .so-home-solda-automotiva__visual {
        min-height: 340px;
        padding: 20px;
        border-radius: 28px;
    }

    .so-home-solda-automotiva__quadro {
        padding: 22px;
        border-radius: 20px;
    }

    .so-home-solda-automotiva__conteudo h2 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .so-home-solda-automotiva__conteudo > p {
        font-size: 16px;
    }

    .so-home-solda-automotiva__item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px;
    }
}