:root {
    --orange: #f25b16;
    --orange-dark: #cf4308;
    --orange-light: #fff0e8;
    --ink: #17140f;
    --muted: #68625b;
    --soft: #f7f3ef;
    --line: rgba(23, 20, 15, .1);
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(31, 22, 10, .12);
    --radius: 28px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--white);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 20;
    padding: 18px 0;
    transition: .25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -.03em;
    white-space: nowrap;
}

.brand-mark {
     width: 220px;
    height: auto;
    display: block;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    object-fit: contain;
}

.nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav a {
    padding: 10px 14px;
    color: var(--muted);
    font-size: .94rem;
    font-weight: 700;
    border-radius: 999px;
    transition: .2s ease;
}

.nav a:hover {
    color: var(--orange);
    background: var(--orange-light);
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: .2s ease;
}

.header-cta,
.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 14px 35px rgba(242, 91, 22, .28);
}

.header-cta:hover,
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, .72);
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, .8);
}

.btn-white {
    background: var(--white);
    color: var(--orange-dark);
}

.btn-full {
    width: 100%;
}

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
    transition: .2s ease;
}

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

.menu-btn.is-open span:nth-child(2) {
    opacity: 0;
}

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

.hero {
    position: relative;
    padding: 150px 0 70px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff8f3 0%, #ffffff 48%, #ffe0cf 100%);
}

.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: .8;
}

.hero-bg::before {
    width: 460px;
    height: 460px;
    right: -140px;
    top: 70px;
    background: rgba(242, 91, 22, .16);
}

.hero-bg::after {
    width: 220px;
    height: 220px;
    left: 7%;
    bottom: 80px;
    background: rgba(242, 91, 22, .1);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
    gap: 56px;
    align-items: center;
}

.eyebrow,
.section-kicker,
.mini-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 8px 13px;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero h1 {
    margin-top: 24px;
    max-width: 760px;
    font-size: clamp(2.6rem, 6vw, 5.8rem);
    line-height: .95;
    letter-spacing: -.07em;
    font-weight: 900;
}

.hero-copy p {
    max-width: 620px;
    margin: 24px 0 34px;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-card {
    position: relative;
    padding: 34px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.card-topline {
    position: absolute;
    inset: 0 0 auto 0;
    height: 7px;
    border-radius: var(--radius) var(--radius) 0 0;
    background: linear-gradient(90deg, var(--orange), #ffb15f);
}

.hero-card h2 {
    margin: 18px 0 22px;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1.12;
    letter-spacing: -.04em;
}

.hero-card ul {
    list-style: none;
    display: grid;
    gap: 14px;
}

.hero-card li {
    position: relative;
    padding-left: 26px;
    color: var(--muted);
    font-weight: 600;
}

.hero-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange);
    font-weight: 900;
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 70px;
}

.stat-box {
    padding: 24px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 14px 40px rgba(31, 22, 10, .06);
}

.stat-box strong {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1;
    color: var(--orange);
    letter-spacing: -.05em;
}

.stat-box span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
    font-size: .9rem;
}

.section {
    padding: 105px 0;
}

.intro {
    background: var(--ink);
    color: var(--white);
}

.intro-grid,
.segments-grid,
.reasons-grid,
.contact-grid,
.method-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 70px;
    align-items: start;
}

.intro .section-kicker,
.cta-box .section-kicker.light {
    background: rgba(255, 255, 255, .12);
    color: var(--white);
}

.intro h2,
.section-head h2,
.method-copy h2,
.segments h2,
.reason-panel h2,
.contact-copy h2,
.cta-box h2 {
    margin-top: 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -.055em;
    font-weight: 900;
}

.intro-text {
    display: grid;
    gap: 18px;
    color: rgba(255, 255, 255, .72);
    font-size: 1.08rem;
}

.section-head {
    max-width: 720px;
    margin-bottom: 42px;
}

