.inicio{
    background-color: #141414;
    display: flex;

    justify-content: center;
    gap: 200px;
    padding: 60px 50px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}
.fundo-inicio{
    background-color: rgba(217, 217, 217, 0.32);
    margin-left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
    padding: 40px 0;
}
.logo-inicio{
    width: 300px;
    height: 200px; /* altura do “recorte” */
    max-width: 100%;
    overflow: hidden; /* corta o que passar */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-inicio-img{
    width: 100%;
    height: 100%;
    object-fit: cover; /* recorta sem achatar */
    object-position: center; /* mude para 'center left' etc. */
    display: block;
}
.text-ini{
    margin: 20px 90px;
    font-size: 15px;
    color: #fff;
    /* font-weight: 500; */
}

.img-inicio{
	height: auto;
	width: 400px;
	display: block;
    overflow: hidden;
    align-items: center;

    margin-left: 0;
    margin-right: 0;

}
.img-inicio img{
    /* height: 100%; */
	width: 100%;
	object-fit: cover;
    object-position: center;
    margin-left: 0;
}

/* Mobile: fundo em cima, imagem em baixo */
@media (max-width: 768px) {
    .inicio {
        flex-direction: column;
        align-items: stretch;
        padding: 40px 16px;
        gap: 18px;
    }

    .fundo-inicio {
        width: 100%;
        padding: 28px 16px;
        box-sizing: border-box;
    }

    .img-inicio {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 600px) {
    .logo-inicio {
        width: 220px;
        height: 160px;
    }

    .text-ini {
        margin: 16px 0;
        font-size: 14px;
    }
}

/* ===== Sobre mim (layout igual ao mock) ===== */
.sobre {
    background: #dedbdb;
    padding: 70px 24px;
}

.sobre-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.sobre-photo {
    width: 360px;
    height: 480px;
    background: #111;
    padding: 20px;
    box-sizing: border-box;
}

.sobre-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.sobre-divider {
    width: 2px;
    height: 420px;
    background: #c9bab2;
}

.sobre-content {
    width: 520px;
    max-width: 100%;
}

.sobre-title-wrap {
    position: relative;
    width: 280px;
    margin: 0 0 18px 90px; /* deslocamento igual ao mock */
}

.sobre-title-wrap::before {
    content: "";
    position: absolute;
    left: -36px;
    top: -22px;
    width: 240px;
    height: 60px;
    background: rgba(0, 0, 0, 0.55);
}

.sobre-title {
    position: relative;
    margin: 0;
    background: #111;
    color: #fff;
    padding: 12px 28px;
    font-size: 40px;
    line-height: 1;
    font-weight: 400;
    font-family: "Times New Roman", Times, serif;
}

.sobre-box {
    background: #cfcfcf;
    padding: 22px 26px;
}

.sobre-list {
    margin: 0;
    padding-left: 18px;
    color: #111;
    font-size: 15px;
    line-height: 1.6;
}

.sobre-list li {
    margin: 6px 0;
}

/* ===== Valores ===== */
.valores {
    background: #141414;
    padding: 70px 24px;
    overflow-x: hidden;
    box-sizing: border-box;
}

.valores-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 2px 0.9fr;
    gap: 65px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}
.valores-lista {
    display: flex;
    justify-content: center;
}
/* .valores-lista2 {
    margin: 0 0 16px;
    display: flex;
    justify-content: center;
} */
.valores-lista3 {
    display: flex;
    text-align: center;
    justify-content: center;
}
.valores-lista h2 {
    /* margin: 0 0 16px; */
    color: #f2f2f2;
    font-size: 34px;
    font-weight: 500;
    font-family: "Times New Roman", Times, serif;
}

.valores-box {
    background: #1d1d1d;
    width: auto;
    max-width: 100%;
    padding: 60px 0;
    border: 5px solid #2b2b2b;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    text-align: center;
    /* margin-left: auto; */
    box-sizing: border-box;
    
}

.valores-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 50px;
    color: #f0f0f0;
    font-size: 30px;
    font-family: "Times New Roman", Times, serif;
}

