/* =====================================================
   HOME - SIDNEI INFORMÁTICA
   ELEMENTOS EXCLUSIVOS DA PÁGINA INICIAL
===================================================== */




/* =====================================================
   REFINAMENTO DO HERO
===================================================== */

.hero-conteudo h1 {

    max-width:
        560px;

    margin-bottom:
        26px;

    font-size:
        clamp(
            50px,
            4.8vw,
            67px
        );

    line-height:
        0.98;

    letter-spacing:
        -2px;

}


.hero-descricao {

    max-width:
        535px;

    margin-bottom:
        27px;

    line-height:
        1.72;

}


.hero-diferenciais {

    margin:
        29px 0 30px;

    display:
        grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        16px;

}


.hero-diferenciais
.diferencial {

    min-width:
        0;

    display:
        flex;

    align-items:
        center;

    gap:
        9px;

}


.hero-diferenciais
.diferencial-icone {

    flex:
        0 0 auto;

}


.hero-diferenciais
.diferencial span {

    min-width:
        0;

    display:
        block;

    color:
        var(--cinza-texto);

    font-size:
        10.5px;

    line-height:
        1.28;

}


.hero-diferenciais
.diferencial strong {

    display:
        block;

    color:
        var(--preto-forte);

    font-size:
        10.5px;

    font-weight:
        800;

}


@media (max-width: 1100px) {

    .hero-conteudo h1 {

        font-size:
            clamp(
                46px,
                5vw,
                61px
            );

    }


    .hero-diferenciais {

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

        gap:
            13px 18px;

    }

}


@media (max-width: 600px) {

    .hero-conteudo h1 {

        max-width:
            100%;

        margin-bottom:
            21px;

        font-size:
            clamp(
                39px,
                12vw,
                52px
            );

        line-height:
            1;

        letter-spacing:
            -1.4px;

    }


    .hero-descricao {

        margin-bottom:
            23px;

    }


    .hero-diferenciais {

        margin:
            24px 0 26px;

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

    }


    .hero-diferenciais
    .diferencial span,
    .hero-diferenciais
    .diferencial strong {

        font-size:
            10px;

    }

}


/* =====================================================
   DESTAQUE DE VENDAS NO HERO
===================================================== */

.hero-vendas-destaque {

    max-width: 520px;

    margin:
        -4px 0 27px;

    padding:
        12px 14px;

    display: grid;

    grid-template-columns:
        40px 1fr 24px;

    gap: 11px;

    align-items: center;

    border:
        1px solid rgba(239, 43, 45, 0.16);

    border-radius: 10px;

    color:
        var(--preto);

    background:
        #fffafa;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;

}


.hero-vendas-destaque:hover {

    transform:
        translateY(-2px);

    border-color:
        rgba(239, 43, 45, 0.30);

    box-shadow:
        0 7px 20px
        rgba(0, 0, 0, 0.045);

}


.hero-vendas-icone {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    color:
        var(--branco);

    background:
        var(--vermelho);

}


.hero-vendas-icone svg {

    width: 20px;

    height: 20px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;

}


.hero-vendas-texto {

    min-width: 0;

}


.hero-vendas-texto strong {

    display: block;

    margin-bottom: 2px;

    color:
        var(--preto-forte);

    font-size: 12px;

    font-weight: 800;

}


.hero-vendas-texto small {

    display: block;

    color:
        var(--cinza-texto);

    font-size: 10.5px;

    line-height: 1.35;

}


.hero-vendas-seta {

    color:
        var(--vermelho);

    font-size: 20px;

    transition:
        transform 0.2s ease;

}


.hero-vendas-destaque:hover
.hero-vendas-seta {

    transform:
        translateX(3px);

}


/* =====================================================
   SEÇÃO DE VENDAS
===================================================== */

.secao-vendas {

    position: relative;

    overflow: hidden;

    padding:
        58px 0 60px;

    color:
        var(--branco);

    background:
        linear-gradient(
            135deg,
            #262a2e 0%,
            #202428 45%,
            #1c2024 100%
        );

}


/* =====================================================
   SEM EFEITOS PESADOS DE FUNDO
===================================================== */

.secao-vendas::before,
.secao-vendas::after {

    display: none;

}


.secao-vendas .container {

    position: relative;

    z-index: 2;

}


/* =====================================================
   CABEÇALHO DE VENDAS
===================================================== */

.vendas-cabecalho {

    margin-bottom: 27px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 48px;

    align-items: end;

}