.section-head p,
.method-copy p,
.segments p,
.reason-panel p,
.contact-copy p,
.cta-box p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 1.04rem;
}

.services {
    background: var(--soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 14px 44px rgba(31, 22, 10, .05);
    transition: .24s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-card h3 {
    font-size: 1.35rem;
    line-height: 1.2;
    letter-spacing: -.03em;
}

.service-card p {
    margin-top: 14px;
    color: var(--muted);
}

.service-tags {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tags span,
.segment-list span {
    display: inline-flex;
    border-radius: 999px;
    padding: 8px 12px;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: .82rem;
    font-weight: 800;
}

.method-copy {
    position: sticky;
    top: 110px;
}

.steps {
    display: grid;
    gap: 16px;
}

.step-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    padding: 26px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 14px 44px rgba(31, 22, 10, .05);
}

.step-card span {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: var(--orange);
    color: var(--white);
    font-weight: 900;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.step-card p,
.reason-item p {
    color: var(--muted);
}

.segments {
    background: var(--soft);
}

.segment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.reasons-grid {
    align-items: stretch;
}

.reason-panel {
    padding: 34px;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--white);
}

.reason-panel .section-kicker {
    background: rgba(255, 255, 255, .12);
    color: var(--white);
}

.reason-panel p {
    color: rgba(255, 255, 255, .68);
}

.reason-list {
    display: grid;
    gap: 14px;
}

.reason-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    align-items: center;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: var(--white);
}

.reason-item span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: var(--orange-light);
    color: var(--orange);
    font-weight: 900;
}

.cta-section {
    padding: 0 0 105px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 46px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    box-shadow: 0 24px 70px rgba(242, 91, 22, .26);
}

.cta-box p {
    color: rgba(255, 255, 255, .78);
}

.contact {
    background: var(--soft);
}

.contact-cards {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-cards a,
.contact-cards div {
    padding: 20px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--line);
}

.contact-cards small {
    display: block;
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 5px;
}

.contact-cards strong {
    font-size: .95rem;
    word-break: break-word;
}

