/* =========================================================
   ALBANO TRADER
   IDENTIDADE: PRETO + DOURADO
========================================================= */


/* =========================
   RESET
========================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

::selection {
    background: var(--gold);
    color: var(--black);
}


/* =========================
   VARIÁVEIS
========================= */

:root {

    --black: #050505;
    --black-2: #0B0B0B;
    --black-3: #15120D;

    --white: #FFFFFF;
    --off-white: #F7F4EE;

    --gray-100: #E8E3D9;
    --gray-200: #D6D0C4;
    --gray-300: #B7B0A3;
    --gray-400: #8E887D;
    --gray-500: #5E5951;

    --gold: #D4A94F;
    --gold-light: #F1D58A;
    --gold-dark: #B98225;
    --champagne: #F7E7B2;

    --red: #B3261E;

    --font-display: "Manrope", sans-serif;
    --font-body: "Inter", sans-serif;
    --font-mono: "DM Mono", monospace;

    --container: 1240px;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: .3s ease;
}


/* =========================
   CONTAINER
========================= */

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


/* =========================
   SCROLL PROGRESS
========================= */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--gold-dark),
        var(--gold-light),
        var(--gold)
    );
    z-index: 9999;
}


/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: .3s ease;
}

.header.scrolled {
    background: rgba(5, 5, 5, .92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-color: rgba(212, 169, 79, .16);
}

.header-inner {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================
   LOGO
========================= */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.logo-symbol {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
    position: relative;
}

.logo-symbol::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(241, 213, 138, .4);
}

.logo-symbol span {
    transform: rotate(-45deg);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--gold-light);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: .16em;
}

.logo-text span {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .28em;
    color: var(--gold);
    margin-top: 5px;
}


/* =========================
   NAV
========================= */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    position: relative;
    color: var(--gray-200);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: var(--transition);
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--gold-light);
}

.desktop-nav a:hover::after {
    width: 100%;
}


/* =========================
   HEADER BUTTON
========================= */

.header-button {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 17px;
    border: 1px solid rgba(212, 169, 79, .6);
    color: var(--gold-light);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    transition: var(--transition);
}

.header-button b {
    font-size: 16px;
    font-weight: 400;
}

.header-button:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}


/* =========================
   MENU MOBILE
========================= */

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(212, 169, 79, .45);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-button span {
    width: 19px;
    height: 1px;
    background: var(--gold-light);
    transition: .3s ease;
    }

.menu-button.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
    display: none;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;
    padding-top: 140px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(212, 169, 79, .08),
            transparent 35%
        ),
        var(--black);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 90%
    );
}

.hero-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    right: -180px;
    top: 150px;
    border-radius: 50%;
    background: rgba(212, 169, 79, .08);
    filter: blur(90px);
    pointer-events: none;
}

.hero-grid {
    min-height: 700px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 70px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-light);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--gold-dark);
}

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

.eyebrow-line {
    width: 35px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    margin-top: 28px;
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 82px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 800;
}

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

.hero-description {
    max-width: 520px;
    margin-top: 30px;
    color: var(--gray-300);
    font-size: 16px;
    line-height: 1.8;
}

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


/* =========================
   BUTTONS
========================= */

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 22px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    font-weight: 500;
    transition: var(--transition);
}

.button-primary {
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );
    color: var(--black);
    border: 1px solid var(--gold-light);
}

.button-primary:hover {
    background: linear-gradient(
        135deg,
        var(--gold),
        var(--gold-dark)
    );
    box-shadow: 0 15px 40px rgba(212, 169, 79, .2);
    transform: translateY(-2px);
}

.button-secondary {
    border: 1px solid rgba(212, 169, 79, .35);
    color: var(--gray-200);
}

.button-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.button-dark {
    background: var(--black);
    color: var(--gold-light);
    border: 1px solid var(--gold);
}

.button-dark:hover {
    background: var(--gold);
    color: var(--black);
}

.button-light {
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
}

.button-light:hover {
    background: var(--gold-light);
    box-shadow: 0 15px 40px rgba(212, 169, 79, .2);
    transform: translateY(-2px);
}