.vendas-tag {

    display: block;

    margin-bottom: 7px;

    color:
        #ff5558;

    font-size: 10.5px;

    font-weight: 800;

    letter-spacing: 0.7px;

}


.vendas-cabecalho h2 {

    max-width: 500px;

    color:
        var(--branco);

    font-size:
        clamp(
            30px,
            3.3vw,
            41px
        );

    line-height: 1.06;

    letter-spacing:
        -1px;

    font-weight: 800;

}


.vendas-cabecalho h2 span {

    display: block;

    color:
        #ff4c4f;

}


.vendas-cabecalho-texto {

    padding-bottom: 1px;

}


.vendas-cabecalho-texto p {

    max-width: 560px;

    margin-bottom: 11px;

    color:
        #c8cccf;

    font-size: 12.5px;

    line-height: 1.55;

}


.vendas-link-topo {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        var(--branco);

    font-size: 10.5px;

    font-weight: 800;

    text-transform: uppercase;

    transition:
        gap 0.2s ease,
        color 0.2s ease;

}


.vendas-link-topo span {

    color:
        var(--vermelho);

    font-size: 16px;

}


.vendas-link-topo:hover {

    gap: 11px;

    color:
        #ff6466;

}


/* =====================================================
   GRID DE PRODUTOS
===================================================== */

.vendas-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 13px;

}


/* =====================================================
   CARD DE VENDA
===================================================== */

.venda-card {

    position: relative;

    min-height: 220px;

    padding:
        20px 19px 18px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

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

    border-radius: 12px;

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

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;

}


.venda-card:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(239, 43, 45, 0.34);

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

    box-shadow:
        0 12px 26px
        rgba(0, 0, 0, 0.12);

}


/* =====================================================
   CARD EM DESTAQUE
===================================================== */

.venda-card-destaque {

    border-color:
        rgba(239, 43, 45, 0.27);

}


.venda-card-selo {

    position: absolute;

    top: 13px;

    right: 13px;

    padding:
        4px 7px;

    border-radius: 5px;

    color:
        var(--branco);

    background:
        var(--vermelho);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.6px;

}


/* =====================================================
   ÍCONES
===================================================== */

.venda-card-icone {

    width: 48px;

    height: 48px;

    margin-bottom: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    color:
        #ff5154;

    background:
        rgba(239, 43, 45, 0.08);

}


.venda-card-icone svg {

    width: 33px;

    height: 33px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;

    stroke-linejoin: round;

}


/* =====================================================
   CONTEÚDO DOS CARDS
===================================================== */

.venda-card-categoria {

    display: block;

    margin-bottom: 4px;

    color:
        #ff5a5d;

    font-size: 7.5px;

    font-weight: 800;

    letter-spacing: 0.7px;

}


.venda-card h3 {

    margin-bottom: 6px;

    color:
        var(--branco);

    font-size: 16px;

    line-height: 1.2;

    font-weight: 800;

}


.venda-card p {

    margin-bottom: 13px;

    color:
        #bcc0c3;

    font-size: 10.5px;

    line-height: 1.5;

}


.venda-card > a {

    margin-top: auto;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    align-self: flex-start;

    color:
        var(--branco);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    transition:
        gap 0.2s ease,
        color 0.2s ease;

}


.venda-card > a span {

    color:
        var(--vermelho);

    font-size: 15px;

}


.venda-card > a:hover {

    gap: 10px;

    color:
        #ff6265;

}


/* =====================================================
   CTA ABAIXO DOS PRODUTOS
===================================================== */

.vendas-cta {

    margin-top: 16px;

    padding:
        15px 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 22px;

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

    border-radius: 10px;

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

}


.vendas-cta > div > span {

    display: block;

    margin-bottom: 2px;

    color:
        #ff5558;

    font-size: 7.5px;

    font-weight: 800;

    letter-spacing: 0.7px;

}


.vendas-cta strong {

    color:
        var(--branco);

    font-size: 13.5px;

}


.vendas-cta .botao {

    min-height: 40px;

    padding:
        0 17px;

    font-size: 10.5px;

}


/* =====================================================
   TRANSIÇÃO PARA SERVIÇOS
===================================================== */

.secao-vendas + .secao-servicos {

    padding-top: 78px;

}


/* =====================================================
   RESPONSIVO - 1050PX
===================================================== */

@media (max-width: 1050px) {

    .vendas-grid {

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

    }


    .venda-card {

        min-height: 205px;

    }

}


/* =====================================================
   RESPONSIVO - 800PX
===================================================== */

