/*
Theme Name: Soul Theme
Theme URI: https://soul.local
Author: Marlei Grolli
Description: Tema personalizado Soul com 13 seções em meia tela
Version: 1.0
Text Domain: soul-theme
*/

/* ========== VARIÁVEIS ========== */
:root {
    --preto: #00110E;
    --preto-claro: #3c3c3c;
    --cinza: #EFEBEB;
    --verde: #BBD429;
    --verde-escuro: #a2b824;
    --rosa: #EE78E0;
    --azul: #6488EC;
    --azul-claro: #99c1da;
}

.verde { color: var(--verde); }

/* ========== FONT-FACE ========== */
@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('fonts/AvenirNextLTPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('fonts/AvenirNextLTPro-Demi.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('fonts/AvenirNextLTPro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Black';
    src: url('fonts/Avenir-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Freaky';
    src: url('fonts/Freaky-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Avenir Next LT Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--preto);
    background: var(--cinza);
    letter-spacing: -0.05em;
}

.titulo-grande {
    font-family: 'Avenir Black', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    line-height: 0.85;
    letter-spacing: -0.05em;
}

.titulo {
    font-family: 'Avenir Black', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 0.85;
    letter-spacing: -0.05em;
}

.titulo-menor{
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.05em;
}

.subtitulo {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.05em;
}

.subtitulo-grande {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: -0.05em;
}

.texto {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.05em;
}

.texto-menor{
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.05rem;
}

a {
    color: var(--azul);
}

a:hover {
    color: var(--rosa);
}

/* ========== HEADER ========== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: var(--preto);
    z-index: 10;
    display: flex;
    align-items: center;
}

main {
    padding-top: 90px;
}

.header-inner {
    padding: 0 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 1.5rem;
}

.header-nav a {
    color: var(--azul-claro);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--verde);
}

.header-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 21;
    padding: 4px;
    position: relative;
}

.header-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 1px;
}

.header-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.header-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header-nav-overlay {
    display: none;
}

/* ========== SECTION BASE ========== */
.section {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-alt {
    background: #fff;
}

.section-alt:nth-child(even) {
    background: #fafafa;
}

/* ========== SEÇÃO TOPO ========== */
#topo {
    background: var(--preto);
    color: #fff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--preto);
    flex-direction: column;
    align-items: flex-start;
    padding-left: 5%;
}

.topo-logo {
    height: 60px;
    margin-bottom: 0.5rem;
}

.topo-texto {
    text-align: left;
    max-width: 500px;
}

.topo-texto h2 {
    line-height: 1.3;
    color: var(--azul-claro);
    font-weight: 300;
}

.topo-destaque {
    color: var(--azul-claro);
    font-family: 'Freaky', sans-serif;
    font-weight: 300;
    letter-spacing: normal;
}

.topo-simbolo {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 25vh;
    transform: translateX(40%) translateY(20%) rotate(15deg);
}

.topo-simbolo img {
    height: 100%;
}

/* ========== PLACEHOLDER GENÉRICO ========== */
.section-placeholder {
    text-align: center;
    padding: 2rem;
}

.section-placeholder h2 {
    margin-bottom: 0.5rem;
}

.section-placeholder p {
    color: #666;
}

/* ========== SEÇÃO BANNER SOLUÇÕES ========== */
.banner-solucoes {
    background: url('images/banner-solucoes.webp') no-repeat center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-solucoes::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.solucoes-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
    gap: 1rem;
}

.solucoes-esq {
    justify-self: start;
}

.solucoes-dir {
    justify-self: end;
}

.solucoes-centro {
    justify-self: stretch;
    display: flex;
    align-items: center;
}

.solucoes-col {
    display: flex;
    align-items: center;
}

.solucoes-seta {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    height: 180px;
    width: 100%;
    color: var(--verde);
}

.seta-corpo {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
}
.solucoes-quadro {
    background: var(--verde);
    color: var(--preto);
    padding: 1.5rem 2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}

.solucoes-quadro-esq {
    font-weight: 900;
    line-height: 0.85;
    text-align: left;
}

.diagrama {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.diag-header {
    font-weight: 700;
    color: var(--preto);
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.diag-lista {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.diag-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--preto);
    text-align: left;
}

.diag-simbolo {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: brightness(0);
}

.diag-divider {
    width: 100%;
    height: 1px;
    background: var(--preto);
    margin: 0.25rem 0;
}

.diag-conclusao {
    font-weight: 700;
    color: #fff;
}

/* ========== SEÇÃO QUEM SOMOS ========== */
.quem-somos {
    background: var(--azul) url('images/quem-somos-transparente.webp') no-repeat center / cover;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 0 5%;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.qs-col {
    position: relative;
    z-index: 1;
    margin-top: -2rem;
}

.qs-texto-esq {
    font-weight: 900;
    line-height: 0.85;
    position: relative;
    z-index: 1;
}
.qs-texto-esq::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 90vw;
    height: 80vw;
    transform: translate(-50%, -50%) rotate(6deg);
    background: repeating-conic-gradient(
        from 0deg,
        rgba(187, 212, 41, 0.18) 0deg 8deg,
        transparent 8deg 16deg
    );
    -webkit-mask: radial-gradient(circle, black 25%, rgba(0,0,0,0.5) 55%, transparent 78%);
    mask: radial-gradient(circle, black 25%, rgba(0,0,0,0.5) 55%, transparent 78%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.qs-col-dir {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.qs-texto-dir {
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
}

.qs-texto-dir + .qs-texto-dir {
    margin-top: 1.5rem;
}

.qs-col-meio {
    display: flex;
    justify-content: center;
}

.qs-col-meio img {
    max-width: 100%;
    height: auto;
    max-height: 30vh;
}

.qs-col-esq {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.qs-simbolo {
    width: 60px;
    height: auto;
    flex-shrink: 0;
    margin-top: 1rem;
}
.qs-simbolo-topo { display: none; }

.qs-bar {
    position: absolute;
    width: 100px;
    height: 100vh;
    background: var(--verde);
    z-index: 0;
    pointer-events: none;
}

.qs-bar-bl {
    left: -90px;
    bottom: 50%;
    transform: rotate(26deg);
    transform-origin: left bottom;
}

.qs-bar-tr {
    top: -100px;
    right: 150px;
    transform: rotate(-70deg);
    transform-origin: right top;
}

.qs-bar-br {
    bottom: -60px;
    right: 20px;
    transform: rotate(26deg);
    transform-origin: right bottom;
}

/* ========== SEÇÃO ATUAÇÃO B ========== */
.atuacao-b {
    background: url('images/na-base.webp') no-repeat center / cover;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    padding: 0 5%;
    align-items: center;
}

.s4-texto-esq {
    font-weight: 700;
    line-height: 1;
}

.s4-texto-dir {
    font-weight: 300;
    line-height: 1.6;
}

.s4-destaque {
    background: var(--verde);
    color: var(--preto);
    padding: 0 0.25rem;
    display: inline-block;
}

.s4-underline {
    display: inline-block;
    position: relative;
    padding-bottom: 0.4rem;
    font-weight: 900;
}

.s4-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--verde);
}

.s4-col-meio {
    display: flex;
    justify-content: center;
}

.s4-col-meio img {
    max-width: 100%;
    height: auto;
    max-height: 30vh;
}

.s4-col-dir {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.s4-col-dir p {
    margin-bottom: 1.5rem;
}

.s4-col-dir p:last-child {
    margin-bottom: 0;
}

.s4-item {
    display: inline-flex;
    align-items: center;
    background: var(--verde);
    padding: 0 0.25rem;
}

.s4-item-icon {
    display: none;
}

.s4-item-texto {
    font-weight: 700;
    color: var(--preto);
}

/* ========== UTILITÁRIOS ========== */
.show-desktop { display: none; }
.show-mobile { display: block; }
@media (min-width: 769px) {
    .show-desktop { display: block; }
    .show-mobile { display: none; }
}

/* ========== SEÇÃO NOSSOS TRABALHOS ========== */
.nossos-trabalhos {
    background: var(--verde-escuro);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 0 5% 2rem;
    align-items: center;
    position: relative;
    overflow: visible;
    height: 65vh;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 80%;
    overflow: hidden;
}

.slideshow-track {
    display: flex;
    height: 85%;
    transition: transform 0.4s ease;
    gap: 1rem;
}

.slideshow-track .nt-card {
    min-width: calc(33.333% - 0.75rem);
    height: 100%;
}

.nt-card {
    height: 100%;
}

.slideshow-dots {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.slideshow-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.2s;
}

.slideshow-dots span.active {
    background: var(--cinza);
}

.sld-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--preto);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.sld-btn:hover {
    background: var(--preto);
    color: #fff;
}

.sld-btn-prev {
    left: 1rem;
}

.sld-btn-next {
    right: 1.5%;
}

.nossos-trabalhos .sld-btn-prev {
    left: 30%;
}

.testimonials-inner .sld-btn-prev {
    left: 30%;
    right: auto;
}

.testimonials-inner .sld-btn-next {
    right: -3%;
}

/* ========== SEÇÃO CASES DE SUCESSO ========== */
.cases-de-sucesso {
    display: flex;
    flex-direction: column;
    background: var(--cinza);
}

.cs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.cs-row-1 {
    display: flex;
    align-items: center;
    height: 50vh;
    border-bottom: 2px solid var(--preto);
}

.cs-row-1 .cs-col-texto {
    flex: 1;
    padding-left: 5%;
}

.cs-row-1 .cs-col-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.cs-row-2 {
    padding: 2rem 0;
}

.cs-row-2 .cs-col-texto {
    padding: 0 5% 0 3rem;
}

.cs-col-img {
    display: flex;
    position: relative;
}

.cs-row-1 .cs-col-img {
    justify-content: flex-end;
}

.cs-row-2 .cs-col-img {
    justify-content: flex-start;
}

.cs-col-img img {
    max-width: 100%;
    height: auto;
    max-height: 35vh;
}

.cs-logo {
    height: 80px;
    margin: 0 1rem 0 0;
    flex-shrink: 0;
}

.cs-title {
    font-weight: 700;
    line-height: 1.2;
    color: var(--preto);
}

.cs-body {
    font-weight: 400;
    line-height: 1.5;
    color: var(--preto);
    margin-top: 1rem;
}

.cs-small {
    font-weight: 400;
    line-height: 1.5;
    color: var(--preto);
    margin-top: 1.5rem;
}

.cs-texto-wrapper {
    display: inline-block;
}

.cs-texto-bar {
    width: 100%;
    height: 10px;
    background: var(--preto);
    margin-bottom: 0.5rem;
}

/* ========== SEÇÃO TESTIMONIALS ========== */
.testimonials {
    background: var(--cinza);
    color: var(--preto);
    align-items: center;
    justify-content: center;
    border-top: 2px solid var(--preto);
    height: auto;
    min-height: 65vh;
    position: relative;
}

.testimonials-col-esq {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.testimonials-text-wrapper {
    display: inline-block;
}

.testimonials-bar {
    width: 80%;
    height: 8px;
    background: var(--preto);
    margin-bottom: 1.5rem;
}

.testimonials-title {
    margin-bottom: 0;
    line-height: 1.1;
}

.testimonials-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 4rem;
    align-items: start;
    padding: 4rem 0;
    position: relative;
}

.testimonials-inner::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35vw;
    height: 35vw;
    max-width: 350px;
    max-height: 350px;
    background: url('images/Simbolo-Soul-White-2.svg') no-repeat center / contain;
    opacity: 0.12;
    pointer-events: none;
    transform: rotate(30deg) translateX(-25%);
    transform-origin: center;
    z-index: 0;
}

.testimonials-inner::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 35vw;
    height: 35vw;
    max-width: 350px;
    max-height: 350px;
    background: url('images/Simbolo-Soul-White-2.svg') no-repeat center / contain;
    opacity: 0.12;
    pointer-events: none;
    transform: rotate(-30deg) translateY(25%);
    transform-origin: center;
    z-index: 0;
}

.testimonials-col-dir {
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-width: 90%;
}

.testimonials-slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 1rem;
    width: 100%;
}

.testimonials-track .testimonial-card {
    width: calc(50% - 0.5rem);
    box-sizing: border-box;
    flex-shrink: 0;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    z-index: 2;
}

.testimonials-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background 0.2s;
}

.testimonials-dots span.active {
    background: var(--preto);
}

.testimonial-card {
    background: #fff;
    color: var(--preto);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

.testimonial-text-wrapper {
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.testimonial-text-wrapper.expanded {
    -webkit-line-clamp: none;
}

.testimonial-more {
    background: none;
    border: none;
    color: #888;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    margin-top: 0.25rem;
    font-size: 1rem;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.testimonial-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 400;
    color: var(--preto-claro);
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--preto);
}

.testimonial-role {
    font-weight: 400;
    color: var(--preto-claro);
    opacity: 0.6;
    font-size: 0.85rem;
}

/* ========== SEÇÃO NOSSAS SOLUÇÕES ========== */
.nossas-solucoes {
    background: url('images/solucoes-fundo.webp') no-repeat center / cover;
    color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 0 0;
    height: auto;
    min-height: 65vh;
    position: relative;
}

.nossas-solucoes::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 0;
}

.ns-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    flex: 1;
}

.ns-title {
    font-family: 'Avenir Black', sans-serif;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: #fff;
    text-align: center;
}

.ns-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    grid-template-rows: auto;
    gap: 2.5rem;
    flex: 1;
    align-items: stretch;
}

