:root {
    --brand: #f5820b;
    --brand-dark: #b94b00;
    --brand-deep: #913800;
    --brand-light: #ffad32;
    --ink: #17191c;
    --ink-soft: #25292e;
    --paper: #f7f5f1;
    --muted: #667078;
    --line: #e4e1dc;
    --whatsapp: #0b7f3d;
    --whatsapp-dark: #075f2d;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(23, 25, 28, .12);
    --radius: 1.25rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.icon {
    width: 1.35em;
    height: 1.35em;
    flex: 0 0 auto;
    vertical-align: -0.25em;
}

.icon-sm {
    width: 1.05em;
    height: 1.05em;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: .75rem;
    left: .75rem;
    padding: .7rem 1rem;
    color: var(--ink);
    background: var(--white);
    border: 2px solid var(--brand);
    border-radius: .5rem;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.service-bar {
    padding: .45rem 0;
    color: rgba(255, 255, 255, .82);
    background: #101214;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .035em;
}

.service-bar a {
    color: var(--white);
    text-decoration: none;
}

.service-bar a:hover {
    color: var(--brand-light);
}

.site-header {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(23, 25, 28, .08);
    box-shadow: 0 5px 22px rgba(23, 25, 28, .04);
    backdrop-filter: blur(12px);
}

.navbar {
    min-height: 5rem;
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: var(--ink);
    text-decoration: none;
}

.brand-logo-img {
    display: block;
    width: auto;
    height: 4.1rem;
    object-fit: contain;
}

.footer-logo-img {
    height: 4.6rem;
    padding: .35rem .55rem;
    background: var(--white);
    border-radius: .65rem;
}

.brand-mark {
    --dumpster-line: #17191c;
    display: grid;
    width: 3.25rem;
    height: 3.25rem;
    place-items: center;
    color: var(--brand);
    background: var(--ink);
    border-radius: .65rem;
    transform: skew(-5deg);
}

.brand-mark .icon {
    width: 2.45rem;
    height: 2.1rem;
    transform: skew(5deg);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: .8;
}

.brand-copy strong {
    font-size: 1.65rem;
    font-weight: 950;
    letter-spacing: -.075em;
}

.brand-copy small {
    margin-top: .45rem;
    color: var(--brand-dark);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .26em;
}

.navbar-toggler {
    border: 1px solid var(--line);
    box-shadow: none !important;
}

.nav-link {
    position: relative;
    padding: .55rem .8rem !important;
    color: #41464c;
    font-size: .9rem;
    font-weight: 750;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--brand-dark);
}

.btn {
    display: inline-flex;
    min-height: 3.2rem;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .75rem 1.35rem;
    border: 0;
    border-radius: .7rem;
    font-weight: 850;
    letter-spacing: -.01em;
    box-shadow: none;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

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

.btn:focus-visible {
    outline: 3px solid rgba(245, 130, 11, .35);
    outline-offset: 3px;
}

.btn-lg {
    min-height: 3.65rem;
    padding: .9rem 1.6rem;
    font-size: 1rem;
}

.btn-sm {
    min-height: 2.8rem;
    padding-block: .55rem;
}

.btn-brand {
    color: var(--white);
    background: var(--brand-dark);
    box-shadow: 0 10px 26px rgba(245, 130, 11, .22);
}

.btn-brand:hover,
.btn-brand:focus {
    color: var(--white);
    background: var(--brand-deep);
    box-shadow: 0 14px 32px rgba(245, 130, 11, .3);
}

.btn-whatsapp {
    color: var(--white);
    background: var(--whatsapp);
    box-shadow: 0 12px 28px rgba(32, 184, 90, .24);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    color: var(--white);
    background: var(--whatsapp-dark);
    box-shadow: 0 14px 34px rgba(32, 184, 90, .32);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 4.6rem 0 4.9rem;
    color: var(--white);
    background:
        radial-gradient(circle at 10% 0%, rgba(245, 130, 11, .18), transparent 30rem),
        radial-gradient(circle at 85% 70%, rgba(245, 130, 11, .12), transparent 26rem),
        linear-gradient(125deg, #17191c 0%, #202328 55%, #151719 100%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 32rem;
    height: 32rem;
    top: -17rem;
    right: -8rem;
    border: 5rem solid rgba(245, 130, 11, .08);
    border-radius: 50%;
}

.hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 35%;
    height: .45rem;
    background: var(--brand);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .09;
    background-image:
        linear-gradient(rgba(255, 255, 255, .3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .3) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, black, transparent 75%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1rem;
    color: var(--brand-dark);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 1.8rem;
    height: .23rem;
    background: var(--brand);
    transform: skew(-25deg);
}

.eyebrow.light {
    color: var(--brand-light);
}

.hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(2.75rem, 5.3vw, 5rem);
    font-weight: 950;
    line-height: .98;
    letter-spacing: -.06em;
}

.hero h1 span {
    color: var(--brand-light);
}

.hero-lead {
    max-width: 690px;
    margin: 1.5rem 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    line-height: 1.65;
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: var(--white);
    line-height: 1.15;
    text-decoration: none;
}

.hero-phone .icon-circle {
    display: grid;
    width: 2.85rem;
    height: 2.85rem;
    place-items: center;
    color: var(--brand-light);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
}

.hero-phone span:last-child {
    font-weight: 850;
}

.hero-phone small {
    display: block;
    margin-bottom: .2rem;
    color: rgba(255, 255, 255, .55);
    font-size: .7rem;
    font-weight: 650;
    letter-spacing: .04em;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem 1.4rem;
    margin: 2rem 0 0;
    padding: 0;
    color: rgba(255, 255, 255, .75);
    font-size: .84rem;
    font-weight: 650;
    list-style: none;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.hero-points .icon {
    color: var(--brand-light);
}

.mobile-hero-dumpster {
    display: grid;
    margin: .4rem 0 1.15rem;
    padding: .75rem;
    place-items: center;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(245, 130, 11, .28);
    border-radius: 1rem;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.mobile-hero-dumpster img {
    display: block;
    width: min(100%, 20rem);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 13px 18px rgba(0, 0, 0, .2));
}

.hero-showcase {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin-left: auto;
}

.hero-product-card {
    position: relative;
    overflow: visible;
    min-height: 26rem;
    padding: 3.2rem 2.5rem 5.4rem;
    color: var(--ink);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(255, 243, 220, .96)),
        var(--white);
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 1.45rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}

.hero-product-card::before {
    content: "";
    position: absolute;
    inset: 1.2rem;
    border: 1px solid rgba(245, 130, 11, .2);
    border-radius: 1rem;
}

.hero-product-card::after {
    content: "";
    position: absolute;
    right: 1.4rem;
    bottom: 1.4rem;
    left: 1.4rem;
    height: 1.05rem;
    background: repeating-linear-gradient(-45deg, var(--ink) 0 18px, var(--brand-light) 18px 36px);
    border-radius: 999px;
}

.hero-product-card img {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 34rem);
    height: auto;
    margin: .4rem auto 0;
    object-fit: contain;
    filter: drop-shadow(0 24px 24px rgba(53, 43, 28, .28));
}

.hero-product-caption {
    position: absolute;
    z-index: 2;
    right: 2rem;
    bottom: 3.2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 1rem;
    color: var(--white);
    background: rgba(23, 25, 28, .94);
    border-radius: .85rem;
    box-shadow: 0 14px 30px rgba(23, 25, 28, .24);
}

.hero-product-caption strong,
.hero-product-caption span {
    display: block;
}

.hero-product-caption strong {
    font-size: 1rem;
    font-weight: 950;
    letter-spacing: -.02em;
}

.hero-product-caption span {
    color: rgba(255, 255, 255, .66);
    font-size: .78rem;
    font-weight: 650;
}

.hero-mini-card {
    position: absolute;
    z-index: 3;
    top: 4.8rem;
    left: -1.2rem;
    display: flex;
    max-width: 15.5rem;
    align-items: center;
    gap: .75rem;
    padding: .85rem .95rem;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(245, 130, 11, .2);
    border-radius: .85rem;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
    font-size: .78rem;
    line-height: 1.25;
}

.hero-mini-card .icon {
    width: 2rem;
    height: 2rem;
    color: var(--brand-dark);
}

.hero-mini-card strong {
    display: block;
    font-size: .88rem;
    font-weight: 950;
}

.logo-stage {
    position: relative;
    display: grid;
    overflow: hidden;
    height: 11.5rem;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(245, 130, 11, .95), rgba(255, 179, 62, .85)),
        var(--brand);
}