@media (max-width: 800px) {

    .vendas-cabecalho {

        grid-template-columns:
            1fr;

        gap: 18px;

    }


    .vendas-cabecalho-texto {

        max-width: 650px;

    }

}


/* =====================================================
   RESPONSIVO - 600PX
===================================================== */

@media (max-width: 600px) {

    .hero-vendas-destaque {

        margin-bottom: 24px;

        grid-template-columns:
            38px 1fr 20px;

    }


    .secao-vendas {

        padding:
            50px 0 52px;

        background:
            linear-gradient(
                135deg,
                #262a2e 0%,
                #1f2327 50%,
                #1a1e21 100%
            );

    }


    .vendas-cabecalho {

        margin-bottom: 25px;

        text-align: center;

    }


    .vendas-cabecalho h2 {

        font-size: 32px;

    }


    .vendas-cabecalho-texto p {

        margin-left: auto;

        margin-right: auto;

    }


    .vendas-link-topo {

        justify-content: center;

    }


    .vendas-grid {

        grid-template-columns:
            1fr;

    }


    .venda-card {

        min-height: 195px;

        padding:
            19px 18px 17px;

    }


    .venda-card-icone {

        width: 46px;

        height: 46px;

        margin-bottom: 13px;

    }


    .venda-card-icone svg {

        width: 31px;

        height: 31px;

    }


    .vendas-cta {

        padding:
            19px 17px;

        flex-direction: column;

        text-align: center;

    }


    .vendas-cta .botao {

        width: 100%;

    }

}

/* =====================================================
   AJUSTE DO TÍTULO DO HERO - 2 LINHAS
===================================================== */

@media (min-width: 951px) {

    .hero-container {

        grid-template-columns:
            minmax(0, 46.5%)
            minmax(0, 53.5%);

    }


    .hero-conteudo {

        padding-right:
            34px;

    }


    .hero-conteudo h1 {

        max-width:
            none;

        font-size:
            clamp(
                48px,
                4.15vw,
                57px
            );

        line-height:
            1.02;

        letter-spacing:
            -2px;

    }

}

/* =====================================================
   REFINAMENTO DOS DIFERENCIAIS DO HERO
===================================================== */

.hero-diferenciais {

    gap:
        18px;

}


.hero-diferenciais
.diferencial {

    gap:
        10px;

}


.hero-diferenciais
.diferencial span {

    font-size:
        12px;

    line-height:
        1.35;

}


.hero-diferenciais
.diferencial strong {

    font-size:
        12px;

    font-weight:
        700;

    line-height:
        1.35;

}


@media (max-width: 1100px) {

    .hero-diferenciais {

        gap:
            14px 18px;

    }


    .hero-diferenciais
    .diferencial span,
    .hero-diferenciais
    .diferencial strong {

        font-size:
            11.5px;

    }

}


@media (max-width: 600px) {

    .hero-diferenciais
    .diferencial span,
    .hero-diferenciais
    .diferencial strong {

        font-size:
            11px;

    }

}

/* =====================================================
   REFINAMENTO DO DESTAQUE DE VENDAS NO HERO
===================================================== */

.hero-vendas-texto strong {

    font-size:
        13px;

    font-weight:
        700;

    line-height:
        1.35;

}


.hero-vendas-texto small {

    font-size:
        12px;

    line-height:
        1.45;

}


@media (max-width: 600px) {

    .hero-vendas-texto strong {

        font-size:
            12.5px;

    }


    .hero-vendas-texto small {

        font-size:
            11.5px;

    }

}

/* =====================================================
   REFINAMENTO DA FAIXA DE SERVIÇOS RÁPIDOS
===================================================== */

.servicos-rapidos-container {

    gap:
        0;

}


.servico-rapido {

    padding:
        22px 26px;

}


.servico-rapido strong {

    font-size:
        13px;

    font-weight:
        700;

    line-height:
        1.35;

}


.servico-rapido p {

    margin-top:
        4px;

    font-size:
        12px;

    line-height:
        1.45;

}


/* =====================================================
   REFINAMENTO DA SEÇÃO DE VENDAS
===================================================== */

.vendas-tag {

    margin-bottom:
        9px;

    font-size:
        12px;

    font-weight:
        700;

    letter-spacing:
        0.6px;

}


.vendas-cabecalho h2 {

    font-size:
        clamp(
            31px,
            3.1vw,
            39px
        );

    line-height:
        1.08;

}


.vendas-cabecalho-texto p {

    font-size:
        13px;

    line-height:
        1.65;

}


