:root {
    --bg: #05070d;
    --panel: #0b0e15;
    --panel2: #11151e;
    --gold: #f5b719;
    --blue: #1b4fe0;
    --green: #25d366;
    --white: #f7f8fb;
    --muted: #9299a8;
    --line: rgba(255, 255, 255, .11);
    --cond: "Barlow Condensed", sans-serif;
    --body: "Inter", sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--white);
    font: 16px/1.65 var(--body);
    overflow-x: hidden
}

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

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

.container {
    width: min(1180px, calc(100% - 48px));
    margin: auto
}

.header {
    height: 88px;
    position: absolute;
    z-index: 50;
    inset: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 0 max(24px, calc((100vw - 1280px)/2));
    gap: 40px
}

.brand {
    margin-right: auto
}

.brand img {
    width: 145px;
    height: 60px;
    object-fit: contain
}

.header nav {
    display: flex;
    gap: 28px;
    font-size: .82rem;
    color: #c2c4cb
}

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

.wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 24px;
    border-radius: 5px;
    background: var(--green);
    color: #05190d;
    font-weight: 800;
    font-size: .84rem;
    box-shadow: 0 0 30px rgba(37, 211, 102, .22)
}

.wa-small {
    min-height: 42px;
    padding: 10px 18px
}

.menu-btn {
    display: none
}

.hero {
    min-height: 850px;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #30200c
}

.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 3, 6, .98) 0%, rgba(2, 3, 6, .87) 39%, rgba(2, 3, 6, .32) 72%, rgba(2, 3, 6, .55) 100%), linear-gradient(0deg, rgba(2, 3, 6, .83), transparent 45%)
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 90px;
    align-items: center;
    padding-top: 80px
}

.kicker,
.section-title>span,
.section-title>div>span,
.work-content>span,
.contact-grid>div>span {
    color: var(--gold);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .18em
}

.hero h1 {
    font: 800 clamp(4.8rem, 8vw, 7.6rem)/.84 var(--cond);
    text-transform: uppercase;
    letter-spacing: .005em;
    margin: 24px 0 32px;
    max-width: 720px
}

.hero h1 em {
    font-style: normal;
    color: var(--gold)
}

.lead {
    max-width: 610px;
    color: #a9adb7;
    font-size: 1rem
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px
}

.ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 52px;
    padding: 12px 25px;
    border: 1px solid rgba(245, 183, 25, .38);
    border-radius: 5px;
    font-size: .83rem;
    font-weight: 700
}

.ghost:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.hero-facts {
    display: grid;
    gap: 14px
}

.hero-facts div {
    padding: 22px;
    background: rgba(9, 11, 16, .7);
    border: 1px solid var(--line);
    border-left: 2px solid var(--gold);
    backdrop-filter: blur(8px)
}

.hero-facts strong,
.hero-facts span {
    display: block
}

.hero-facts strong {
    font: 800 2rem var(--cond);
    color: var(--gold)
}

.hero-facts span {
    color: #a9adb7;
    font-size: .73rem
}

.scroll {
    position: absolute;
    z-index: 3;
    bottom: 26px;
    left: 50%;
    font-size: 2rem;
    color: #bbb;
    animation: bob 1.6s infinite
}

@keyframes bob {
    50% {
        transform: translateY(6px)
    }
}

.ticker {
    background: #101218;
    border-bottom: 1px solid var(--line);
    overflow: hidden
}

.ticker div {
    min-width: max-content;
    height: 62px;
    display: flex;
    align-items: center;
    gap: 34px;
    color: #8f95a2;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .06em;
    animation: ticker 28s linear infinite
}

.ticker i {
    color: var(--gold);
    font-size: .5rem
}

@keyframes ticker {
    to {
        transform: translateX(-30%)
    }
}

.section {
    padding: 110px 0
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 54px
}

.section-title h2,
.work h2,
.contact h2 {
    font: 800 clamp(3.2rem, 5.6vw, 5.4rem)/.92 var(--cond);
    text-transform: uppercase;
    letter-spacing: .01em;
    margin: 12px 0 16px
}

.section-title p {
    color: var(--muted);
    margin: auto;
    max-width: 590px
}

.section-title.row {
    max-width: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: end
}