/* =========================
   HERO IMAGE
========================= */

.hero-visual {
    position: relative;
    transition: transform .15s ease;
}

.hero-image-frame {
    position: relative;
    width: min(100%, 650px);
    margin-left: auto;
    overflow: hidden;
    border: 1px solid rgba(212, 169, 79, .35);
    background: var(--black-2);
}

.hero-image-frame::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(241, 213, 138, .22);
    z-index: 2;
    pointer-events: none;
}

.hero-image-frame img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: none;
    opacity: 1;
    transition: transform .7s ease;
}

.hero-image-frame:hover img {
    transform: scale(1.025);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(5,5,5,.7) 100%
        );
    pointer-events: none;
}

.hero-number {
    position: absolute;
    top: 30px;
    right: -20px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.hero-number span {
    font-family: var(--font-display);
    font-size: 55px;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}

.hero-number small {
    font-family: var(--font-mono);
    color: var(--gray-300);
    font-size: 9px;
    letter-spacing: .15em;
    padding-bottom: 5px;
}

.hero-status {
    position: absolute;
    left: -30px;
    bottom: 45px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 17px;
    background: rgba(5,5,5,.88);
    border: 1px solid rgba(212,169,79,.3);
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 14px rgba(212,169,79,.7);
}

.hero-status div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-status strong {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .12em;
    color: var(--gold-light);
}

.hero-status small {
    font-family: var(--font-mono);
    font-size: 8px;
    color: var(--gray-300);
}

.hero-side-label {
    position: absolute;
    right: -75px;
    bottom: 160px;
    transform: rotate(90deg);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .3em;
    color: var(--gold);
}


/* =========================
   HERO BOTTOM
========================= */

.hero-bottom {
    border-top: 1px solid rgba(212,169,79,.14);
    margin-top: 30px;
}

.hero-stats {
    min-height: 95px;
    display: flex;
    align-items: center;
    gap: 55px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-stat span {
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: 9px;
}

.hero-stat strong {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: .08em;
}

.hero-scroll {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gray-400);
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .13em;
}

.hero-scroll i {
    display: block;
    width: 42px;
    height: 1px;
    background: var(--gold);
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 130px 0;
}

.section-dark {
    position: relative;
    overflow: hidden;
    background: var(--black);
}


/* =========================
   SECTION HEADING
========================= */

.section-heading {
    margin-bottom: 70px;
}

.section-heading h2 {
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.section-heading h2 em {
    font-style: normal;
    color: var(--gold-dark);
}


/* =========================
   ABOUT
========================= */

.about {
    background: var(--off-white);
    color: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: none;
}

.image-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 9px 12px;
    background: rgba(5,5,5,.85);
    color: var(--gold-light);
    border-left: 2px solid var(--gold);
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .15em;
}

.about-content {
    padding-top: 5px;
}

.about-content > p {
    max-width: 650px;
    color: #635e56;
    line-height: 1.8;
    font-size: 15px;
    margin-top: 18px;
}

.about-content .large-text {
    margin-top: 0;
    color: var(--black);
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.35;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 55px;
    border-top: 1px solid #d8d1c5;
}

.value-card {
    padding: 25px 20px 10px 0;
    border-right: 1px solid #d8d1c5;
}

.value-card:not(:first-child) {
    padding-left: 20px;
}

.value-card:last-child {
    border-right: 0;
}

.value-card > span {
    color: var(--gold-dark);
    font-family: var(--font-mono);
    font-size: 10px;
}

.value-card h3 {
    margin-top: 18px;
    font-family: var(--font-display);
    font-size: 18px;
}

.value-card p {
    margin-top: 10px;
    color: #716b62;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================
   CLUB
========================= */

.club {
    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(212,169,79,.08),
            transparent 35%
        ),
        var(--black);
}

.gold-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(212,169,79,.05);
    filter: blur(80px);
    pointer-events: none;
}

.gold-orb-one {
    width: 350px;
    height: 350px;
    right: -100px;
    top: 100px;
}

.gold-orb-two {
    width: 220px;
    height: 220px;
    left: -100px;
    bottom: 0;
}

.club-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.club-brand {
    text-align: center;
}