.vendas-link-topo {

    font-size:
        12px;

    font-weight:
        700;

}


/* =====================================================
   CARDS DE PRODUTOS
===================================================== */

.venda-card {

    min-height:
        238px;

    padding:
        23px 21px 21px;

}


.venda-card-categoria {

    margin-bottom:
        5px;

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        0.6px;

}


.venda-card h3 {

    margin-bottom:
        8px;

    font-size:
        18px;

    line-height:
        1.25;

    font-weight:
        700;

}


.venda-card p {

    margin-bottom:
        16px;

    font-size:
        12px;

    line-height:
        1.6;

}


.venda-card > a {

    font-size:
        11px;

    font-weight:
        700;

}


/* =====================================================
   CTA INFERIOR DA SEÇÃO DE VENDAS
===================================================== */

.vendas-cta {

    margin-top:
        18px;

    padding:
        17px 20px;

}


.vendas-cta > div > span {

    margin-bottom:
        4px;

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        0.6px;

}


.vendas-cta strong {

    font-size:
        14px;

    font-weight:
        700;

}


.vendas-cta .botao {

    min-height:
        42px;

    padding:
        0 18px;

    font-size:
        11px;

    font-weight:
        700;

}


/* =====================================================
   AJUSTES RESPONSIVOS DA SEÇÃO DE VENDAS
===================================================== */

@media (max-width: 1050px) {

    .venda-card {

        min-height:
            225px;

    }

}


@media (max-width: 600px) {

    .servico-rapido {

        padding:
            18px 20px;

    }


    .servico-rapido strong {

        font-size:
            12.5px;

    }


    .servico-rapido p {

        font-size:
            11.5px;

    }


    .vendas-tag {

        font-size:
            11px;

    }


    .vendas-cabecalho h2 {

        font-size:
            31px;

    }


    .vendas-cabecalho-texto p {

        font-size:
            12.5px;

    }


    .vendas-link-topo {

        font-size:
            11.5px;

    }


    .venda-card {

        min-height:
            215px;

        padding:
            21px 19px 19px;

    }


    .venda-card h3 {

        font-size:
            17px;

    }


    .venda-card p {

        font-size:
            11.5px;

    }


    .venda-card > a {

        font-size:
            10.5px;

    }

}

/* =====================================================
   REFINAMENTO DA SEÇÃO DE SERVIÇOS
===================================================== */

.secao-servicos {

    padding-top:
        68px;

    padding-bottom:
        66px;

}


.secao-servicos
.titulo-secao {

    margin-bottom:
        32px;

}


.servicos-grid {

    gap:
        16px;

}


.card-servico {

    min-height:
        300px;

    padding:
        34px 24px 28px;

}


.card-servico-icone {

    margin-bottom:
        22px;

}


.card-servico h3 {

    margin-bottom:
        12px;

    font-size:
        18px;

    line-height:
        1.28;

    font-weight:
        700;

}


.card-servico p {

    font-size:
        12.5px;

    line-height:
        1.6;

}


.card-detalhe {

    margin-top:
        20px;

}


.servicos-cta {

    margin-top:
        30px;

}


/* =====================================================
   RESPONSIVO - SERVIÇOS
===================================================== */

@media (max-width: 1050px) {

    .card-servico {

        min-height:
            285px;

    }

}


@media (max-width: 700px) {

    .secao-servicos {

        padding-top:
            56px;

        padding-bottom:
            56px;

    }


    .secao-servicos
    .titulo-secao {

        margin-bottom:
            26px;

    }


    .card-servico {

        min-height:
            0;

        padding:
            28px 22px 24px;

    }


    .card-servico-icone {

        margin-bottom:
            18px;

    }


    .card-servico h3 {

        font-size:
            17px;

    }


    .card-servico p {

        font-size:
            12px;

    }


    .servicos-cta {

        margin-top:
            26px;

    }

}

/* =====================================================
   REFINAMENTO DA SEÇÃO "POR QUE ESCOLHER"
===================================================== */

.escolher-conteudo h2 {

    margin-bottom:
        16px;

}


.escolher-intro {

    margin-bottom:
        28px;

    font-size:
        13.5px;

    line-height:
        1.65;

}


.diferenciais-grid {

    gap:
        24px 28px;

}


.diferencial-card {

    gap:
        14px;

}


.diferencial-card h3 {

    margin-bottom:
        6px;

    font-size:
        14px;

    line-height:
        1.35;

    font-weight:
        700;

}


.diferencial-card p {

    font-size:
        12.5px;

    line-height:
        1.6;

}


