:root {
    --gold: #FFB800;
    --black: #000000;
    --dark: #0d0d0d;
    --mid: #1a1a1a;
    --text: #c8c8c8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 184, 0, .15);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-decoration: none;
}

.nav-logo span {
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #aaa;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .25s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--black);
    padding: .55rem 1.4rem;
    border-radius: 2px;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s;
}

.nav-cta:hover {
    background: #e0a200;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 120px 10% 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255, 184, 0, .04) 60px),
        repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255, 184, 0, .04) 60px);
}

.hero::after {
    content: '';
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 55vw;
    height: 55vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 184, 0, .12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-tag {
    font-size: .75rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    border: 1px solid rgba(255, 184, 0, .4);
    padding: .35rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.8rem;
    display: inline-block;
    animation: fadeUp .6s .1s both;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: .95;
    color: #fff;
    animation: fadeUp .6s .2s both;
}

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

.hero-sub {
    margin-top: 1.8rem;
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 500px;
    line-height: 1.7;
    color: #ebebeb;
    animation: fadeUp .6s .35s both;
}

.hero-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp .6s .5s both;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: .85rem 2.2rem;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background .2s, transform .2s;
    display: inline-block;
}

.btn-primary:hover {
    background: #e0a200;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 184, 0, .5);
    color: var(--gold);
    padding: .85rem 2.2rem;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all .2s;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(255, 184, 0, .08);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    animation: fadeUp .6s .65s both;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: .78rem;
    color: #f1f1f1;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: .2rem;
}

/* ─── TICKER ─── */
.ticker {
    background: var(--gold);
    padding: .75rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.ticker-inner {
    display: inline-flex;
    gap: 3rem;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: .12em;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: .8rem;
}

.ticker-item::after {
    content: '◆';
    font-size: .5rem;
}

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

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

/* ─── SECTION TITLE ─── */
.section-label {
    font-size: .72rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: .8rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    line-height: 1;
}

.section-title span {
    color: var(--gold);
}

.section-sub {
    color: #f1f0f0;
    font-size: .95rem;
    line-height: 1.7;
    margin-top: .8rem;
    max-width: 480px;
}

/* ─── SERVICES SECTION ─── */
.services {
    padding: 100px 5%;
    position: relative;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5px;
    background: rgba(255, 184, 0, .08);
    border: 1px solid rgba(255, 184, 0, .08);
}

.service-card {
    background: var(--dark);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background .35s;
    cursor: default;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.service-card:hover {
    background: #111;
}

.service-card:hover::before {
    transform: scaleY(1);
}

.card-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 184, 0, .3);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background .35s, border-color .35s;
    flex-shrink: 0;
    background-color: #000;
}


.card-num {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: rgba(255, 184, 0, .06);
    line-height: 1;
    pointer-events: none;
}

.card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.55rem;
    color: #fff;
    letter-spacing: .04em;
    line-height: 1.1;
}

.card-desc {
    font-size: .88rem;
    line-height: 1.75;
    color: #666;
}

.card-tag {
    margin-top: auto;
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.card-tag::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
}

/* ─── FEATURED CARD ─── */
.service-card.featured {
    background: var(--gold);
    grid-column: span 1;
}

.service-card.featured::before {
    background: var(--black);
}

.service-card.featured:hover {
    background: #e0a200;
}

.service-card.featured .card-icon {
    border-color: rgba(0, 0, 0, .3);
}

.service-card.featured:hover .card-icon {
    background: var(--black);
    filter: none;
}

.service-card.featured .card-title {
    color: var(--black);
}

.service-card.featured .card-desc {
    color: rgba(0, 0, 0, .65);
}

.service-card.featured .card-tag {
    color: var(--black);
}

.service-card.featured .card-tag::before {
    background: var(--black);
}

.service-card.featured .card-num {
    color: rgba(0, 0, 0, .08);
}

/* ─── HOW IT WORKS ─── */
.how {
    padding: 100px 5%;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.how::before {
    content: '';
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40vw;
    height: 40vw;
    border: 1px solid rgba(255, 184, 0, .06);
    border-radius: 50%;
}

.how::after {
    content: '';
    position: absolute;
    right: 0%;
    top: 50%;
    transform: translateY(-50%);
    width: 25vw;
    height: 25vw;
    border: 1px solid rgba(255, 184, 0, .1);
    border-radius: 50%;
}

.how-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2.5rem;
}

.step {
    display: flex;
    gap: 1.8rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 184, 0, .08);
    position: relative;
}

.step:first-child {
    border-top: 1px solid rgba(255, 184, 0, .08);
}

.step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: rgba(255, 184, 0, .25);
    line-height: 1;
    min-width: 40px;
}

.step-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: .05em;
    margin-bottom: .4rem;
}

.step-content p {
    font-size: .87rem;
    color: #666;
    line-height: 1.7;
}

.how-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.big-stat {
    background: var(--mid);
    border: 1px solid rgba(255, 184, 0, .1);
    border-radius: 2px;
    padding: 2.5rem;
    text-align: center;
}

.big-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--gold);
    line-height: 1;
}

.big-stat-text {
    font-size: .85rem;
    color: #666;
    margin-top: .4rem;
}

.mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.mini-stat {
    background: var(--mid);
    border: 1px solid rgba(255, 184, 0, .1);
    border-radius: 2px;
    padding: 1.8rem;
}

.mini-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
}

.mini-stat-text {
    font-size: .78rem;
    color: #666;
    margin-top: .2rem;
}

/* ─── CTA ─── */
.cta {
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 184, 0, .07) 0%, transparent 70%);
}

.cta-inner {
    position: relative;
}

.cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    color: #fff;
    line-height: .95;
    margin: 1rem 0 2rem;
}

.cta h2 span {
    color: var(--gold);
}

.cta p {
    color: #666;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* ─── CONTACT BAR ─── */
.contact-bar {
    background: var(--gold);
    padding: 3rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item-solucoes {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon-solucoes {
    font-size: 1.4rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details small {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .5);
}

.contact-details strong {
    font-size: .95rem;
    font-weight: 700;
    color: var(--black);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s, transform .7s cubic-bezier(.16, 1, .3, 1);
}

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


.contact-bar i {
    color: #000;
    background-color: transparent;
}

.contact-bar .contact-icon:hover {
    background-color: transparent !important;
}

.email-solucoes i {
    color: #FFB800;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .how-inner {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info {
        gap: 1.5rem;
    }
}