.club-logo {
    width: min(100%, 470px);
    margin: auto;
    padding: 25px;
    position: relative;
}

.club-logo::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212,169,79,.22);
}

.club-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: .5s ease;
}
.club-logo:hover img {
    transform: scale(1.025);
}

.club-logo-label {
    margin-top: 20px;
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .25em;
}

.club-title {
    margin-top: 25px;
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 70px);
    line-height: .98;
    letter-spacing: -.055em;
}

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

.club-intro {
    max-width: 600px;
    margin-top: 28px;
    color: var(--gray-300);
    line-height: 1.8;
    font-size: 15px;
}

.club-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
    border-top: 1px solid rgba(212,169,79,.2);
}

.club-features > div {
    padding: 23px 18px 0 0;
    border-right: 1px solid rgba(212,169,79,.15);
}

.club-features > div:not(:first-child) {
    padding-left: 18px;
}

.club-features > div:last-child {
    border-right: 0;
}

.club-features span {
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: 9px;
}

.club-features strong {
    display: block;
    margin-top: 18px;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: .08em;
}

.club-features p {
    margin-top: 10px;
    color: var(--gray-400);
    font-size: 11px;
    line-height: 1.7;
}

.club-content .button {
    margin-top: 42px;
}


/* =========================
   BROKER
========================= */

.broker {
    background: var(--off-white);
    color: var(--black);
}

.broker-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    column-gap: 80px;
    align-items: end;
}

.broker-header .eyebrow {
    grid-column: 1 / -1;
}

.broker-header h2 {
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -.055em;
}

.broker-header h2 span {
    color: var(--gold-dark);
}

.broker-header p {
    color: #6f695f;
    line-height: 1.8;
    max-width: 500px;
}

.broker-layout {
    display: grid;
    grid-template-columns: .7fr 1fr .85fr;
    margin-top: 75px;
    border-top: 1px solid #d5cec2;
    border-bottom: 1px solid #d5cec2;
}

.broker-brand,
.broker-main,
.broker-offer {
    padding: 45px 35px;
}

.broker-brand {
    border-right: 1px solid #d5cec2;
}

.broker-main {
    border-right: 1px solid #d5cec2;
}

.broker-logo-box {
    min-height: 160px;
    display: grid;
    place-items: center;
}

.broker-logo-box img {
    max-width: 260px;
    max-height: 120px;
    object-fit: contain;
}

.broker-brand-label {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #d5cec2;
    color: var(--gold-dark);
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .18em;
}

.broker-number {
    color: var(--gold-dark);
    font-family: var(--font-mono);
    font-size: 10px;
}

.broker-main h3 {
    margin-top: 22px;
    font-family: var(--font-display);
    font-size: 28px;
}

.broker-main p {
    margin-top: 18px;
    color: #6f695f;
    font-size: 13px;
    line-height: 1.8;
}

.broker-main .button {
    margin-top: 28px;
}

.broker-offer {
    background: #ebe5da;
    position: relative;
}

.offer-top {
    display: flex;
    justify-content: space-between;
    color: var(--gold-dark);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .12em;
}

.broker-offer h3 {
    margin-top: 45px;
    font-family: var(--font-display);
    font-size: 25px;
    line-height: 1.25;
}

.broker-offer p {
    margin-top: 17px;
    color: #716b62;
    font-size: 12px;
    line-height: 1.7;
}

.offer-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    color: var(--gold-dark);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .1em;
    border-bottom: 1px solid var(--gold-dark);
    padding-bottom: 7px;
}

.offer-link:hover {
    color: var(--black);
}

.risk-warning {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
    padding: 18px;
    background: rgba(179,38,30,.05);
    border-left: 2px solid var(--red);
}

.risk-icon {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border: 1px solid var(--red);
    border-radius: 50%;
    color: var(--red);
    font-family: var(--font-mono);
    font-size: 11px;
}

.risk-warning p {
    color: #777067;
    font-size: 11px;
    line-height: 1.7;
}

.risk-warning strong {
    color: var(--red);
}


/* =========================
   CONTATO
========================= */