.logo-stage::after {
    content: "";
    position: absolute;
    inset: auto -10% -1.6rem -10%;
    height: 3.5rem;
    background: repeating-linear-gradient(-45deg, var(--ink) 0 18px, #ffc129 18px 36px);
    transform: rotate(-2deg);
}

.logo-stage img {
    position: relative;
    z-index: 1;
    width: 12.5rem;
    height: auto;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .25));
}

.stage-label {
    position: absolute;
    z-index: 2;
    top: .8rem;
    right: .8rem;
    padding: .3rem .55rem;
    color: var(--white);
    background: var(--ink);
    border-radius: .3rem;
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.form-label {
    margin-bottom: .35rem;
    color: #353a40;
    font-size: .78rem;
    font-weight: 800;
}

.form-control,
.form-select {
    min-height: 3rem;
    color: var(--ink);
    background-color: #f9f8f6;
    border: 1px solid #dcd9d3;
    border-radius: .65rem;
    font-size: .9rem;
}

.form-control:focus,
.form-select:focus {
    background-color: var(--white);
    border-color: var(--brand);
    box-shadow: 0 0 0 .2rem rgba(245, 130, 11, .13);
}

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap > .icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: .9rem;
    color: var(--muted);
    transform: translateY(-50%);
}

.input-icon-wrap .form-control {
    padding-left: 2.65rem;
}