.contact-form {
    padding: 52px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 15px;
    color: var(--ink);
    background: #fbfaf8;
    outline: none;
    transition: .2s ease;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(242, 91, 22, .12);
    background: var(--white);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.form-feedback {
    display: none;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 700;
    text-align: center;
}

.form-feedback.success,
.form-feedback.error {
    display: block;
}

.form-feedback.success {
    background: #e9f8ef;
    color: #116735;
}

.form-feedback.error {
    background: #fff0ee;
    color: #9b2416;
}

.footer {
    background: var(--ink);
    color: var(--white);
    padding-top: 62px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer .brand {
    color: var(--white);
}

.footer p,
.footer span,
.footer a {
    color: rgba(255, 255, 255, .58);
}

.footer p {
    max-width: 330px;
    margin-top: 16px;
}

.footer strong {
    display: block;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
    color: rgba(255, 255, 255, .38);
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 18px 0;
    color: rgba(255, 255, 255, .35);
    font-size: .86rem;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: .55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .header-cta {
        display: none;
    }

    .menu-btn {
        display: inline-flex;
        margin-left: auto;
    }

    .nav {
        position: fixed;
        top: 76px;
        left: 20px;
        right: 20px;
        display: grid;
        gap: 4px;
        padding: 16px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: .2s ease;
    }

    .nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav a {
        width: 100%;
        border-radius: 14px;
    }

    .hero-grid,
    .intro-grid,
    .segments-grid,
    .reasons-grid,
    .contact-grid,
    .method-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .method-copy {
        position: static;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .hero {
        padding-top: 118px;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 15vw, 4rem);
    }

    .hero-card,
    .service-card,
    .contact-form,
    .reason-panel {
        padding: 24px;
    }

    .hero-actions,
    .cta-box {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 76px 0;
    }

    .services-grid,
    .stats-grid,
    .contact-cards,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding-bottom: 76px;
    }

    .cta-box {
        padding: 30px;
        border-radius: 26px;
    }
}


.logo-icon{
    width:72px;
    height:72px;
    background:#ff5a00;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.logo-icon img{
    width:100%;
    height:100%;
    object-fit:cover;
}


.brand-mark{
    width:72px;
    height:72px;
    object-fit:cover;
    border-radius:20px;
    display:block;
}


.quem-somos-image{
    margin-top:32px;
    width:100%;
}

.quem-somos-image img{
    width:100%;
    border-radius:24px;
    display:block;
    object-fit:cover;
}


@media (min-width: 1024px){

.quem-somos-content{
    display:flex;
    align-items:flex-start;
    gap:40px;
}

.quem-somos-text{
    flex:1;
}

.quem-somos-image{
    margin-top:24px;
}

}


.quem-somos-content{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.quem-somos-text{
    max-width:720px;
}

@media(min-width:1024px){
    .quem-somos-content{
        margin-top:24px;
    }
}


@media(min-width:1024px){

.quem-somos-wrapper{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:60px;
    align-items:start;
}

.quem-somos-content{
    margin-top:24px;
}

.quem-somos-text{
    max-width:100%;
}

}



@media (min-width: 1024px){

.desktop-texto-abaixo{
    margin-top:-220px;
    padding-left:0;
    max-width:700px;
}

.desktop-texto-abaixo p:first-child{
    margin-top:0;
}

}



/* ===== QUEM SOMOS DESKTOP ===== */

@media (min-width: 1024px){

.about-section,
.quem-somos-section{
    padding-top:120px;
}

.about-grid,
.quem-somos-wrapper{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:70px;
    align-items:start;
}

.about-grid h2,
.quem-somos-wrapper h2{
    max-width:520px;
    line-height:0.95;
}

.quem-somos-content,
.desktop-texto-abaixo{
    margin-top:520px;
    max-width:560px;
}

.quem-somos-content p,
.desktop-texto-abaixo p{
    font-size:18px;
    line-height:1.7;
}

.quem-somos-image{
    margin-top:32px;
}

.quem-somos-image img{
    width:100%;
    border-radius:28px;
}

}



/* AJUSTE REAL DESKTOP */

@media (min-width:1024px){

.quem-somos-text-desktop{
    margin-top:40px;
    max-width:520px;
}

.quem-somos-text-desktop p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:24px;
}

.quem-somos-image{
    margin-top:40px;
    max-width:560px;
}

}



/* Espaçamento seção quem somos */

.quem-somos-wrapper h2,
.about-grid h2{
    margin-bottom:48px;
}

.quem-somos-wrapper p,
.about-grid p{
    margin-top:32px;
    line-height:1.8;
}



/* IMAGEM AO LADO DO H2 */

.quem-somos-topo{
    display:flex;
    flex-direction:column;
    gap:32px;
}

.quem-somos-image-top img{
    width:100%;
    border-radius:28px;
    display:block;
}

@media(min-width:1024px){

.quem-somos-topo{
    display:grid;
    grid-template-columns: 1fr 520px;
    gap:70px;
    align-items:center;
}

.quem-somos-titulo h2{
    margin-bottom:0;
}

}



/* FOTO AO LADO DO TÍTULO */

@media (min-width: 1024px){

.quem-somos-topo{
    display:grid !important;
    grid-template-columns: 1fr 520px !important;
    gap:80px !important;
    align-items:center !important;
}

.quem-somos-titulo{
    width:100%;
}

.quem-somos-image-top{
    display:block !important;
    width:100%;
}

.quem-somos-image-top img{
    width:100%;
    height:auto;
    border-radius:28px;
    object-fit:cover;
    display:block;
}

}



/* IMAGEM ÁREA VERMELHA */

.quem-somos-grid{
    display:flex;
    flex-direction:column;
    gap:40px;
}

.quem-somos-image-desktop img{
    width:100%;
    border-radius:24px;
    display:block;
    object-fit:cover;
}

@media(min-width:1024px){

.quem-somos-grid{
    display:grid;
    grid-template-columns: 1fr 700px;
    gap:80px;
    align-items:center;
}

.quem-somos-image-desktop{
    width:100%;
}

}



/* ===== EQUIPE ===== */
.equipe{
    background:#f7f2ee;
}

.equipe-head{
    max-width:760px;
    margin-bottom:46px;
}

.equipe-head h2{
    margin:18px 0 18px;
}

.equipe-head p{
    max-width:680px;
}

.equipe-grid{
    display:grid;
    grid-template-columns:repeat(1, minmax(0, 1fr));
    gap:22px;
}

.equipe-card{
    background:#fff;
    border:1px solid rgba(20,17,14,.10);
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 18px 50px rgba(20,17,14,.06);
}

.equipe-photo{
    aspect-ratio: 4 / 4.5;
    background:#fff1e8;
    overflow:hidden;
}

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

.equipe-info{
    padding:22px;
}

.equipe-info h3{
    margin:0 0 8px;
    font-size:22px;
    line-height:1.1;
    color:#14110e;
}

.equipe-info p{
    margin:0;
    color:#f04b11;
    font-weight:800;
    line-height:1.35;
}

@media(min-width:640px){
    .equipe-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media(min-width:1024px){
    .equipe-grid{
        grid-template-columns:repeat(5, minmax(0, 1fr));
    }

    .equipe-info h3{
        font-size:20px;
    }
}


/* ===== LOGOS ROTATIVAS ===== */

.logo-marquee{
    overflow:hidden;
    background:#14110e;
    padding:34px 0;
    position:relative;
    border-top:1px solid rgba(255,255,255,.06);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.logo-marquee::before,
.logo-marquee::after{
    content:'';
    position:absolute;
    top:0;
    width:160px;
    height:100%;
    z-index:2;
    pointer-events:none;
}

.logo-marquee::before{
    left:0;
    background:linear-gradient(to right, #14110e, transparent);
}

.logo-marquee::after{
    right:0;
    background:linear-gradient(to left, #14110e, transparent);
}

.logo-marquee-track{
    display:flex;
    width:max-content;
    animation:logo-marquee 28s linear infinite;
}

.logo-marquee-slide{
    display:flex;
    align-items:center;
    gap:72px;
    padding-right:72px;
}

.logo-marquee-slide img{
       height:140px;
    width:auto;
    opacity:.55;
    filter:grayscale(100%);
    transition:.3s ease;
}

.logo-marquee-slide img:hover{
   opacity:1;
    filter:none;
}

@keyframes logo-marquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@media(max-width:680px){
    .logo-marquee{
        padding:26px 0;
    }

    .logo-marquee::before,
    .logo-marquee::after{
        width:70px;
    }

    .logo-marquee-slide{
        gap:44px;
        padding-right:44px;
    }

    .logo-marquee-slide span{
        font-size:.95rem;
    }
}

/* AJUSTE LOGO DO TOPO - SOMENTE A LOGO, SEM CAIXA */
.site-header .brand {
    gap: 0;
}

.site-header .brand span {
    display: none;
}

.site-header .brand-mark {
    width: 90px;
    height: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
    display: block;
}


/* ===== LOGO DO CABEÇALHO - SEM QUADRADO ===== */
.site-header .brand,
.site-header .brand-header{
    display:flex !important;
    align-items:center !important;
    padding:0 !important;
    margin:0 !important;
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
    border-radius:0 !important;
    overflow:visible !important;
    width:auto !important;
    height:auto !important;
}

.site-header .brand::before,
.site-header .brand::after,
.site-header .brand-header::before,
.site-header .brand-header::after{
    display:none !important;
    content:none !important;
}

.site-header .brand img,
.site-header .brand-mark,
.site-header .brand-mark-header{
    height:55px !important;
    width:auto !important;
    max-width:220px !important;
    display:block !important;
    object-fit:contain !important;
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
    border-radius:0 !important;
    padding:0 !important;
    margin:0 !important;
}

/* Mantém rodapé organizado */
.footer .brand img,
.footer .brand-mark{
    height:45px !important;
    width:auto !important;
    max-width:180px !important;
    object-fit:contain !important;
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
    border-radius:0 !important;
}

/* TÍTULO DAS MARCAS ATENDIDAS */


@media(max-width:680px){
    
}


/* ===== TÍTULO CENTRALIZADO DAS MARCAS ===== */


.logo-marquee 

@media(max-width:680px){
    .logo-marquee 

    
}




.logo-marquee{
    text-align:center !important;
}


/* ===== TÍTULO MARCAS QUE ATENDEMOS ===== */
.logo-marquee{
    text-align:center !important;
}

.logo-marquee-title{
    display:block !important;
    width:100vw !important;
    text-align:center !important;
    color:#ffffff !important;
    font-size:32px !important;
    font-weight:800 !important;
    line-height:1.2 !important;
    margin:0 0 40px 0 !important;
    padding:0 !important;
    position:relative !important;
    left:50% !important;
    transform:translateX(-50%) !important;
    z-index:50 !important;
}

@media(max-width:680px){
    .logo-marquee-title{
        font-size:24px !important;
        margin-bottom:30px !important;
    }
}


/* ÍCONES DOS CARDS DE SOLUÇÕES */
.service-icon{
    width:48px !important;
    height:48px !important;
    margin-bottom:12px !important;
}

.service-icon img{
    width:100% !important;
    height:100% !important;
    max-width:48px !important;
    max-height:48px !important;
    object-fit:contain !important;
    display:block !important;
}


/* CONTATO CENTRALIZADO */
.contact-grid{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    text-align:center !important;
}

.contact-copy{
    max-width:1000px;
    margin:0 auto;
}

.contact-copy h2{
    white-space:nowrap;
    text-align:center;
}

.contact-copy p{
    text-align:center;
    max-width:700px;
    margin:20px auto 0;
}

.contact-buttons{
    display:grid;
    grid-template-columns:max-content max-content;
    justify-content:center;
    align-items:center;
    gap:16px;
    margin-top:40px;
}

.contact-buttons .btn-team{
    grid-column:1 / -1;
    justify-self:center;
}

@media(max-width:768px){
    .contact-copy h2{
        white-space:normal;
    }
}


/* ===== EQUIPE POR UNIDADE ===== */
.equipe-unidades{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:24px;
}

.equipe-unidade-card{
    background:#fff;
    border:1px solid rgba(20,17,14,.10);
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 18px 50px rgba(20,17,14,.06);
    transition:.24s ease;
}

.equipe-unidade-card:hover{
    transform:translateY(-4px);
    box-shadow:0 24px 60px rgba(20,17,14,.10);
}

.equipe-unidade-photo{
    width:100%;
    aspect-ratio:16 / 9;
    background:#fff1e8;
    overflow:hidden;
}

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

.equipe-unidade-info{
    padding:22px 24px;
    text-align:center;
}

.equipe-unidade-info h3{
    margin:0;
    font-size:24px;
    line-height:1.1;
    color:#14110e;
}

@media(max-width:768px){
    .equipe-unidades{
        grid-template-columns:1fr;
    }

    .equipe-unidade-photo{
        aspect-ratio:16 / 10;
    }

    .equipe-unidade-info h3{
        font-size:21px;
    }
}


/* ===== LOCALIZAÇÕES DA EQUIPE ===== */
.equipe-localizacoes{
    display:grid;
    gap:12px;
    margin-top:24px;
}

.equipe-head .equipe-localizacoes p{
    display:flex;
    align-items:center;
    gap:12px;
    max-width:none;
    margin:0;
    color:var(--muted);
    font-size:1.04rem;
    line-height:1.6;
}

.equipe-localizacoes strong{
    color:var(--ink);
    font-weight:800;
}

.equipe-bolinha{
    width:12px;
    height:12px;
    min-width:12px;
    border-radius:50%;
    background:var(--orange);
    display:inline-block;
}

@media(max-width:680px){
    .equipe-head .equipe-localizacoes p{
        align-items:flex-start;
        gap:10px;
    }

    .equipe-bolinha{
        margin-top:7px;
    }
}


/* ===== CARDS DO MÉTODO EMPILHANDO NO SCROLL - SOMENTE MOBILE ===== */
@media (max-width: 768px) {

    /* Permite que o sticky funcione normalmente */
    .method,
    .method .container,
    .method-grid,
    .steps {
        overflow: visible !important;
    }

    /* No mobile, os cards continuam um abaixo do outro,
       mas "grudam" no topo conforme entram na tela */
    .steps {
        display: block !important;
        position: relative;
        padding-bottom: 90px;
    }

    .step-card {
        position: -webkit-sticky !important;
        position: sticky !important;
        margin-bottom: 20px !important;
        background: #fff !important;
        will-change: transform;
        transition: box-shadow .25s ease, transform .25s ease;
    }

    /* Cada card para alguns pixels abaixo do anterior,
       criando visualmente a pilha durante o scroll */
    .step-card:nth-child(1) {
        top: 88px !important;
        z-index: 11 !important;
    }

    .step-card:nth-child(2) {
        top: 100px !important;
        z-index: 12 !important;
    }

    .step-card:nth-child(3) {
        top: 112px !important;
        z-index: 13 !important;
    }

    .step-card:nth-child(4) {
        top: 124px !important;
        z-index: 14 !important;
        margin-bottom: 0 !important;
    }

    /* Sombra um pouco mais marcada para deixar a sobreposição perceptível */
    .step-card {
        box-shadow: 0 16px 36px rgba(31, 22, 10, .10) !important;
    }

    /* Remove qualquer transformação da animação reveal,
       pois transform no mesmo elemento pode atrapalhar o sticky em alguns navegadores */
    .steps .step-card.reveal,
    .steps .step-card.reveal.is-visible {
        transform: none !important;
    }
}


/* ===== BOTÃO FAÇA PARTE DO TIME ===== */
.contact-buttons .btn-team{
    flex-basis:100%;
    width:fit-content;
    max-width:max-content;
    margin:4px auto 0;
    background:var(--ink);
    color:var(--white);
    box-shadow:0 14px 35px rgba(23, 20, 15, .18);
}

.contact-buttons .btn-team:hover{
    background:#000;
    transform:translateY(-2px);
}

@media(max-width:680px){
    .contact-buttons .btn-team{
        width:100%;
        max-width:none;
    }
}


/* ===== AJUSTE FINAL CONTATO: BOTÃO DO TIME EMBAIXO E CENTRALIZADO ===== */
.contact-buttons{
    display:grid !important;
    grid-template-columns:max-content max-content !important;
    justify-content:center !important;
    align-items:center !important;
    gap:16px !important;
}

.contact-buttons .btn-team{
    grid-column:1 / -1 !important;
    justify-self:center !important;
    width:fit-content !important;
    max-width:none !important;
    margin:4px 0 0 !important;
}

@media(max-width:680px){
    .contact-buttons{
        grid-template-columns:1fr !important;
        width:100% !important;
    }

    .contact-buttons .btn-team{
        grid-column:1 !important;
        width:100% !important;
    }
}


/* POSIÇÃO DO BOTÃO QUERO MAIS INFORMAÇÕES AO ROLAR */
#quero-mais-informacoes {
    scroll-margin-top: 140px;
}