.contact {
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(212,169,79,.06),
            transparent 35%
        ),
        var(--black);
}

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

.contact .section-heading {
    margin-bottom: 0;
}

.contact .section-heading h2 {
    margin-top: 20px;
}

.contact .section-heading h2 span {
    color: var(--gold-light);
}

.contact-content > p {
    max-width: 450px;
    color: var(--gray-300);
    font-size: 15px;
    line-height: 1.8;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: clamp(17px, 2vw, 25px);
    font-weight: 600;
    border-bottom: 1px solid rgba(212,169,79,.35);
    padding-bottom: 12px;
}

.contact-email:hover {
    color: white;
    border-color: var(--gold);
}

.contact-telegram {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 55px;
    padding: 20px 0;
    border-top: 1px solid rgba(212,169,79,.2);
    border-bottom: 1px solid rgba(212,169,79,.2);
}

.contact-telegram span {
    color: var(--gray-400);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .15em;
}

.contact-telegram b {
    color: var(--gold-light);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .08em;
}

.contact-telegram:hover b {
    color: white;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #030303;
    border-top: 1px solid rgba(212,169,79,.15);
}

.footer-inner {
    min-height: 110px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.footer p {
    color: var(--gray-500);
    font-family: var(--font-mono);
    font-size: 8px;
    text-align: center;
}

.footer-inner > a:last-child {
    justify-self: end;
    color: var(--gray-400);
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .1em;
}

.footer-inner > a:last-child:hover {
    color: var(--gold);
}


/* =========================
   REVEAL ANIMATION
========================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

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


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

@media (max-width: 1100px) {

    .desktop-nav {
        gap: 20px;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero-side-label {
        display: none;
    }

    .club-grid {
        gap: 55px;
    }

    .about-grid {
        gap: 50px;
    }

}


/* =========================
   TABLET
========================= */

@media (max-width: 980px) {

    .container {
        width: min(calc(100% - 36px), var(--container));
    }

    .desktop-nav,
    .header-button {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .mobile-nav {
        display: flex;
        position: fixed;
        top: 82px;
        left: 0;
        width: 100%;
        height: calc(100vh - 82px);
        padding: 30px 25px;
        flex-direction: column;
        gap: 5px;
        background: rgba(5,5,5,.98);
        backdrop-filter: blur(20px);
        transform: translateX(100%);
        transition: transform .35s ease;
        border-top: 1px solid rgba(212,169,79,.15);
    }

    .mobile-nav.active {
        transform: translateX(0);
    }

    .mobile-nav > a:not(.mobile-cta) {
        padding: 18px 5px;
        border-bottom: 1px solid rgba(212,169,79,.12);
        color: var(--gray-200);
        font-family: var(--font-display);
        font-size: 22px;
    }

    .mobile-nav > a:not(.mobile-cta):hover {
        color: var(--gold-light);
    }

    .mobile-cta {
        margin-top: 25px;
        padding: 18px;
        background: var(--gold);
        color: var(--black);
        text-align: center;
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: .08em;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-visual {
        max-width: 650px;
        width: 100%;
        margin: 10px auto 0;
    }

    .hero-status {
        left: 15px;
    }

    .hero-number {
        right: 15px;
    }

    .about-grid,
    .club-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 650px;
    }

    .club-brand {
        max-width: 500px;
        margin: auto;
    }

    .broker-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .broker-layout {
        grid-template-columns: 1fr;
    }

    .broker-brand,
    .broker-main {
        border-right: 0;
        border-bottom: 1px solid #d5cec2;
    }

    .broker-brand,
    .broker-main,
    .broker-offer {
        padding: 35px 25px;
    }

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

}


/* =========================
   CELULAR
========================= */

@media (max-width: 640px) {

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-inner {
        height: 72px;
    }

    .mobile-nav {
        top: 72px;
        height: calc(100vh - 72px);
    }

    .logo-symbol {
        width: 34px;
        height: 34px;
    }

    .logo-text strong {
        font-size: 13px;
    }

    .hero {
        padding-top: 105px;
    }

    .hero-grid {
        gap: 50px;
            }

    .hero h1 {
        font-size: clamp(43px, 13vw, 61px);
        letter-spacing: -.065em;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.75;
    }

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

    .button {
        width: 100%;
        min-height: 54px;
    }

    .hero-image-frame::before {
        inset: 8px;
    }

    .hero-number {
        top: 15px;
        right: 10px;
    }

    .hero-number span {
        font-size: 40px;
    }

    .hero-status {
        left: 8px;
        bottom: 18px;
        padding: 10px 12px;
    }

    .hero-bottom {
        margin-top: 45px;
    }

    .hero-stats {
        min-height: auto;
        padding: 25px 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px 15px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-stat strong {
        font-size: 9px;
    }

    .section {
        padding: 85px 0;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .about-content .large-text {
        font-size: 23px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .value-card,
    .value-card:not(:first-child) {
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid #d8d1c5;
    }

    .value-card:last-child {
        border-bottom: 0;
    }

    .club {
        padding: 90px 0;
    }

    .club-logo {
        padding: 12px;
    }

    .club-title {
        font-size: 45px;
    }

    .club-intro {
        font-size: 14px;
    }

    .club-features {
        grid-template-columns: 1fr;
    }

    .club-features > div,
    .club-features > div:not(:first-child) {
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(212,169,79,.15);
    }

    .club-features > div:last-child {
        border-bottom: 0;
    }

    .broker-header h2 {
        font-size: 44px;
    }

    .broker-layout {
        margin-top: 50px;
    }

    .broker-brand,
    .broker-main,
    .broker-offer {
        padding: 30px 20px;
    }

    .broker-logo-box {
        min-height: 120px;
    }

    .broker-offer h3 {
        margin-top: 30px;
        font-size: 23px;
    }

    .risk-warning {
        padding: 15px;
    }

    .contact-grid {
        gap: 45px;
    }

    .contact-email {
        font-size: 17px;
        word-break: break-word;
    }

    .contact-telegram {
        gap: 20px;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-inner {
        padding: 30px 0;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 20px;
    }

    .footer-inner > a:last-child {
        justify-self: center;
    }

}


/* =========================
   CELULARES MUITO PEQUENOS
========================= */

@media (max-width: 380px) {

    .container {
        width: min(calc(100% - 22px), var(--container));
    }

    .hero h1 {
        font-size: 40px;
    }

    .section-heading h2 {
        font-size: 37px;
    }

    .club-title {
        font-size: 39px;
    }

    .logo-text {
        display: none;
    }

}


/* =========================
   REDUÇÃO DE MOVIMENTO
========================= */

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

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

}

/* =========================================================
   DESTAQUE HANTEC — HERO
   A parceria passa a ser a primeira mensagem do site.
========================================================= */
.hero-hantec {
    position: relative;
    isolation: isolate;
}

.hero-glow-hantec {
    width: 520px;
    height: 520px;
    right: -180px;
    left: auto;
    top: 8%;
    opacity: .18;
    background: radial-gradient(circle, rgba(212,169,79,.45) 0%, rgba(212,169,79,.08) 35%, transparent 70%);
}

.hero-partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 9px 13px;
    border: 1px solid rgba(212,169,79,.45);
    background: rgba(212,169,79,.07);
    color: var(--gold-light);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .12em;
    line-height: 1;
}

.partnership-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 14px rgba(212,169,79,.75);
}

.partnership-divider {
    width: 24px;
    height: 1px;
    background: rgba(247,231,178,.4);
}

.hero-hantec .hero-content h1 {
    max-width: 850px;
}

.hero-hantec .hero-content h1 span {
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-hantec-button {
    min-width: 285px;
    box-shadow: 0 14px 40px rgba(212,169,79,.16);
}

.hero-trust-line {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 25px;
    color: var(--gray-400);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .13em;
}

.hero-trust-line i {
    display: block;
    width: 42px;
    height: 1px;
    background: rgba(212,169,79,.45);
}

.hero-trust-line strong {
    color: var(--white);
    font-weight: 500;
}

.hero-hantec-card {
    position: absolute;
    z-index: 4;
    left: -70px;
    bottom: 28px;
    width: 285px;
    padding: 21px;
    background: rgba(7,7,7,.94);
    border: 1px solid rgba(212,169,79,.42);
    box-shadow: 0 22px 70px rgba(0,0,0,.48);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-hantec-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gold-light);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .15em;
}

.hero-hantec-card-top span:last-child {
    color: var(--gray-400);
}

.hero-hantec-logo {
    height: 58px;
    margin: 14px 0 13px;
    display: flex;
    align-items: center;
}

.hero-hantec-logo img {
    max-width: 175px;
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.hero-hantec-card p {
    color: var(--gray-300);
    font-size: 11px;
    line-height: 1.65;
    margin-bottom: 17px;
}

.hero-hantec-card > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 13px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .13em;
    transition: var(--transition);
}

.hero-hantec-card > a span {
    color: var(--gold);
    font-size: 14px;
}

.hero-hantec-card > a:hover {
    color: var(--gold-light);
}

.hero-hantec .hero-number {
    right: -25px;
}

.hero-hantec .hero-status {
    right: -42px;
}

@media (max-width: 1050px) {
    .hero-hantec-card {
        left: -25px;
        bottom: 18px;
    }

    .hero-hantec .hero-status {
        right: -15px;
    }
}

@media (max-width: 820px) {
    .hero-partnership-badge {
        margin-bottom: 17px;
        font-size: 8px;
        gap: 7px;
    }

    .hero-hantec-card {
        position: relative;
        left: auto;
        bottom: auto;
        width: min(100%, 320px);
        margin: -42px auto 0;
    }

    .hero-hantec .hero-number,
    .hero-hantec .hero-status,
    .hero-hantec .hero-side-label {
        display: none;
    }

    .hero-trust-line {
        flex-wrap: wrap;
        margin-bottom: 12px;
    }
}

@media (max-width: 560px) {
    .hero-partnership-badge {
        max-width: 100%;
        flex-wrap: wrap;
        line-height: 1.4;
    }

    .hero-hantec-button {
        min-width: 0;
    }

    .hero-trust-line {
        font-size: 8px;
        gap: 8px;
    }

    .hero-hantec-card {
        padding: 17px;
        margin-top: -30px;
    }

    .hero-hantec-logo {
        height: 48px;
    }
}


/* =========================================================
   ALBANO TRADER — MARKET TERMINAL
   Substitui a foto do hero sem alterar a estrutura desktop.
========================================================= */

.market-terminal {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    min-height: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 25%, rgba(212,169,79,.10), transparent 32%),
        linear-gradient(145deg, #090909 0%, #050505 65%, #0b0b0b 100%);
    color: var(--white);
}

.market-terminal::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.market-terminal::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: 80px;
    border-radius: 50%;
    background: rgba(212,169,79,.08);
    filter: blur(55px);
    pointer-events: none;
    animation: terminalGlow 7s ease-in-out infinite alternate;
}

@keyframes terminalGlow {
    from { transform: translate3d(0,0,0) scale(.9); opacity: .45; }
    to { transform: translate3d(-35px,25px,0) scale(1.15); opacity: .9; }
}

.market-terminal-top {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 26px 27px 12px;
}

.market-symbol {
    display: flex;
    align-items: center;
    gap: 10px;
}

.market-live-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 14px rgba(212,169,79,.8);
    animation: marketPulse 1.7s ease-in-out infinite;
}

@keyframes marketPulse {
    0%,100% { transform: scale(1); opacity: .7; }
    50% { transform: scale(1.35); opacity: 1; }
}

.market-symbol div,
.market-price {
    display: flex;
    flex-direction: column;
}

.market-symbol strong {
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: .04em;
    line-height: 1;
}

.market-symbol small,
.market-price span,
.market-stats small,
.market-mode {
    font-family: var(--font-mono);
    font-size: 7px;
    letter-spacing: .13em;
}

.market-symbol small {
    margin-top: 7px;
    color: var(--gray-400);
}

.market-price {
    align-items: flex-end;
    text-align: right;
}

.market-price strong {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 25px);
    letter-spacing: -.03em;
}