.quick-proof {
    position: relative;
    z-index: 4;
    margin-top: -1px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.proof-item {
    display: flex;
    min-height: 7.8rem;
    align-items: center;
    justify-content: center;
    gap: .95rem;
    padding: 1.5rem;
    border-right: 1px solid var(--line);
}

.proof-item:last-child {
    border-right: 0;
}

.proof-icon {
    display: grid;
    width: 3.2rem;
    height: 3.2rem;
    place-items: center;
    color: var(--brand-dark);
    background: #fff2df;
    border-radius: .75rem;
}

.proof-icon .icon {
    width: 1.55rem;
    height: 1.55rem;
}

.proof-item strong,
.proof-item span {
    display: block;
}

.proof-item strong {
    font-size: .98rem;
    font-weight: 850;
}

.proof-item span {
    color: var(--muted);
    font-size: .8rem;
}

.section-space {
    padding: 6.75rem 0;
}

.section-title {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.15rem, 4vw, 3.55rem);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -.055em;
}

.section-intro {
    color: var(--muted);
    font-size: 1.04rem;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 35px rgba(23, 25, 28, .045);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
    border-color: rgba(245, 130, 11, .55);
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.service-card.featured {
    color: var(--white);
    background: var(--ink-soft);
    border-color: var(--ink-soft);
}

.service-card.featured::after {
    content: "";
    position: absolute;
    width: 12rem;
    height: 12rem;
    right: -5rem;
    bottom: -6rem;
    border: 2.5rem solid rgba(245, 130, 11, .12);
    border-radius: 50%;
}

.popular-tag {
    position: absolute;
    z-index: 4;
    top: 1.2rem;
    right: 1.2rem;
    padding: .3rem .55rem;
    color: var(--ink);
    background: var(--brand-light);
    border-radius: .3rem;
    font-size: .58rem;
    font-weight: 950;
    letter-spacing: .08em;
}

.service-number {
    margin-bottom: .7rem;
    color: #d8d4cf;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.featured .service-number {
    color: rgba(255, 255, 255, .35);
}

.service-media {
    position: relative;
    display: grid;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    place-items: center;
    background: var(--white);
    overflow: visible;
}

.service-media img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.service-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.8rem 2.15rem 2.15rem;
    border-top: .35rem solid var(--brand);
}

.service-card h3 {
    margin-bottom: .7rem;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.03em;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--muted);
    font-size: .92rem;
}

.service-card.featured p {
    color: rgba(255, 255, 255, .62);
}

