/* Estilos Para Empresas */
.secao-hero-empresas {
    padding: 110px 5% 0;
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge-categoria {
    background: #e5e1da;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #7a7a7a;
    display: inline-block;
    margin-bottom: 25px;
}

.titulo-hero-empresas {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.titulo-hero-empresas span {
    font-style: italic;
    font-weight: 400;
}

.texto-hero-empresas {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 520px;
    margin-bottom: 45px;
}

.secao-servicos-empresas {
    padding: 40px 5% 60px;
    background-color: #f5f0e8;
    text-align: center;
}

.titulo-servicos-empresas {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.titulo-servicos-empresas span {
    font-style: italic;
    font-weight: 400;
}

.subtitulo-servicos-empresas {
    font-size: 16px;
    color: #666;
    margin-bottom: 70px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.grade-cards-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.card-servico-empresa {
    background: #fffcf9;
    border-radius: 30px;
    padding: 35px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-servico-empresa:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.cabecalho-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.icone-circulo {
    width: 70px;
    height: 70px;
    background-color: #e5e6da;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5d4e;
    flex-shrink: 0;
}

.titulo-card {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

.titulo-card span {
    font-size: 20px;
    margin-right: 0;
    font-weight: 700;
    color: #1a1a1a;
}

.desc-card {
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 20px;
}

.lista-servicos-titulo {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.lista-servicos {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.lista-servicos li {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

.lista-servicos li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #555;
}

.footer-card-tip {
    margin-top: 25px;
    background-color: #f1efea;
    padding: 16px;
    border-radius: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-card-tip svg {
    flex-shrink: 0;
    color: #4a5d4e;
}

.footer-card-tip p {
    font-size: 12px;
    line-height: 1.4;
    color: #4a4a4a;
    margin: 0;
    font-weight: 500;
}

/* Consultoria */
.secao-consultoria {
    padding: 60px 5% 0;
    background-color: #fffcf9;
}

.container-consultoria {
    max-width: 1200px;
    margin: 0 auto;
    background: #4a5d4e;
    border-radius: 40px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 25px;
    align-items: stretch;
}

.fluxo-consultoria {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.fluxo-consultoria::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: #a5ad96;
    z-index: 0;
}

.etapa-consultoria {
    flex: 1;
    min-width: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.circulo-etapa {
    width: 60px;
    height: 60px;
    background: #fffcf9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    color: #4a5d4e;
}

.etapa-consultoria h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fffcf9;
    margin-bottom: 5px;
}

.etapa-consultoria p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Benefícios */
.secao-beneficios {
    padding: 0 5%;
    text-align: center;
}

.grade-beneficios {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1200px;
    margin: 40px auto 0;
    flex-wrap: wrap;
}

.item-beneficio {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 12px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 10px;
    min-width: 120px;
}

.item-beneficio:last-child {
    border-right: none;
}

.item-beneficio p {
    font-size: 11px;
    font-weight: 700;
    color: #4a4a4a;
    line-height: 1.3;
}

/* CTA Final */
.secao-cta-empresas {
    padding: 40px 5% 30px;
    background-color: #fffcf9;
}

.banner-cta-empresas {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: center;
    position: relative;
}

.titulo-cta {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.titulo-cta span {
    font-style: italic;
    font-weight: 400;
}

.botoes-cta {
    display: flex;
    gap: 20px;
}

.btn-principal {
    background: #1a1c18;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-secundario {
    background: white;
    color: #1a1c18;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-principal:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-secundario:hover {
    transform: translateY(-2px);
    background: #f9f9f9;
}

/* Responsividade - Hero (Tablet e Mobile) */
@media (max-width: 1024px) {
    .secao-hero-empresas {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
        gap: 40px;
    }
    
    .conteudo-hero-empresas {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .titulo-hero-empresas {
        font-size: 42px;
    }

    .texto-hero-empresas {
        margin: 0 auto 15px;
    }

    .grid-icones-hero {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px !important;
        margin-top: 10px !important;
    }

    .grid-icones-hero > div {
        align-items: center;
        text-align: center;
    }

    .container-imagem-hero {
        max-width: 320px;
        margin: 80px auto 0;
        width: 100%;
    }

    .quote-box-hero {
        right: -25px;
        top: -65px !important;
        max-width: 180px;
        text-align: left;
    }
}

/* Responsividade - Consultoria (Tablet e Mobile) */
@media (max-width: 1024px) {
    .container-consultoria {
        display: flex;
        flex-direction: column;
        border-radius: 30px;
    }

    .imagem-consultoria-container {
        order: 2;
        height: 400px !important;
        padding: 0 20px 20px 20px;
        display: block;
    }

    .imagem-consultoria-container img {
        border-radius: 20px;
    }

    .conteudo-consultoria {
        order: 1;
        padding: 40px 20px 20px 20px !important;
    }

    .titulo-consultoria, .desc-consultoria {
        text-align: center !important;
    }

    .fluxo-consultoria {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 10px;
        margin-top: 40px;
    }

    .fluxo-consultoria::before {
        display: none;
    }

    .etapa-consultoria {
        flex: 0 0 30%;
        min-width: 90px;
        gap: 10px;
    }
    
    .etapa-consultoria h4 {
        margin-bottom: 0px;
    }

    .fluxo-consultoria .etapa-consultoria:nth-child(4) {
        margin-right: 15px;
    }

    .fluxo-consultoria .etapa-consultoria:nth-child(5) {
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    .imagem-consultoria-container {
        height: 350px !important;
    }
}