.ns-card {
    background: var(--verde);
    color: var(--preto);
    padding: 2rem 2rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    height: 100%;
    min-width: 0;
}

.ns-card-title {
    font-weight: 700;
    color: var(--preto);
    text-align: left;
    overflow-wrap: break-word;
    line-height: 1.2;
    width: 100%;
}

.ns-card-sub {
    font-weight: 600;
    color: #fff;
    text-align: left;
    overflow-wrap: break-word;
    width: 100%;
}

.ns-card-text {
    font-weight: 400;
    line-height: 1.5;
    color: var(--preto);
    text-align: left;
    overflow-wrap: break-word;
    width: 100%;
}

.ns-card:nth-child(2) {
    border-top: 8px solid var(--preto);
    border-left: 8px solid var(--preto);
    border-right: 8px solid var(--preto);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -3px 0 0 var(--cinza), 3px 0 0 0 var(--cinza), -3px 0 0 0 var(--cinza);
}

/* ========== SEÇÃO NOSSOS DIFERENCIAIS ========== */
.nossos-diferenciais {
    background: var(--azul);
    color: #fff;
    height: 65vh;
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5vh;
}

.nd-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 4rem;
    grid-template-rows: 1fr;
    align-items: start;
    padding: 0;
    position: relative;
    flex: 1;
}