.valores-divider {
    width: 2px;
    height: 100%;
    background: #c9bab2;
}

.valores-imagem {
    background: #2a2a2a;
    padding: 20px 0;
    border: 2px solid #3a3a3a;
    display: flex;
    justify-content: center;
}

.valores-imagem img {
    width: 90%;
    height: 90%;
    max-height: 640px;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

@media (max-width: 900px) {
    .valores-inner {
        grid-template-columns: 1fr;
    }

    .valores-divider {
        width: 100%;
        height: 2px;
    }

    .valores-box {
        width: 100%;
        padding: 32px 16px;
    }

    .valores-box ul {
        font-size: 22px;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .valores {
        padding: 56px 18px;
    }

    .valores-box {
        padding: 28px 14px;
    }

    .valores-box ul {
        font-size: 20px;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .valores {
        padding: 50px 16px;
    }

    .valores-inner {
        gap: 18px;
    }

    .valores-lista {
        width: 100%;
    }

    .valores-lista h2 {
        font-size: 26px;
        text-align: center;
    }

    .valores-box {
        width: 100%;
        padding: 24px 12px;
        margin: 0;
    }

    .valores-box ul {
        font-size: 18px;
        gap: 10px;
    }

    .valores-imagem {
        padding: 12px;
    }

    .valores-imagem img {
        width: 100%;
        height: auto;
        max-height: 320px;
    }
}

@media (max-width: 480px) {
    .valores {
        padding: 40px 12px;
    }

    .valores-inner {
        gap: 14px;
    }

    .valores-lista h2 {
        font-size: 24px;
    }

    .valores-box {
        padding: 20px 10px;
        border-width: 1px;
    }

    .valores-box ul {
        font-size: 16px;
        gap: 6px;
    }
}

@media (max-width: 900px) {
    .sobre-inner {
        flex-direction: column;
        gap: 24px;
    }

    .sobre-photo {
        width: min(420px, 100%);
        height: 420px;
    }

    .sobre-divider {
        display: none;
    }

    .sobre-content {
        width: 100%;
    }

    .sobre-title-wrap {
        margin: 0 auto 16px auto;
    }
}

@media (max-width: 600px) {
    .sobre {
        padding: 50px 16px;
    }

    .sobre-photo {
        height: 320px;
    }

    .sobre-title-wrap {
        width: auto;
    }

    .sobre-title-wrap::before {
        left: -18px;
        top: -16px;
        width: 180px;
        height: 48px;
    }

    .sobre-title {
        font-size: 32px;
        padding: 10px 20px;
    }

    .sobre-list {
        font-size: 14px;
    }
}

/* ===== Digital Marketing (baseado na imagem enviada) ===== */
.digital-mkt {
    background: #111;
}

.digital-hero {
	height: 320px;
	overflow: hidden;
	background: #111;
}

.digital-hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.digital-panel {
    background: #f6f6f6;
}

.digital-panel-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 34px 24px;
    display: grid;
    grid-template-columns: 1fr 2px 1.2fr;
    gap: 26px;
    align-items: center;
}

.digital-divider {
    background: #c9bab2;
    width: 2px;
    height: 100%;
}

.digital-bullets {
    margin: 0;
    padding-left: 18px;
    color: #111;
    font-size: 18px;
    line-height: 1.9;
}

.digital-bullets li {
    margin: 10px 0;
}

.digital-text p {
    margin: 0;
    color: #222;
    font-size: 18px;
    line-height: 2.1;
    text-align: center;
}

@media (max-width: 768px) {
    .digital-hero { height: 240px; }

    /* No mobile, foca o recorte na esquerda para aparecer o texto */
    .digital-hero-img { object-position: 30% center; }

    .digital-panel-inner {
        grid-template-columns: 1fr;
    }

    .digital-divider {
		display: block;
		width: 100%;
		height: 2px;
		margin: 18px 0;
    }

    .digital-text p {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .digital-panel-inner {
        padding: 26px 16px;
    }

    .digital-bullets {
        font-size: 16px;
    }

    .digital-text p {
        font-size: 16px;
        line-height: 1.8;
    }
}

/* Telas bem estreitas: não recorta, só reduz a imagem */
@media (max-width: 425px) {
    .digital-hero {
        height: auto;
        overflow: visible;
    }

    .digital-hero-img {
        height: auto;
        object-fit: contain;
        object-position: center;
    }
}

/* Quando a altura da tela é baixa (ex.: celular deitado), não recorta: apenas reduz */
@media (max-height: 425px) {
    .digital-hero {
        height: clamp(140px, 40vh, 240px);
    }

    .digital-hero-img {
        object-fit: contain;
        object-position: center;
    }
}

/* ===== Serviços (carrossel vertical) ===== */
.servicos {
    background: #141414;
    padding: 60px 24px 80px;
}

.servicos-header {
    max-width: 1100px;
    margin: 0 auto 24px;
}

.servicos-header h2 {
    margin: 0;
    color: #f5f5f5;
    font-size: 36px;
    font-weight: 500;
    font-family: "Times New Roman", Times, serif;
}

.servicos-line {
    height: 2px;
    background: #c9bab2;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

.servicos-carousel {
    max-width: 1100px;
    margin: 0 auto;
}

.servicos-viewport {
    max-height: 560px;
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    padding-right: 6px;
}

.servicos-viewport::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.servicos-track {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.servico-card {
    background: #fefefe;
    border-radius: 12px;
    border: 1px solid #e6d8c8;
    padding: 22px 26px;
    display: grid;
    grid-template-columns: 260px 1px 1fr;
    gap: 22px;
    align-items: center;
    scroll-snap-align: start;
}

.servico-title {
    font-family: "Times New Roman", Times, serif;
    font-size: 22px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    color: #1b1b1b;
}

.servico-divider {
    width: 1px;
    height: 100%;
    background: #c9bab2;
}

.servico-content {
    width: 100%;
}

.servico-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 36px;
}

.servico-cols ul {
    margin: 0;
    padding-left: 18px;
    color: #222;
    font-size: 14.5px;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .servicos {
        padding: 50px 16px 70px;
    }

    .servicos-header h2 {
        font-size: 30px;
    }

    .servicos-viewport {
        max-height: 420px;
    }

    .servico-card {
        padding: 18px 18px;
        gap: 16px;
    }

    .servico-title {
        font-size: 18px;
    }

    .servico-cols ul {
        font-size: 13.5px;
    }
}

@media (max-width: 480px) {
    .servicos-header h2 {
        font-size: 26px;
    }

    .servicos-viewport {
        max-height: 360px;
    }

    .servico-card {
        padding: 16px;
    }

    .servico-title {
        font-size: 16px;
    }
}

/* ===== Clientes ===== */
.clientes {
    background: #ffffff;
    padding: 60px 0 80px;
}

.clientes-header {
    max-width: 1100px;
    margin: 0 auto 26px;
}

.clientes-header h2 {
    margin: 0 0 12px;
    color: #111;
    font-size: 38px;
    font-weight: 500;
    font-family: "Times New Roman", Times, serif;
}

.clientes-line {
    height: 2px;
    background: #111;
    width: 140px;
}

.clientes-carousel {
    background: #5a5a5a;
    padding: 26px 18px;
    overflow: hidden;
}

.clientes-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    padding-bottom: 8px;
    width: max-content;
    animation: clientes-scroll var(--loop-duration, 20s) linear infinite;
    will-change: transform;
}

.clientes-track::-webkit-scrollbar {
    height: 0;
}

.clientes-track::-webkit-scrollbar-thumb {
    background: #bfbfbf;
    border-radius: 999px;
}

.clientes-track::-webkit-scrollbar-track {
    background: transparent;
}

@keyframes clientes-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-1 * var(--loop-width, 0px)));
    }
}