.service-card a,
.text-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--brand-dark);
    font-size: .87rem;
    font-weight: 850;
    text-decoration: none;
}

.service-card-body > a {
    margin-top: auto;
}

.service-card.featured a {
    color: var(--brand-light);
}

.service-card a:hover .icon,
.text-link:hover .icon {
    transform: translateX(4px);
}

.service-card a .icon,
.text-link .icon {
    transition: transform .2s ease;
}

.process-section {
    background: var(--white);
}

.process-visual {
    position: relative;
    overflow: hidden;
    min-height: 34rem;
    color: var(--white);
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 130, 11, .18), transparent 45%),
        linear-gradient(145deg, #202328, #111315);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
}

.process-visual::before {
    content: "";
    position: absolute;
    width: 20rem;
    height: 20rem;
    right: -8rem;
    bottom: -6rem;
    border: 3.5rem solid rgba(255, 255, 255, .03);
    border-radius: 50%;
}

.hazard-stripe {
    height: 1rem;
    background: repeating-linear-gradient(-45deg, var(--ink) 0 15px, var(--brand-light) 15px 30px);
}

.visual-copy {
    position: relative;
    z-index: 2;
    padding: 3rem 2.5rem;
}

.visual-copy > span {
    display: block;
    margin-bottom: 1rem;
    color: var(--brand-light);
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .18em;
}

.visual-copy strong {
    font-size: clamp(2.3rem, 4.5vw, 3.8rem);
    font-weight: 950;
    line-height: .98;
    letter-spacing: -.06em;
}

.visual-copy em {
    color: var(--brand-light);
    font-style: normal;
}

.process-dumpster-frame {
    position: absolute;
    right: 1.25rem;
    bottom: 2.25rem;
    width: calc(100% - 2.5rem);
    max-width: 22rem;
    height: 15rem;
    overflow: hidden;
    background: var(--white);
    border: 5px solid rgba(245, 130, 11, .9);
    border-radius: 1.2rem;
    box-shadow: 0 25px 35px rgba(0, 0, 0, .35);
    transform: rotate(-5deg);
}

.process-dumpster-frame img {
    width: 100%;
    height: 100%;
    padding: .3rem;
    object-fit: contain;
}

.visual-badge {
    position: absolute;
    z-index: 3;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .85rem 1rem;
    color: var(--ink);
    background: var(--white);
    border-radius: .7rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
    font-size: .7rem;
    line-height: 1.2;
}

.visual-badge .icon {
    width: 1.8rem;
    height: 1.8rem;
    color: var(--whatsapp);
}

.visual-badge strong {
    font-size: .83rem;
}

.process-list {
    margin: 2rem 0 2.2rem;
    padding: 0;
    list-style: none;
}

.process-list li {
    position: relative;
    display: flex;
    gap: 1.2rem;
    padding: 0 0 1.75rem;
}

.process-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 3rem;
    bottom: .15rem;
    left: 1.45rem;
    width: 1px;
    background: #d9d5cf;
}

.step-number {
    position: relative;
    z-index: 1;
    display: grid;
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    place-items: center;
    color: var(--brand-dark);
    background: #fff0db;
    border: 1px solid #ffd49d;
    border-radius: 50%;
    font-size: .85rem;
    font-weight: 950;
}

.process-list h3 {
    margin: .1rem 0 .15rem;
    font-size: 1.08rem;
    font-weight: 900;
}

.process-list p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.area-section {
    position: relative;
    overflow: hidden;
}

.area-section::before {
    content: "GO";
    position: absolute;
    top: 0;
    right: -1rem;
    color: rgba(23, 25, 28, .025);
    font-size: 25rem;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.12em;
}

.city-list {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin: 2rem 0;
}

.city-list span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .55rem .8rem;
    color: #454b50;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 750;
}

.city-list .icon {
    color: var(--brand-dark);
}

.info-alert {
    display: flex;
    max-width: 670px;
    align-items: flex-start;
    gap: .8rem;
    padding: 1rem 1.1rem;
    background: #fff4e5;
    border-left: 4px solid var(--brand);
    border-radius: .3rem .7rem .7rem .3rem;
}

.info-alert .icon {
    margin-top: .1rem;
    color: var(--brand-dark);
}