.nd-col-esq {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 400px;
}

.nd-logo-bg {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 65%;
    height: 65%;
    background: url('images/Logotipo-Soul-Gray.svg') no-repeat left top / contain;
    opacity: 0.12;
    pointer-events: none;
    transform: rotate(-30deg);
}

.nd-img {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 90%;
    height: auto;
    z-index: 1;
}

.nd-col-dir {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
    background: var(--azul);
    padding: 1.5rem;
    align-self: stretch;
}

.nd-title {
    font-family: 'Avenir Black', sans-serif;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: #fff;
}

.nd-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nd-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
}

.nd-bullet {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========== SEÇÃO SER LEMBRADO ========== */
.ser-lembrado {
    background: var(--rosa);
    color: var(--preto);
    height: auto;
    min-height: 65vh;
    position: relative;
    overflow: hidden;
}

.ser-lembrado::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: repeating-conic-gradient(
        #a3bb25 0deg,
        #a3bb25 15deg,
        transparent 15deg,
        transparent 25deg,
        #a3bb25 25deg
    );
    pointer-events: none;
    opacity: 1;
    z-index: 0;
    border-radius: 50%;
}

.sl-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.sl-card {
    background: var(--verde);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
    z-index: 3;
}

.sl-card-text {
    font-family: 'Avenir Black', sans-serif;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: var(--preto);
}