.cliente-card {
    margin: 0;
    display: grid;
    gap: 10px;
    color: #e9e9e9;
    scroll-snap-align: start;
    flex: 0 0 220px;
}

.cliente-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.cliente-card figcaption {
    display: grid;
    gap: 2px;
    font-size: 12px;
    line-height: 1.4;
    color: #f2f2f2;
}

.cliente-card strong {
    font-weight: 600;
    color: #ffffff;
}

.cliente-card span,
.cliente-card small {
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .clientes {
        padding: 50px 16px 70px;
    }

    .cliente-card {
        flex-basis: 200px;
    }

    .cliente-card img {
        height: 190px;
    }
}

@media (max-width: 600px) {
    .clientes-header h2 {
        font-size: 30px;
    }

    .clientes-track {
        gap: 14px;
    }

    .cliente-card {
        flex-basis: 180px;
    }

    .cliente-card img {
        height: 170px;
    }
}

@media (max-width: 480px) {
    .clientes-header h2 {
        font-size: 26px;
    }

    .clientes-carousel {
        padding: 20px 12px;
    }

    .cliente-card {
        flex-basis: 170px;
    }
}

/* ===== Depoimentos ===== */
.depoimentos {
    background: #2f2f2f;
    padding: 60px 24px 80px;
}