/* =====================================================
   RESPONSIVO - POR QUE ESCOLHER
===================================================== */

@media (max-width: 900px) {

    .escolher-intro {

        font-size:
            13px;

    }


    .diferencial-card h3 {

        font-size:
            13.5px;

    }


    .diferencial-card p {

        font-size:
            12px;

    }

}


@media (max-width: 600px) {

    .escolher-conteudo h2 {

        margin-bottom:
            14px;

    }


    .escolher-intro {

        margin-bottom:
            24px;

        font-size:
            12.5px;

    }


    .diferenciais-grid {

        gap:
            20px;

    }


    .diferencial-card {

        gap:
            12px;

    }


    .diferencial-card h3 {

        font-size:
            13px;

    }


    .diferencial-card p {

        font-size:
            11.5px;

    }

}

/* =====================================================
   REFINAMENTO DA SEÇÃO DE AVALIAÇÕES
===================================================== */

.avaliacoes {

    padding-bottom:
        64px;

}


.avaliacoes-grid {

    gap:
        22px;

}


.avaliacao-card {

    min-height:
        300px;

    padding:
        28px;

}


.avaliacao-topo {

    margin-bottom:
        20px;

}


.avaliacao-nome strong {

    font-size:
        13.5px;

    font-weight:
        700;

    line-height:
        1.35;

}


.avaliacao-nome span {

    margin-top:
        4px;

    font-size:
        11.5px;

    line-height:
        1.4;

    color:
        #7b8288;

}


.avaliacao-estrelas {

    margin-bottom:
        24px;

    font-size:
        16px;

    letter-spacing:
        1px;

}


.avaliacao-texto {

    font-size:
        12.5px;

    line-height:
        1.7;

}


.avaliacoes-botao {

    margin-top:
        30px;

}


.avaliacoes-botao .botao {

    font-size:
        12px;

    font-weight:
        700;

}


/* =====================================================
   APROXIMA A PRÓXIMA SEÇÃO
===================================================== */

.avaliacoes + .acesso-remoto-home {

    margin-top:
        0;

}


/* =====================================================
   RESPONSIVO - AVALIAÇÕES
===================================================== */

@media (max-width: 900px) {

    .avaliacoes {

        padding-bottom:
            54px;

    }


    .avaliacao-card {

        min-height:
            0;

        padding:
            24px;

    }


    .avaliacao-nome strong {

        font-size:
            13px;

    }


    .avaliacao-nome span {

        font-size:
            11px;

    }


    .avaliacao-texto {

        font-size:
            12px;

    }

}


@media (max-width: 600px) {

    .avaliacoes {

        padding-bottom:
            46px;

    }


    .avaliacoes-grid {

        gap:
            16px;

    }


    .avaliacao-card {

        padding:
            22px;

    }


    .avaliacao-estrelas {

        margin-bottom:
            20px;

    }


    .avaliacoes-botao {

        margin-top:
            25px;

    }

}

/* =====================================================
   REFINAMENTO DA SEÇÃO DE CONTATO E LOCALIZAÇÃO
===================================================== */

.contato-intro {

    margin-bottom:
        28px;

    font-size:
        13.5px;

    line-height:
        1.65;

}


.contato-informacoes {

    gap:
        18px;

}


.contato-item {

    gap:
        14px;

}


.contato-item > div:last-child > span {

    font-size:
        10.5px;

    font-weight:
        700;

    letter-spacing:
        0.6px;

}


.contato-item strong {

    margin-bottom:
        4px;

    font-size:
        15px;

    line-height:
        1.35;

    font-weight:
        700;

}


.contato-item p {

    font-size:
        12.5px;

    line-height:
        1.55;

}


.contato-botoes {

    margin-top:
        26px;

}


/* =====================================================
   RESPONSIVO - CONTATO E LOCALIZAÇÃO
===================================================== */

@media (max-width: 900px) {

    .contato-intro {

        margin-bottom:
            25px;

        font-size:
            13px;

    }


    .contato-item strong {

        font-size:
            14.5px;

    }


    .contato-item p {

        font-size:
            12px;

    }

}


@media (max-width: 600px) {

    .contato-intro {

        margin-bottom:
            22px;

        font-size:
            12.5px;

    }


    .contato-informacoes {

        gap:
            16px;

    }


    .contato-item {

        gap:
            12px;

    }


    .contato-item strong {

        font-size:
            14px;

    }


    .contato-item p {

        font-size:
            11.5px;

    }


    .contato-botoes {

        margin-top:
            22px;

    }

}