.sl-col-img {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sl-col-img::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
    width: 500px;
    height: 500px;
    background: url('images/Logotipo-Soul-Gray.svg') no-repeat center / contain;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.sl-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

/* ========== SEÇÃO MÉTODO ========== */
.metodo {
    background: var(--cinza) url('images/diagrama.svg') no-repeat 38% center;
    background-size: 50%;
    position: relative;
    overflow: hidden;
    border-top: 2px solid var(--preto);
    display: flex;
    align-items: center;
    justify-content: center;
}

.metodo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    align-items: center;
    padding: 4rem 5%;
    position: relative;
    z-index: 1;
}

.metodo-col-esq {
    display: flex;
    align-items: center;
}

.metodo-titulo {
    font-weight: 700;
    line-height: 0.9;
    color: var(--preto);
    text-transform: uppercase;
    margin-left: 8%;
}

.metodo-col-dir {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
}

.metodo-item {
    font-weight: 600;
    color: var(--preto);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    text-align: left;
    width: 100%;
}

.metodo-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
    width: 280px;
    flex-shrink: 0;
}

.metodo-item-img {
    height: 40px;
    flex-shrink: 0;
}

.metodo-item-titulo {
    font-weight: 700;
    color: var(--preto);
}

.metodo-item-desc {
    font-weight: 400;
    color: var(--preto);
}