.market-price span {
    margin-top: 7px;
    color: var(--gold-light);
}

.market-chart-wrap {
    position: relative;
    z-index: 2;
    height: calc(100% - 180px);
    min-height: 300px;
    margin: 0 16px;
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
}

#marketChart {
    display: block;
    width: 100%;
    height: 100%;
    cursor: crosshair;
}

.market-axis {
    position: absolute;
    z-index: 4;
    top: 12px;
    right: 9px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    color: rgba(255,255,255,.35);
    font-family: var(--font-mono);
    font-size: 7px;
}

.market-crosshair {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity .15s ease;
}

.market-crosshair.active {
    opacity: 1;
}

.crosshair-x {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(241,213,138,.35);
}

.crosshair-y {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(241,213,138,.35);
}

.market-tooltip {
    position: absolute;
    min-width: 92px;
    padding: 8px 10px;
    background: rgba(5,5,5,.94);
    border: 1px solid rgba(212,169,79,.4);
    backdrop-filter: blur(10px);
    transform: translate(10px,-100%);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.market-tooltip strong {
    font-family: var(--font-display);
    font-size: 10px;
}

.market-tooltip small {
    font-family: var(--font-mono);
    font-size: 6px;
    letter-spacing: .12em;
    color: var(--gray-400);
}

.market-controls {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 27px 10px;
}

.market-periods {
    display: flex;
    gap: 5px;
}

.market-period {
    min-width: 35px;
    min-height: 28px;
    padding: 0 8px;
    border: 1px solid rgba(255,255,255,.08);
    background: transparent;
    color: var(--gray-400);
    font-family: var(--font-mono);
    font-size: 7px;
    letter-spacing: .1em;
    cursor: pointer;
    transition: .25s ease;
}

.market-period:hover,
.market-period.active {
    border-color: rgba(212,169,79,.55);
    color: var(--gold-light);
    background: rgba(212,169,79,.08);
}

.market-mode {
    color: var(--gray-400);
    white-space: nowrap;
}

.market-mode i {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 9px rgba(212,169,79,.7);
}

.market-stats {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0 27px;
}

.market-stats > div {
    min-width: 0;
    padding-right: 8px;
    border-right: 1px solid rgba(255,255,255,.07);
}

.market-stats > div:last-child {
    border-right: 0;
}

.market-stats small {
    display: block;
    color: var(--gray-500);
    margin-bottom: 5px;
}

.market-stats strong {
    display: block;
    overflow: hidden;
    color: var(--gray-200);
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.market-watermark {
    position: absolute;
    z-index: 4;
    right: 24px;
    bottom: 12px;
    color: rgba(255,255,255,.17);
    font-family: var(--font-mono);
    font-size: 6px;
    letter-spacing: .18em;
}

@media (max-width: 1050px) {
    .market-terminal-top {
        padding-left: 21px;
        padding-right: 21px;
    }

    .market-controls,
    .market-stats {
        padding-left: 21px;
        padding-right: 21px;
    }
}

@media (max-width: 820px) {
    .market-terminal {
        aspect-ratio: 16 / 11;
    }

    .market-chart-wrap {
        height: calc(100% - 150px);
        min-height: 240px;
    }

    .market-terminal-top {
        padding-top: 21px;
    }

    .market-stats {
        padding-bottom: 12px;
    }
}

@media (max-width: 560px) {
    .market-terminal {
        aspect-ratio: 4 / 3;
    }

    .market-terminal-top {
        padding: 18px 17px 9px;
    }

    .market-symbol strong {
        font-size: 14px;
    }

    .market-price strong {
        font-size: 17px;
    }

    .market-chart-wrap {
        margin: 0 10px;
        height: calc(100% - 142px);
        min-height: 205px;
    }

    .market-controls {
        padding: 9px 17px 8px;
    }

    .market-period {
        min-width: 31px;
        min-height: 26px;
        padding-inline: 6px;
    }

    .market-mode {
        display: none;
    }

    .market-stats {
        gap: 6px;
        padding: 0 17px 9px;
    }

    .market-stats strong {
        font-size: 7px;
    }

    .market-watermark {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .market-terminal::after,
    .market-live-dot {
        animation: none;
    }
}