.info-alert p {
    margin: 0;
    color: #56504a;
    font-size: .84rem;
}

.local-card {
    position: relative;
    overflow: hidden;
    padding: 3rem;
    color: var(--white);
    background: var(--ink-soft);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
}

.local-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(rgba(255, 255, 255, .35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .35) 1px, transparent 1px);
    background-size: 34px 34px;
}

.local-card > * {
    position: relative;
    z-index: 2;
}

.local-card-label {
    color: var(--brand-light);
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .17em;
}

.map-pin-large {
    display: block;
    width: 5rem;
    height: 5rem;
    margin: 2.5rem 0 1.7rem;
    color: var(--brand);
    filter: drop-shadow(0 9px 12px rgba(245, 130, 11, .2));
}

.goias-outline {
    position: absolute;
    z-index: 1;
    top: 2.5rem;
    right: 1rem;
    color: rgba(255, 255, 255, .045);
    font-size: 10rem;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.1em;
}

.local-card h3 {
    margin-bottom: .5rem;
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: -.04em;
}

.local-card p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, .6);
}

.faq-section {
    background: var(--white);
}

.accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
}

.accordion-button {
    padding: 1.35rem .15rem;
    color: var(--ink);
    background: transparent;
    font-size: 1rem;
    font-weight: 850;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--brand-dark);
    background: transparent;
}

.accordion-button::after {
    width: 1.2rem;
    height: 1.2rem;
    background-size: 1.2rem;
}

.accordion-body {
    max-width: 720px;
    padding: 0 .15rem 1.4rem;
    color: var(--muted);
    font-size: .93rem;
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0;
    color: var(--white);
    background:
        linear-gradient(105deg, rgba(23, 25, 28, .96), rgba(23, 25, 28, .86)),
        repeating-linear-gradient(-45deg, transparent 0 30px, rgba(245, 130, 11, .3) 30px 60px),
        var(--ink);
}

.final-cta::after {
    content: "";
    position: absolute;
    top: 0;
    right: 8%;
    width: .55rem;
    height: 100%;
    background: var(--brand);
    transform: skew(-16deg);
}

.final-cta .container {
    z-index: 2;
}

.final-product {
    width: 10.5rem;
    height: 10.5rem;
    overflow: hidden;
    background: var(--white);
    border: 5px solid var(--brand);
    border-radius: 50%;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .28);
    transform: rotate(-4deg);
}

.final-product img {
    width: 100%;
    height: 100%;
    padding: .3rem;
    object-fit: contain;
}

.final-kicker {
    display: block;
    margin-bottom: .7rem;
    color: var(--brand-light);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .18em;
}

.final-cta h2 {
    max-width: 760px;
    margin: 0 0 .35rem;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -.05em;
}

.final-cta p {
    margin: 0;
    color: rgba(255, 255, 255, .65);
}

.site-footer {
    padding: 4.5rem 0 1.5rem;
    color: rgba(255, 255, 255, .7);
    background: #0e1012;
}

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

.site-footer .brand-mark {
    --dumpster-line: #17191c;
}

.site-footer .brand-copy small {
    color: var(--brand-light);
}

.site-footer .col-lg-5 > p {
    max-width: 370px;
    margin: 1rem 0 0;
    font-size: .84rem;
}

.footer-heading {
    display: block;
    margin-bottom: 1rem;
    color: var(--brand-light);
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .16em;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, .62);
    font-size: .82rem;
    text-decoration: none;
}

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

.footer-contact {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    color: var(--white);
    text-decoration: none;
}

.footer-contact > span {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    color: var(--white);
    background: var(--whatsapp);
    border-radius: 50%;
}

.footer-contact small,
.footer-contact strong {
    display: block;
}

.footer-contact small {
    color: rgba(255, 255, 255, .5);
    font-size: .68rem;
}

.footer-contact strong {
    font-size: 1.05rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3.5rem;
    padding-top: 1.4rem;
    color: rgba(255, 255, 255, .38);
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .72rem;
}

.floating-whatsapp {
    position: fixed;
    z-index: 1040;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    color: var(--ink);
    text-decoration: none;
}