.metodo-sticker-tl {
    position: absolute;
    top: 7rem;
    left: 1rem;
    width: 60px;
    height: 60px;
    background: url('images/Simbolo-Soul-Verde.svg') no-repeat center / contain;
    pointer-events: none;
    z-index: 0;
}

.metodo::before {
    content: '';
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
    background: url('images/Simbolo-Soul-Verde.svg') no-repeat center / contain;
    pointer-events: none;
    z-index: 0;
}

.metodo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 400px;
    height: 160px;
    background: url('images/Logotipo-Soul-Gray.svg') no-repeat center / contain;
    opacity: 0.15;
    pointer-events: none;
    transform: rotate(-15deg);
    transform-origin: bottom left;
}

/* ========== SEÇÃO CARDS (6 & 7) ========== */
.secao-cards {
    background: var(--verde-escuro);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    padding: 0 5%;
    align-items: center;
    border-bottom: 2px solid var(--preto);
    border-top: 2px solid var(--preto);
}

/* ========== NOSSOS TRABALHOS DECORAÇÕES ========== */
.nossos-trabalhos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    width: 400px;
    height: 160px;
    background: url('images/Logotipo-Soul-Gray.svg') no-repeat center / contain;
    opacity: 0.15;
    transform: rotate(-9deg);
    pointer-events: none;
}

.nossos-trabalhos::after {
    content: '';
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 60px;
    height: 60px;
    background: url('images/Simbolo-Soul-Verde.svg') no-repeat center / contain;
    pointer-events: none;
}

.nt-col-texto {
    position: relative;
    padding-top: 1rem;
}

.nt-texto-wrapper {
    display: inline-block;
}

.nt-texto-bar {
    width: 100%;
    height: 10px;
    background: var(--verde);
    margin-bottom: 0.5rem;
}

.nt-col-texto p {
    font-weight: 700;
    line-height: 1.1;
    color: var(--preto);
}

/* ========== CARDS ========== */
.card {
    background: #fff;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.card-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    min-height: 0;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
   border: 1px solid var(--cinza);
    border-radius: 12px;
}

/* ========== SEÇÃO 11 - FOOTER ========== */
.secao-11 {
    display: flex;
    align-items: stretch;
}

.s11-inner {
    width: 100%;
    display: flex;
    min-height: 40vh;
}

.s11-col-esq {
    width: 50%;
    background: url('images/footer.webp') no-repeat left top / cover;
    background-color: var(--cinza);
}

.s11-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.s11-col-dir {
    width: 52%;
    background: url('images/footer-b.webp') no-repeat center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s11-card {
    background: var(--verde);
    padding: 5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

.s11-texto {
    font-family: 'Avenir Black', sans-serif;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.05em;
    text-align: left;
    color: var(--preto);
}

.s11-destaque {
    font-family: 'Freaky', sans-serif;
    line-height: 0.85;
    letter-spacing: normal;
    color: #fff;
}

.s11-telefone {
    font-family: 'Avenir Black', sans-serif;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--preto);
}

.s11-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.s11-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--preto);
    transition: color 0.2s, transform 0.2s;
}

.s11-social-link:hover {
    color: #fff;
    transform: scale(1.1);
}

.s11-social-link svg {
    width: 28px;
    height: 28px;
}

/* ========== FOOTER SITE ========== */
#footer {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #222;
    color: var(--azul-claro);
    padding: 0.75rem 1rem;
    gap: 0.25rem;
    
}

.footer-dev {
    font-size: 0.8rem;
    color: var(--azul-claro);
}

.footer-dev a {
    color: var(--azul-claro);
    text-decoration: none;
}

.footer-dev a:hover {
    color: var(--verde);
}