.section-title.row>p {
    max-width: 420px;
    margin: 0
}

.why {
    background: linear-gradient(180deg, #080a0f, #05070d)
}

.why-grid {
    display: grid;
    grid-template-columns: 1.25fr .85fr .85fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 16px
}

.why-grid article {
    background: var(--panel);
    border: 1px solid var(--line);
    padding: 30px;
    min-height: 250px
}

.why-grid article:hover {
    border-color: rgba(245, 183, 25, .45)
}

.why-main {
    grid-row: 1/3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(145deg, #0b0e15, #171203) !important
}

.icon {
    width: 46px;
    height: 46px;
    border-radius: 4px;
    background: rgba(245, 183, 25, .12);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-weight: 800;
    margin-bottom: 45px
}

.why-main .icon {
    margin-bottom: auto
}

.why-grid h3 {
    font: 700 1.65rem var(--cond);
    text-transform: uppercase;
    margin: 0 0 10px
}

.why-grid p {
    color: var(--muted);
    font-size: .86rem;
    margin: 0
}

.why-main strong {
    color: var(--gold);
    font-size: .68rem;
    letter-spacing: .12em;
    margin-top: 28px
}

.services {
    background: #080a0f
}

.service-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px
}

.service-tabs button {
    border: 1px solid var(--line);
    background: transparent;
    color: #a3a8b3;
    padding: 10px 18px;
    border-radius: 99px;
    cursor: pointer
}

.service-tabs button.active {
    background: var(--gold);
    color: #111;
    border-color: var(--gold)
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line)
}

.service-card {
    background: var(--panel);
    padding: 34px;
    min-height: 270px;
    display: flex;
    flex-direction: column
}

.service-card:hover {
    background: #121721
}

.service-card>span {
    color: var(--gold);
    font: 800 1rem var(--cond)
}

.service-card h3 {
    font: 700 2rem var(--cond);
    text-transform: uppercase;
    margin: 55px 0 10px
}

.service-card p {
    color: var(--muted);
    font-size: .86rem
}

.service-card b {
    margin-top: auto;
    color: var(--gold);
    font-size: .72rem
}

.service-card.hidden {
    display: none
}

.contact-card {
    background: var(--blue)
}

.contact-card small {
    color: #cbd7ff
}

.contact-card h3 {
    margin-top: 16px
}

.contact-card b {
    color: #fff
}

.work {
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden
}

.work-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 5, 8, .98), rgba(4, 5, 8, .57)), url("../images/embreagem.png") center 35%/cover
}

.work-content {
    position: relative;
    z-index: 1
}

.work-content p {
    color: #a8adb7;
    max-width: 500px;
    margin-bottom: 28px
}

.offers {
    background: #07090e
}

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

.offer-grid article {
    background: var(--panel);
    border: 1px solid var(--line);
    overflow: hidden
}

.offer-grid img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    object-position: center 25%;
    filter: saturate(.8)
}

.offer-grid article>div {
    padding: 28px
}

.offer-grid small {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: .13em
}

.offer-grid h3 {
    font: 800 4.3rem/1 var(--cond);
    margin: 12px 0 0
}

.offer-grid h3 sup {
    font-size: 1rem
}

.offer-grid h3 em {
    font-size: 1.2rem;
    font-style: normal
}

.offer-grid p {
    color: var(--muted);
    font-size: .76rem
}

.offer-grid a {
    display: block;
    border-top: 1px solid var(--line);
    padding-top: 17px;
    color: var(--gold);
    font-size: .75rem;
    font-weight: 700
}

.fine {
    color: #777e8b;
    font-size: .7rem
}

.contact {
    background: linear-gradient(120deg, #112d80, #06112e);
    padding: 95px 0
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 100px;
    align-items: center
}

.contact-grid>div>p {
    color: #bcc8e9
}

.contact-panel {
    background: rgba(2, 6, 18, .55);
    border: 1px solid rgba(255, 255, 255, .14);
    padding: 36px
}

.contact-panel small {
    color: var(--gold);
    letter-spacing: .15em
}

.phone {
    display: block;
    font: 800 clamp(2.5rem, 4vw, 4rem) var(--cond);
    margin: 10px 0
}

.contact-panel p {
    color: #aeb8d4
}

footer {
    background: #030408;
    padding: 48px 0;
    color: #7f8794
}

footer .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center
}