.depoimentos-header {
    max-width: 1100px;
    margin: 0 auto 26px;
}

.depoimentos-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 38px;
    font-weight: 500;
    font-family: "Times New Roman", Times, serif;
}

.depoimentos-list {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.depoimento-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e3e3e3;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    padding: 22px 26px;
    align-items: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.depoimento-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    background: #9e9e9e;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.depoimento-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ajuste individual das imagens (exemplos) */
.depoimento-avatar--luana img {
    object-position: center 50%;
    transform: scale(1.02) translateY(9px);
}

.depoimento-avatar--jonata img {
    object-position: center 10%;
    transform: scale(1.05);
}

.depoimento-head h3 {
    margin: 0;
    font-size: 20px;
    color: #222;
    font-family: "Times New Roman", Times, serif;
}

.depoimento-head span {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    color: #666;
}

.depoimento-body p {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.8;
    color: #2b2b2b;
}

@media (max-width: 768px) {
    .depoimento-card {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .depoimento-avatar {
        margin: 0;
    }
}

@media (max-width: 600px) {
    .depoimentos {
        padding: 50px 16px 70px;
    }

    .depoimentos-header h2 {
        font-size: 30px;
    }

    .depoimento-card {
        padding: 18px;
        gap: 14px;
    }

    .depoimento-avatar {
        width: 90px;
        height: 90px;
    }

    .depoimento-head h3 {
        font-size: 18px;
    }

    .depoimento-body p {
        font-size: 13.5px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .depoimentos-header h2 {
        font-size: 26px;
    }

    .depoimento-card {
        padding: 16px;
    }

    .depoimento-avatar {
        width: 80px;
        height: 80px;
    }
}

/* ===== Contato ===== */
.contato {
    background: #ffffff;
    padding: 80px 24px 90px;
    text-align: center;
}

.contato-inner {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 28px;
    justify-items: center;
}

.contato-text {
    margin: 0;
    color: #111111;
    font-size: 22px;
    line-height: 1.35;
    font-family: "Times New Roman", Times, serif;
}

.contato-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 48px;
    background: #3a3a3a;
    color: #ffffff;
    border-radius: 14px;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 4px 0 #1f1f1f;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contato-button:hover {
    background: #2f2f2f;
    transform: translateY(1px);
    box-shadow: 0 3px 0 #1a1a1a;
}

@media (max-width: 600px) {
    .contato {
        padding: 60px 18px 70px;
    }

    .contato-text {
        font-size: 18px;
    }

    .contato-button {
        width: 100%;
        max-width: 220px;
        padding: 14px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contato-button {
        max-width: 180px;
        padding: 12px 20px;
        font-size: 15px;
    }
}

.servico-cols li {
    margin: 6px 0;
}

@media (max-width: 900px) {
    .servico-card {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .servico-divider {
        width: 100%;
        height: 1px;
    }

    .servico-title {
        text-align: left;
    }

    .servico-cols {
        grid-template-columns: 1fr;
    }
}