.floating-copy {
    padding: .65rem .9rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: .65rem;
    box-shadow: 0 10px 30px rgba(23, 25, 28, .15);
    line-height: 1.15;
}

.floating-copy::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 3.75rem;
    width: .7rem;
    height: .7rem;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    transform: translateY(-50%) rotate(45deg);
}

.floating-copy small,
.floating-copy strong {
    display: block;
}

.floating-copy small {
    color: var(--muted);
    font-size: .62rem;
}

.floating-copy strong {
    font-size: .78rem;
}

.floating-icon {
    display: grid;
    width: 3.7rem;
    height: 3.7rem;
    place-items: center;
    color: var(--white);
    background: var(--whatsapp);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(32, 184, 90, .35);
    transition: transform .2s ease;
}

.floating-icon .icon {
    width: 2rem;
    height: 2rem;
}

.floating-whatsapp:hover .floating-icon {
    transform: scale(1.07);
}

.mobile-cta {
    position: fixed;
    z-index: 1040;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .65rem max(.75rem, env(safe-area-inset-left)) calc(.65rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(23, 25, 28, .1);
    backdrop-filter: blur(10px);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem 0 1.25rem;
        border-top: 1px solid var(--line);
    }

    .hero {
        padding-top: 4.25rem;
    }

    .hero-showcase {
        margin-right: auto;
        margin-left: 0;
    }

    .hero-mini-card {
        left: .8rem;
    }

    .proof-item {
        justify-content: flex-start;
    }

    .process-visual {
        max-width: 650px;
        min-height: 30rem;
    }

    .local-card {
        max-width: 650px;
    }

    .final-cta::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .service-bar {
        font-size: .7rem;
    }

    .navbar {
        min-height: 4.5rem;
    }

    .brand-mark {
        width: 2.8rem;
        height: 2.8rem;
    }

    .brand-mark .icon {
        width: 2.05rem;
    }

    .brand-logo-img {
        height: 3.35rem;
    }

    .footer-logo-img {
        height: 4.1rem;
    }

    .brand-copy strong {
        font-size: 1.4rem;
    }

    .brand-copy small {
        font-size: .58rem;
    }

    .hero {
        padding: 3.7rem 0 4.25rem;
    }

    .hero h1 {
        font-size: clamp(2.25rem, 11.5vw, 3.3rem);
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-points {
        flex-direction: column;
        gap: .55rem;
    }

    .hero-showcase {
        display: none;
    }

    .hero-product-card {
        min-height: 22rem;
        padding: 2.2rem 1rem 6.5rem;
        border-radius: 1rem;
    }

    .hero-product-card img {
        width: min(100%, 24rem);
    }

    .hero-product-caption {
        right: 1rem;
        bottom: 2.7rem;
        left: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: .15rem;
    }

    .hero-mini-card {
        position: relative;
        top: auto;
        left: auto;
        max-width: none;
        margin: .85rem 0 0;
    }

    .logo-stage {
        height: 10rem;
    }

    .logo-stage img {
        width: 10.5rem;
    }

    .quick-proof {
        padding: .75rem 0;
    }

    .proof-item {
        min-height: auto;
        padding: 1rem .4rem;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .proof-item:last-child {
        border-bottom: 0;
    }

    .section-space {
        padding: 4.7rem 0;
    }

    .section-title {
        font-size: clamp(2.05rem, 10vw, 3rem);
    }

    .service-card p {
        min-height: 0;
    }

    .process-visual {
        min-height: 27rem;
    }

    .visual-copy {
        padding: 2.3rem 1.6rem;
    }

    .process-dumpster-frame {
        right: 1rem;
        left: 1rem;
        width: auto;
        max-width: none;
        height: 12.5rem;
    }

    .local-card {
        padding: 2rem 1.5rem;
    }

    .goias-outline {
        font-size: 8rem;
    }

    .final-cta {
        padding: 3.7rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer {
        padding-bottom: calc(6.4rem + env(safe-area-inset-bottom));
    }
}

@media (max-width: 420px) {
    .hero .btn-lg {
        width: 100%;
    }

    .hero-phone {
        margin-inline: auto;
    }

    .city-list {
        flex-direction: column;
        align-items: stretch;
    }

    .city-list span {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