footer img {
    width: 145px;
    height: 58px;
    object-fit: contain
}

footer p {
    font-size: .8rem
}

footer div div {
    display: flex;
    gap: 22px;
    color: #b9bec8;
    font-size: .78rem
}

footer small {
    grid-column: 1/-1;
    /* border-top: 1px solid var(--line); */
    padding-top: 20px
}

.float-wa {
    position: fixed;
    z-index: 70;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: grid;
    place-items: center;
    box-shadow: 0 0 28px rgba(37, 211, 102, .45)
}

.float-wa:after {
    content: "";
    position: absolute;
    width: 18px;
    height: 14px;
    border: 3px solid white;
    border-radius: 50%
}

@media(max-width:950px) {
    .header nav {
        display: none
    }

    .menu-btn {
        display: block;
        background: none;
        border: 0;
        padding: 12px
    }

    .menu-btn span {
        display: block;
        width: 25px;
        height: 2px;
        background: white;
        margin: 6px
    }

    .header.open nav {
        display: flex;
        position: absolute;
        top: 78px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        background: #0a0d14;
        padding: 24px;
        border: 1px solid var(--line)
    }

    .hero-inner {
        grid-template-columns: 1fr
    }

    .hero-facts {
        grid-template-columns: repeat(3, 1fr)
    }

    .why-grid {
        grid-template-columns: 1fr 1fr
    }

    .why-main {
        grid-row: auto
    }

    .service-grid {
        grid-template-columns: 1fr 1fr
    }

    .offer-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }
}

@media(max-width:620px) {
    .container {
        width: min(100% - 32px, 1180px)
    }

    .header {
        height: 72px;
        padding: 0 16px;
        gap: 12px
    }

    .brand img {
        width: 112px;
        height: 48px
    }

    .wa-small {
        display: none
    }

    .hero {
        min-height: 780px
    }

    .hero-inner {
        padding-top: 55px;
        gap: 38px
    }

    .hero h1 {
        font-size: 4rem
    }

    .lead {
        font-size: .92rem
    }

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

    .hero-facts {
        grid-template-columns: 1fr
    }

    .hero-facts div {
        padding: 13px 18px
    }

    .hero-facts strong {
        font-size: 1.4rem
    }

    .scroll {
        display: none
    }

    .section {
        padding: 78px 0
    }

    .section-title.row {
        display: block
    }

    .section-title.row>p {
        margin-top: 20px
    }

    .section-title h2,
    .work h2,
    .contact h2 {
        font-size: 2.8rem
    }

    .why-grid,
    .service-grid,
    .offer-grid {
        grid-template-columns: 1fr
    }

    .why-grid article {
        min-height: 220px
    }

    .service-card {
        min-height: 235px
    }

    .service-card h3 {
        margin-top: 35px
    }

    .work {
        min-height: 530px
    }

    .offer-grid img {
        height: 230px
    }

    .contact {
        padding: 75px 0
    }

    .contact-panel {
        padding: 26px 22px
    }

    footer .container {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 18px
    }

    footer small {
        width: 100%
    }

    .float-wa {
        right: 14px;
        bottom: 14px
    }
}

@media(prefers-reduced-motion:reduce) {

    .ticker div,
    .scroll {
        animation: none
    }
}

/* Premium refinement: preserve portrait media and show promotional artwork in full */
.brand {
    width: 150px;
    height: 58px;
    overflow: hidden;
    margin-right: auto
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero {
    min-height: 850px;
    background: radial-gradient(circle at 76% 44%, #1a1e28 0%, #090b11 37%, #030408 74%);
    overflow: hidden
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0 58%, rgba(245, 183, 25, .04) 58% 58.1%, transparent 58.1%), linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 100% 100%, 100% 64px;
    pointer-events: none
}

.hero>.hero-shade,
.hero>video {
    display: none
}

.hero-inner {
    grid-template-columns: 1fr .78fr;
    gap: 80px;
    padding-top: 90px
}

.hero-media {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.video-frame {
    position: relative;
    width: min(100%, 410px);
    height: 620px;
    padding: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .15), rgba(245, 183, 25, .28));
    box-shadow: 0 40px 90px rgba(0, 0, 0, .5)
}

