.hero-empresa {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 680px;
    color: white;
    padding: 60px 0;
    position: relative;
}

.titulo-empresa {
    color: #FFF;
    font-size: 80px;
    font-style: normal;
    font-size: 80px;
    font-weight: 200;
    line-height: 104px; /* 130% */
}

.subtitulo-empresa {
    color: #DDD;
    font-size: 25.6px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 156.25% */
}

.bg-contato {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 570px;
    color: white;
    padding: 60px 0;
    position: relative;
    border-radius: 50px;
}
.contato {
    margin-right: 26rem;
}

/* Responsivo */
@media (max-width: 1000px) {
    .contato {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .titulo-empresa {
        font-size: 32px;
    }

    .subtitulo-empresa {
        font-size: 16px;
    }

    .hero-empresa {
        padding: 40px 0;
        text-align: center;
    }
    .hero-empresa {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 380px;
    }

}

/* Mais espaço entre cards (vertical e horizontal) */
#servicos-cards .row{
    --bs-gutter-y: 28px;   /* espaço vertical */
    --bs-gutter-x: 36px;   /* espaço horizontal */
}

/* Card */
.service-card{
    background:#fff;
    border-radius: 40px;
    border:1px solid rgba(0,0,0,.06);
    box-shadow: 0 14px 28px rgba(0,0,0,.08);
    padding:18px 20px;
    transition: box-shadow .18s ease, transform .18s ease;
}
.service-card:hover{
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(0,0,0,.10);
}
/* o card passa a preencher a coluna e organiza o conteúdo em coluna */
.service-card{
    display:flex;
    flex-direction:column;
    height: 100%;          /* redundante com flex-fill, mas ajuda */
}

/* se algum dia houver botão/cta no card, ele fica grudado embaixo */
.service-card .service-desc{
    margin-top: 4px;
    margin-bottom: 0;
}

/* (opcional) define um piso mínimo p/ evitar card “baixinho” */
@media (min-width: 992px){
    .service-card{ min-height: 180px; }  /* ajuste se quiser */
}

/* Cabeçalho com ícone + título lado a lado */
.service-head{
    display:flex;
    align-items:center;
    gap:12px;                 /* distância ícone-título */
    margin-bottom:8px;        /* separa do texto */
}

/* Ícone sem borda (só a imagem) */
.service-icon{
    width:89px;               /* ajuste fino conforme seus SVGs/PNGs */
    height:89px;
    object-fit:contain;
    flex:0 0 auto;
}

/* Tipografia (igual ao print) */
.service-title{
    color: #000;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
}
.service-desc{
    color: #838383;
    font-size: 22.4px;
    font-style: normal;
    font-weight: 400;
}
.chip-title{
    color: #000;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 576px){
    .service-card{ padding:16px; }
    .service-icon{ width:28px; height:28px; }
    .service-title{ font-size:18px; }
    .service-desc{ font-size:12.5px; }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce){
    .service-card{ transition:none; transform:none; }
}

.pill-grid{
    display:grid;
    grid-template-columns:repeat(4, 299px);
    gap:16px 28px;
    justify-content:center;
    align-items:center;
}
.brand-pill{
    display: inline-flex;
    padding: 18px 33px 18px 33px;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background: #000;
}
.brand-pill .title-linhas{
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
@media (max-width: 992px){
    .pill-grid{
        grid-template-columns:repeat(3, 180px);
    }
}
@media (max-width: 576px){
    .pill-grid{
        grid-template-columns:repeat(2, 160px);
        gap:14px 18px;
    }
    .brand-pill{
        width:160px;
        height:34px;
        font-size:12px;
    }
    .brand-pill .title-linhas{
        font-size: 17px;
    }
    .brand-pill {
        padding: 18px 4px 18px 4px;
    }
}


/* ===== Descrição ===== */
.desc-marcas{
    text-align:center;
    color:#1a1a1a;
    font-size: 20.8px;
    font-weight: 400;
    line-height:1.6;
    max-width:1326px;
    margin:0 auto 26px;
}

/* ===== Grid de logos ===== */
.grid-marcas{
    display:grid;
    grid-template-columns: repeat(5, 1fr);
    gap:24px;
    justify-items:center;
    margin: 60px 3%;
}

/* ===== Card de cada marca ===== */
.card-marca{
    width:194px;
    height:194px;
    background:#EEE;
    border-radius:22px;
    display:flex; align-items:center; justify-content:center;
    box-shadow:
            0 1px 0 rgba(0,0,0,.03),
            0 10px 22px rgba(0,0,0,.08);
    padding:10px;                        /* dá “respiro” ao logo */
}

.card-marca img{
    width:100%;
    height:100%;
    object-fit:contain;                  /* mantém proporção dos SVG/PNGs */
}

/* ===== Responsivo ===== */
@media (max-width: 1200px){
    .panel-marcas{ padding:36px 28px; }
    .card-marca{ width:156px; height:156px; }
}
@media (max-width: 992px){
    .grid-marcas{ grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 576px){
    .titulo-gradiente{ font-size:22px; }
    .desc-marcas{ font-size:13px; }
    .grid-marcas{ grid-template-columns: repeat(2,1fr); gap:18px; }
    .card-marca{ width:140px; height:140px; padding:22px; border-radius:20px; }
}

.title-marcas{
    color: #848484;
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
}

.cliente-logo{
    max-height: 70px;
    width: auto;
}