/* ========== BLOG ========== */
.blog-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.blog-article {
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.blog-meta {
    color: #666;
}

.blog-pagination {
    margin-top: 2rem;
}

/* ========== RESPONSIVO ========== */

@media (min-width: 1600px) {
    .metodo {
        background-size: 38%;
        background-position: 52% center;
    }
}

@media (max-width: 1400px) {
    .metodo {
        background-size: 45%;
        background-position: 40% center;
    }
}

@media (max-width: 1200px) {
    .metodo {
        background-size: 42%;
        background-position: 42% center;
    }
}

@media (max-width: 1024px) {
    .section { height: auto; min-height: 50vh; padding: 2rem 5%; }
    #topo { padding-left: 5%; min-height: 60vh; }
    .topo-texto h2 { font-size: 1.6rem; }
    .qs-texto-esq { font-size: 3rem; }
    .qs-texto-dir { font-size: 1.25rem; }
    .s4-texto-esq { font-size: 1.6rem; }
    .s4-underline { font-size: 3rem; }
    .nt-col-texto p { font-size: 2rem; }
    .nossos-trabalhos { padding: 0 10% 2rem; }
    .slideshow-track .nt-card { min-width: calc(50% - 0.5rem); }
    .testimonials-track .testimonial-card { width: 100%; flex-shrink: 0; }
    .ns-grid { gap: 1.5rem; }
    .ns-card-title { font-size: 1.4rem; }
    .ns-card-text { font-size: 1rem; }
    .metodo-inner { grid-template-columns: 1fr; }
    .metodo-titulo { font-size: 4rem; margin-left: 0; text-align: center; display: flex; justify-content: center; gap: 0.5rem; }
    .metodo { background-image: none; }
    .metodo-col-esq { justify-content: center; }
    .metodo-col-dir {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        justify-items: center;
        gap: 1.5rem;
    }
    .metodo-item { justify-content: center; }
    .metodo-item-content { max-width: 100%; }
    .sl-card-text { font-size: 1.4rem; }
    .s11-texto { font-size: 2rem; }
    .s11-destaque { font-size: 2rem; }
    .s11-telefone { font-size: 1.2rem; }
    .titulo { font-size: 2.4rem; }

    .cs-row-1 { height: auto; }
    .cs-row-2 { height: auto; }
    .cs-col-img img { max-height: none; }

    .sl-inner { grid-template-columns: 1fr; gap: 1rem; }
    .sl-card { min-height: auto; }
    .sl-col-img::before { display: none; }

    .nossos-diferenciais {
        height: auto;
        min-height: 50vh;
        padding: 4vh 0 0;
    }
    .nd-inner { grid-template-columns: 1fr; }
    .nd-col-esq { display: none; }
    .nd-img { display: none; }
}

@media (max-width: 768px) {
    .section { height: auto; min-height: 40vh; padding: 2rem 5%; flex-direction: column; }

    #topo { min-height: 50vh; padding: 5rem 5% 2rem; }
    .topo-logo { height: 40px; }
    .topo-texto h2 { font-size: 1.3rem; }
    .topo-simbolo { height: 15vh; }

    .quem-somos {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        min-height: 0;
        background: var(--azul);
    }
    .quem-somos::before {
        content: '';
        min-height: 60vh;
        flex-shrink: 0;
        position: relative;
        width: 100%;
        height: auto;
        background-image: url('images/quem-somos-transparente.webp');
        background-repeat: no-repeat;
        background-position: center;
        background-position-y: top;
        background-size: 200%;
        transform: none;
        z-index: 2;
    }
    .qs-texto-esq::after { display: none; }
    .quem-somos::after {
        content: '';
        position: absolute;
        top: 20%;
        left: 50%;
        transform: translate(-50%, -40%) rotate(6deg);
        width: 150vw;
        height: 150vw;
        background: repeating-conic-gradient(
            from 0deg,
            rgba(187, 212, 41, 0.18) 0deg 8deg,
            transparent 8deg 16deg
        );
        -webkit-mask: radial-gradient(circle, black 25%, rgba(0,0,0,0.5) 55%, transparent 78%);
        mask: radial-gradient(circle, black 25%, rgba(0,0,0,0.5) 55%, transparent 78%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 1;
    }
    .qs-bar { height: 50vh; }
    .qs-bar-bl {
        left: -120px;
        bottom: 80%;
        transform: rotate(26deg);
        transform-origin: left bottom;
    }
    .qs-bar-tr {
        top: -25%;
        right: -50%;
        
        transform: rotate(-50deg);
        transform-origin: right bottom;
    }
    .qs-bar-br {
        bottom: -100px;
        right: 10%;
        transform: rotate(26deg);
        transform-origin: right bottom;
        z-index: 10;
    }
    .qs-col-esq {
        background: var(--azul);
        width: 100%;
        padding: 3rem 5% 1rem 10%;
        margin: 0;
        flex-direction: column;
        align-items: flex-start;
    }
    .qs-col-dir {
        background: var(--azul);
        width: 100%;
        padding: 1rem 5% 3rem 10%;
        margin: 0;
    }
    .qs-texto-dir + .qs-texto-dir {
        margin-top: 1.5rem;
    }
    .qs-texto-dir + .qs-texto-dir::before {
        content: '';
        display: block;
        width: 60px;
        height: 2px;
        background: var(--verde);
        margin-bottom: 1.5rem;
    }
    .qs-texto-esq { font-size: 4rem; text-transform: uppercase; line-height: 1; }
    .qs-texto-dir { font-size: 1.3rem; }
    .qs-simbolo {
        width: 50px;
        height: auto;
        margin-bottom: 0.5rem;
    }
    .qs-simbolo-topo {
        display: block;
        position: absolute;
        top: 55vh;
        right: 5%;
        width: 50px;
        height: auto;
        z-index: 2;
    }
    .qs-col-meio { display: none; }

    .solucoes-inner { grid-template-columns: 1fr; gap: 1rem; }
    .solucoes-quadro-esq { font-size: 2rem; }
    .solucoes-centro { display: none; }
    .diag-header { font-size: 1.4rem; }

    .atuacao-b {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
     min-height: auto;
        background-color: var(--azul);
        background-image: url('images/na-base-mobile.webp');
        background-position: top;
        background-size: contain;
    }
    .atuacao-b::before {
        content: '';
        min-height: 68vh;
        flex-shrink: 0;
    }
    .s4-col-esq {
        background: var(--azul);
        width: 100%;
        padding: 2rem 5% 0.5rem;
        margin: 0;
    }
    .s4-col-dir {
        background: var(--azul);
        width: 100%;
        padding: 2rem;
        padding-left: 5rem;
        margin: 0;
    }
    .s4-col-meio { display: none; }
    .s4-texto-esq { font-size: 2.5rem; }
    .s4-underline { font-size: 3.8rem; }
    .s4-texto-dir { font-size: 1.3rem; }
    .s4-col-esq { text-align: left; }
    .s4-col-dir .texto { font-size: 1.1rem; }
    .s4-item-texto { font-size: 1.3rem; }
    .s4-col-dir p { margin-bottom: 1rem; }
    .s4-col-dir p:nth-of-type(2)::before,
    .s4-col-dir p:nth-of-type(3)::before {
        content: '';
        display: block;
        width: 80px;
        height: 2px;
        background: var(--verde);
        margin: 0 auto 1rem;
    }
    .s4-col-dir p:last-child { margin-bottom: 0; }
    .s4-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        background: var(--verde);
        padding: 0.5rem 1rem;
        margin-bottom: 0.5rem;
        width: fit-content;
        border-radius: 8px;
    }
    .s4-item-icon {
        display: block;
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .nossos-trabalhos { grid-template-columns: 1fr; gap: 0; padding: 0.5rem 15% 2rem; height: auto; min-height: auto; }
    .nt-col-texto { padding: 0.75rem 0 0.75rem; }
    .nt-col-texto p { font-size: 1.6rem; margin-bottom: 0; }
    .slideshow { height: auto; min-height: 180px; }
    .slideshow-track { height: auto; }
    .slideshow-track .nt-card { min-width: 100%; }
    .slideshow-dots {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 0.75rem;
        justify-content: center;
    }

    .cs-row { grid-template-columns: 1fr; }
    .cs-row-1 { flex-direction: column; height: auto; padding: 2rem 5%; }
    .cs-row-1 .cs-col-texto { padding-left: 0; }
    .cs-row-1 .cs-col-img { justify-content: center; margin-top: 1rem; }
    .cs-row-2 { padding: 2rem 5%; flex-direction: column-reverse; }
    .cs-row-2 .cs-col-texto { padding: 0; }
    .cs-logo { height: 50px; margin: 1rem 0; }
    .cs-title { font-size: 1.5rem; }
    .cs-body { font-size: 1rem; }
    .cs-small { font-size: 0.75rem; }

    .testimonials-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0; }
    .testimonials-inner::before,
    .testimonials-inner::after { display: none; }
    .testimonials-bar { width: 100%; }

    .ns-grid { grid-template-columns: 1fr; gap: 1rem; }
    .ns-card { padding: 1.5rem; }
    .ns-card:nth-child(2) { border-left: none; border-right: none; border-radius: 0; box-shadow: none; }
    .ns-card-title { font-size: 1.6rem; }
    .ns-card-sub { font-size: 1.1rem; }
    .ns-card-text { font-size: 0.95rem; }
    .ns-title { font-size: 2rem; }

    .nd-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0; }
    .nd-col-esq { min-height: 200px; }
    .nd-img { position: absolute; bottom: auto; left: auto; width: 100%; }
    .nd-title { font-size: 1.6rem; }

    .sl-inner { grid-template-columns: 1fr; gap: 1rem; padding: 2rem 0; }
    .sl-card { min-height: 200px; padding: 1.5rem; }
    .sl-card-text { font-size: 1.4rem; }
    .sl-card-esq .sl-card-text:last-child { font-size: 2rem; }
    .sl-col-img::before { display: none; }

    .metodo-inner { grid-template-columns: 1fr; gap: 1rem; padding: 2rem 5%; }
    .metodo-titulo { font-size: 3rem; margin-left: 0; text-align: center; display: flex; justify-content: center; gap: 0.5rem; }
    .metodo-col-esq { justify-content: center; }
    .metodo-col-dir {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        justify-items: center;
        gap: 1.5rem;
    }
    .metodo-item { max-width: 360px; }
    .metodo-sticker-tl { display: none; }

    .s11-inner { flex-direction: column; }
    .s11-col-esq { width: 100%; min-height: 30vh; }
    .s11-col-dir { width: 100%; }
    .s11-card { padding: 2rem; }
    .s11-texto { font-size: 1.6rem; }
    .s11-destaque { font-size: 1.6rem; }
    .s11-telefone { font-size: 1.2rem; }

    .header-hamburger { display: flex; z-index: 22; position: relative; }
    .header-nav { position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: var(--preto); flex-direction: column; gap: 0; padding: 80px 2rem 2rem; z-index: 21; overflow-y: auto; visibility: hidden; opacity: 0; transition: opacity 0.3s, visibility 0.3s; }
    .header-nav.open { visibility: visible; opacity: 1; }
    .header-nav a { display: block; color: var(--azul-claro); font-size: 1.1rem; text-decoration: none; text-transform: uppercase; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .header-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 20; }
    .header-nav-overlay.open { display: block; }
    #header { height: 60px; }
    .header-inner { padding: 0 1rem; }
    .header-logo img { height: 30px; }
    main { padding-top: 60px; }

    .titulo { font-size: 2rem; }
    .nossos-trabalhos::before,
    .nossos-trabalhos::after,
    .metodo::before,
    .metodo::after,
    .nd-logo-bg { display: none; }

    .testimonials-track .testimonial-card { width: 100%; flex-shrink: 0; }
    .testimonials-slideshow { overflow: hidden; }
    .testimonials-track { gap: 1rem; }
    .testimonial-card { padding: 1rem; }
    .testimonial-text { overflow-wrap: break-word; }

    .sld-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .qs-texto-esq { font-size: 1.9rem; }
    .qs-texto-dir { font-size: 1.1rem; }
    .nt-col-texto p { font-size: 1.3rem; }
    .cs-title { font-size: 1.2rem; }
    .cs-body { font-size: 0.9rem; }
    .cs-small { font-size: 0.65rem; }
    .titulo { font-size: 1.6rem; }
    .metodo-titulo { font-size: 2.2rem; }
    .s11-texto { font-size: 1.3rem; }
    .s11-destaque { font-size: 1.3rem; }
    .s11-card { padding: 1.5rem; }
    .sl-card-text { font-size: 1.1rem; }
    .ns-card-title { font-size: 1.4rem; }
    .ns-card-sub { font-size: 0.9rem; }
    .ns-card-text { font-size: 0.85rem; }
}

@media (max-height: 500px) {
    .section, .cases-de-sucesso { height: auto; min-height: auto; }
    .nossos-diferenciais { height: auto; min-height: auto; padding: 2rem 5%; }
    .nd-img { display: none; }
    .cs-row-1 { height: auto; }
    .cs-row-2 { height: auto; }
    .cs-col-img img { max-height: none; }
    .sl-inner { grid-template-columns: 1fr; gap: 1rem; }
    .sl-card { min-height: auto; }
}