.video-frame:before {
    content: "";
    position: absolute;
    inset: -18px 18px 18px -18px;
    border: 1px solid rgba(245, 183, 25, .28);
    z-index: -1
}

.video-frame video {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(255, 255, 255, .08)
}

.video-label {
    position: absolute;
    right: 22px;
    top: 22px;
    background: rgba(4, 5, 8, .8);
    border: 1px solid rgba(255, 255, 255, .14);
    padding: 8px 12px;
    color: var(--gold);
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .14em;
    backdrop-filter: blur(8px)
}

.hero-facts {
    position: absolute;
    left: -55px;
    bottom: 44px;
    width: 240px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px
}

.hero-facts div {
    padding: 17px 20px;
    background: rgba(6, 8, 12, .92);
    border: 1px solid var(--line);
    border-left: 2px solid var(--gold);
    backdrop-filter: blur(10px)
}

.hero-facts strong {
    font-size: 1.65rem
}

.why-grid article,
.service-card,
.offer-grid article,
.contact-panel {
    box-shadow: inset 0 1px rgba(255, 255, 255, .025)
}

.why-grid article,
.service-card,
.offer-grid article {
    transition: border-color .25s, transform .25s, background .25s
}

.why-grid article:hover,
.service-card:hover,
.offer-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 183, 25, .38)
}

.work-bg {
    background: linear-gradient(90deg, rgba(4, 5, 8, .99) 0%, rgba(4, 5, 8, .9) 48%, rgba(4, 5, 8, .46) 100%), radial-gradient(circle at 78% 50%, rgba(27, 79, 224, .28), transparent 34%), url("../images/logo.png") 82% center/520px no-repeat;
    background-color: #05070d;
    filter: saturate(.9)
}

.offer-grid img {
    width: 100%;
    height: 390px;
    object-fit: contain;
    object-position: center;
    background: #0e1118;
    padding: 14px;
    filter: saturate(.95)
}

.offer-grid article>div {
    border-top: 1px solid var(--line)
}

footer img {
    width: 145px;
    height: 58px;
    object-fit: cover;
    object-position: center
}

@media(max-width:950px) {
    .hero-inner {
        grid-template-columns: 1fr
    }

    .hero-media {
        min-height: 680px;
        justify-content: center
    }

    .hero-facts {
        left: calc(50% - 260px);
        bottom: 25px
    }

    .offer-grid img {
        height: 400px
    }
}

@media(max-width:620px) {
    .brand {
        width: 118px;
        height: 48px
    }

    .brand img {
        width: 100%;
        height: 100%
    }

    .hero {
        min-height: auto;
        padding: 105px 0 70px
    }

    .hero-inner {
        padding-top: 0;
        gap: 48px
    }

    .hero-media {
        min-height: 620px
    }

    .video-frame {
        height: 560px;
        width: min(100%, 360px)
    }

    .hero-facts {
        left: 0;
        right: 0;
        bottom: 0;
        width: auto;
        grid-template-columns: 1fr
    }

    .hero-facts div {
        padding: 12px 16px
    }

    .hero-facts span {
        font-size: .68rem
    }

    .offer-grid img {
        height: 430px;
        padding: 10px
    }

    .work-bg {
        background-size: auto, auto, 320px
    }
}
   .ticker {
        width: 100%;
        overflow: hidden;
    }

    .ticker__track {
        display: flex;
        width: max-content;
        animation: lopes-ticker 25s linear infinite;
        will-change: transform;
    }

    .ticker__group {
        display: flex;
        flex-shrink: 0;
        gap: 32px;
        align-items: center;
        padding-right: 32px;
    }

    .ticker__group span {
        white-space: nowrap;
    }

    .ticker__group i {
        color: #ffc400;
        font-style: normal;
    }

    .ticker:hover .ticker__track {
        animation-play-state: paused;
    }

    @keyframes lopes-ticker {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    @media (max-width: 768px) {
        .ticker__track {
            animation-duration: 18s;
        }

        .ticker__group {
            gap: 22px;
            padding-right: 22px;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .ticker__track {
            animation-play-state: paused;
        }
    }