/* =========================================================
   LEONARDO ARANTES — SITE OFICIAL
   Premium • Cinematic • Sertanejo
   ========================================================= */

:root {
    --black: #0A0A0A;
    --black-2: #0E0E0E;
    --gray-dark: #1B1B1B;
    --gray: #2A2A2A;
    --gray-soft: #3A3A3A;
    --white-ice: #F5F5F5;
    --white: #FFFFFF;
    --gold: #C8A96B;
    --gold-light: #E0C68A;
    --gold-dark: #8E7647;

    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.45);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 18px 50px rgba(200, 169, 107, 0.25);

    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;

    --t-fast: 220ms cubic-bezier(.4, 0, .2, 1);
    --t-base: 420ms cubic-bezier(.4, 0, .2, 1);
    --t-slow: 800ms cubic-bezier(.4, 0, .2, 1);

    --container: 1240px;
}

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

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

body {
    font-family: 'Montserrat', system-ui, sans-serif;
    background: var(--black);
    color: var(--white-ice);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Subtle film grain overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: .35;
    mix-blend-mode: overlay;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

/* ============== TYPOGRAPHY ============== */
.h2, h2.h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 22px;
    color: var(--white);
}

.h3-mini {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 18px;
}

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

.kicker {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--gold);
    padding-bottom: 14px;
    position: relative;
    margin-bottom: 16px;
}
.kicker::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 38px;
    height: 2px;
    background: var(--gold);
}

.lead {
    color: rgba(245, 245, 245, .75);
    max-width: 720px;
    font-size: 1.05rem;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section__head {
    text-align: center;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section__head .kicker { margin-bottom: 18px; }
.section__head .lead { margin: 0 auto; }

/* ============== NAVBAR ============== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: all var(--t-base);
    padding: 18px 0;
}
.nav.is-scrolled {
    background: rgba(10, 10, 10, .85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(200, 169, 107, .15);
    padding: 12px 0;
}
.nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav__brand-mark {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 1px;
}
.nav__brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 4px;
    color: var(--white);
}
.nav__menu {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav__menu a {
    font-size: .85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(245, 245, 245, .8);
    position: relative;
    padding: 6px 0;
    transition: color var(--t-fast);
}
.nav__menu a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: all var(--t-fast);
    transform: translateX(-50%);
}
.nav__menu a:hover { color: var(--gold); }
.nav__menu a:hover::after { width: 100%; }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}
.nav__toggle span {
    width: 26px;
    height: 2px;
    background: var(--gold);
    transition: var(--t-fast);
}

/* ============== HERO ============== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: saturate(.9) contrast(1.05) brightness(.55);
    transform: scale(1.05);
    animation: heroZoom 18s ease-out infinite alternate;
}
@keyframes heroZoom {
    0%   { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(200, 169, 107, .12) 0%, transparent 60%),
        linear-gradient(180deg, rgba(10, 10, 10, .55) 0%, rgba(10, 10, 10, .75) 60%, rgba(10, 10, 10, .98) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 140px 28px 120px;
    width: 100%;
}
.hero__eyebrow {
    display: inline-block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--gold);
    margin-bottom: 22px;
    padding: 6px 18px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    animation: fadeUp 1s .2s both;
}
.hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 9vw, 8rem);
    line-height: .95;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 26px;
    animation: fadeUp 1s .4s both;
    text-shadow: 0 8px 40px rgba(0, 0, 0, .6);
    white-space: nowrap;
}
.hero__subtitle {
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 26px;
    animation: fadeUp 1s .6s both;
}
.hero__lead {
    max-width: 640px;
    color: rgba(245, 245, 245, .85);
    margin-bottom: 18px;
    font-size: 1rem;
    animation: fadeUp 1s .8s both;
}
.hero__lead--muted {
    color: rgba(245, 245, 245, .65);
    font-style: italic;
    border-left: 2px solid var(--gold);
    padding-left: 18px;
    animation-delay: 1s;
}
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
    animation: fadeUp 1s 1.2s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: 4px;
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
}
.btn--lg { padding: 20px 44px; font-size: .9rem; }

.btn--gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 60px rgba(200, 169, 107, .45);
}

.btn--ghost {
    background: rgba(255, 255, 255, .06);
    color: var(--white);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .15);
}
.btn--ghost:hover {
    background: rgba(255, 255, 255, .12);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn--outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn--outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.hero__scroll span {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { opacity: .3; transform: scaleY(.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============== NOW PLAYING (HERO PLAYER) ============== */
.now-playing {
    position: absolute;
    bottom: 28px;
    right: 28px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px 14px 14px;
    background: rgba(10, 10, 10, .75);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(200, 169, 107, .25);
    border-radius: 999px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .55), inset 0 0 0 1px rgba(255, 255, 255, .04);
    max-width: 420px;
    transition: transform var(--t-base), box-shadow var(--t-base);
    animation: npSlideIn 1s 1.6s both cubic-bezier(.4, 0, .2, 1);
}
.now-playing:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(200, 169, 107, .3), inset 0 0 0 1px rgba(255, 255, 255, .04);
}
@keyframes npSlideIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.now-playing__cover {
    position: relative;
    width: 56px; height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1.5px solid var(--gold);
    box-shadow: 0 6px 18px rgba(200, 169, 107, .35);
}
.now-playing__cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 22%;
}
.now-playing.is-playing .now-playing__cover {
    animation: npSpin 8s linear infinite;
}
@keyframes npSpin {
    to { transform: rotate(360deg); }
}
.now-playing__cover-disc {
    position: absolute;
    top: 50%; left: 50%;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--black);
    border: 2px solid var(--gold);
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 0 2px var(--black);
}

.now-playing__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.now-playing__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
}
.np-eq {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    height: 11px;
}
.np-eq i {
    display: block;
    width: 2px;
    background: var(--gold);
    border-radius: 1px;
    height: 100%;
    animation: npEq .9s ease-in-out infinite;
}
.np-eq i:nth-child(1) { animation-delay: -.2s; }
.np-eq i:nth-child(2) { animation-delay: -.5s; }
.np-eq i:nth-child(3) { animation-delay: -.7s; }
.np-eq i:nth-child(4) { animation-delay: -.3s; }
@keyframes npEq {
    0%, 100% { height: 30%; }
    50%      { height: 100%; }
}
.now-playing:not(.is-playing) .np-eq i { animation-play-state: paused; height: 30%; }

.now-playing__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 1.5px;
    color: var(--white);
    line-height: 1;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.now-playing__artist {
    font-size: .78rem;
    color: rgba(245, 245, 245, .65);
    letter-spacing: .5px;
}

.now-playing__btn,
.now-playing__sound {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    cursor: pointer;
    transition: all var(--t-fast);
    position: relative;
}
.now-playing__btn:hover,
.now-playing__sound:hover {
    background: var(--gold-light);
    transform: scale(1.08);
}
.now-playing__btn .np-icon {
    width: 22px; height: 22px;
}
.now-playing__sound {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(200, 169, 107, .35);
    color: var(--gold);
    width: 40px; height: 40px;
    position: relative;
}
.now-playing__sound .np-icon {
    width: 18px; height: 18px;
}
.now-playing__sound:hover {
    background: var(--gold);
    color: var(--black);
}
.now-playing__hint {
    position: absolute;
    right: 110%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    color: var(--black);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-fast);
    box-shadow: 0 6px 18px rgba(200, 169, 107, .4);
}
.now-playing__hint::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--gold);
}
.now-playing.is-muted .now-playing__hint {
    opacity: 1;
    animation: hintPulse 2s ease-in-out infinite;
}
@keyframes hintPulse {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50%      { transform: translateY(-50%) scale(1.05); }
}

/* play / pause icon swap */
.now-playing .np-icon--pause { display: none; }
.now-playing.is-playing .np-icon--play { display: none; }
.now-playing.is-playing .np-icon--pause { display: block; }

/* mute / unmute icon swap */
.now-playing .np-icon--unmuted { display: none; }
.now-playing.is-muted .np-icon--muted { display: block; }
.now-playing.is-muted .np-icon--unmuted { display: none; }
.now-playing:not(.is-muted) .np-icon--muted { display: none; }
.now-playing:not(.is-muted) .np-icon--unmuted { display: block; }
.now-playing:not(.is-muted) .now-playing__hint { display: none; }

/* Hidden YouTube iframe container */
.now-playing__yt {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

@media (max-width: 720px) {
    .now-playing {
        right: 12px;
        left: 12px;
        bottom: 80px;
        max-width: none;
        padding: 10px 12px 10px 10px;
        gap: 10px;
    }
    .now-playing__cover { width: 46px; height: 46px; }
    .now-playing__title { font-size: 1.05rem; }
    .now-playing__artist { font-size: .72rem; }
    .now-playing__btn { width: 40px; height: 40px; }
    .now-playing__btn .np-icon { width: 18px; height: 18px; }
    .now-playing__sound { width: 36px; height: 36px; }
    .now-playing__hint { display: none !important; }
}


.section--sobre {
    background: linear-gradient(180deg, var(--black) 0%, var(--gray-dark) 100%);
}
.section--bio {
    background: var(--black);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(200, 169, 107, .04) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(200, 169, 107, .03) 0%, transparent 40%);
}
.section--carreira { background: var(--gray-dark); }
.section--solo {
    position: relative;
    overflow: hidden;
}
.section--clipes { background: var(--black); }
.section--numeros { background: linear-gradient(180deg, var(--black) 0%, var(--gray-dark) 100%); }
.section--disco { background: var(--gray-dark); }
.section--plataformas { background: var(--black); }
.section--producao { background: var(--gray-dark); }
.section--galeria { background: var(--black); }
.section--contato { background: linear-gradient(180deg, var(--black) 0%, var(--gray-dark) 100%); }

/* ============== TWO COLUMN ============== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}
.two-col__media .frame {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--t-slow);
}
.two-col__media .frame:hover { transform: translateY(-8px); }
.frame--gold::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gold), transparent 50%, var(--gold));
    border-radius: var(--r-md);
    z-index: -1;
}
.frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    transition: transform var(--t-slow);
}
.frame:hover img { transform: scale(1.04); }

.two-col__text p {
    margin-bottom: 18px;
    color: rgba(245, 245, 245, .82);
}
.two-col__text .quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.35rem;
    color: var(--gold-light);
    border-left: 3px solid var(--gold);
    padding-left: 22px;
    margin: 26px 0;
    line-height: 1.5;
}

/* ============== TIMELINE / BIO ============== */
.timeline {
    position: relative;
    margin-top: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
    transform: translateX(-50%);
}
.timeline__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}
.timeline__item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 6px rgba(200, 169, 107, .15), 0 0 30px var(--gold);
    z-index: 2;
}
.timeline__item--reverse {
    direction: rtl;
}
.timeline__item--reverse > * { direction: ltr; }
.timeline__media {
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
    background: var(--gray-dark);
    transition: transform var(--t-slow);
}
.timeline__media:hover { transform: scale(1.02); }
.timeline__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    transition: transform var(--t-slow);
    filter: contrast(1.05) saturate(.95);
}
.timeline__media:hover img { transform: scale(1.06); }

/* Variante para mostrar a foto completa (sem cortes) */
.timeline__media--full {
    aspect-ratio: 4 / 5;
    background:
        radial-gradient(circle at center, rgba(200, 169, 107, .12) 0%, transparent 70%),
        linear-gradient(180deg, #1B1B1B 0%, #0A0A0A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.timeline__media--full img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .6));
}
.timeline__media--full:hover img { transform: scale(1.04); }

.timeline__content {
    padding: 30px;
}
.timeline__year {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--gold);
    background: rgba(200, 169, 107, .1);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.timeline__content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 18px;
    line-height: 1.1;
}
.timeline__content p {
    margin-bottom: 14px;
    color: rgba(245, 245, 245, .8);
}

.bio-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gold-light);
    border-left: 3px solid var(--gold);
    padding: 14px 0 14px 22px;
    margin: 22px 0;
    line-height: 1.55;
    position: relative;
}
.bio-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 14px;
    font-family: 'Bebas Neue';
    font-size: 4rem;
    color: var(--gold);
    opacity: .3;
    font-style: normal;
}

/* ============== DUPLAS / CARREIRA ============== */
.duplas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.card-dupla {
    background: linear-gradient(180deg, var(--gray) 0%, var(--gray-dark) 100%);
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid rgba(200, 169, 107, .1);
    transition: all var(--t-base);
    position: relative;
}
.card-dupla:hover {
    transform: translateY(-12px);
    border-color: rgba(200, 169, 107, .4);
    box-shadow: var(--shadow-gold);
}
.card-dupla__img {
    aspect-ratio: 16 / 11;
    overflow: hidden;
    position: relative;
}
.card-dupla__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform var(--t-slow);
    filter: brightness(.85);
}
.card-dupla:hover .card-dupla__img img {
    transform: scale(1.08);
    filter: brightness(1);
}
.card-dupla__year {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(10px);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 999px;
    font-family: 'Bebas Neue';
    letter-spacing: 2px;
    font-size: .9rem;
    border: 1px solid rgba(200, 169, 107, .3);
}
.card-dupla__body {
    padding: 28px 26px 30px;
}
.card-dupla__body h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    color: var(--white);
    letter-spacing: 1px;
    margin: 6px 0 14px;
}
.card-dupla__body p {
    color: rgba(245, 245, 245, .75);
    font-size: .92rem;
    margin-bottom: 18px;
    line-height: 1.6;
}
.card-dupla__list {
    list-style: none;
    border-top: 1px solid rgba(200, 169, 107, .15);
    padding-top: 16px;
}
.card-dupla__list li {
    font-size: .85rem;
    color: rgba(245, 245, 245, .7);
    padding: 5px 0;
    display: flex;
    gap: 8px;
}
.card-dupla__list strong {
    color: var(--gold);
    font-weight: 600;
    min-width: 92px;
    display: inline-block;
}

/* ============== SOLO ============== */
.section--solo {
    padding: 140px 0;
}
.solo__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(.4);
    transform: scale(1.1);
    z-index: 0;
}
.solo__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, .9) 0%, rgba(27, 27, 27, .85) 100%);
    z-index: 1;
}
.solo__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.solo__text p {
    color: rgba(245, 245, 245, .85);
    margin-bottom: 18px;
    font-size: 1.05rem;
}
.solo__player {
    margin-top: 36px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.solo__photo {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.solo__photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, .7) 100%);
    z-index: 1;
}
.solo__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

/* ============== VIDEOCLIPES ============== */
.clipes-row {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 20px 28px 40px;
    margin: 0 -28px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}
.clipes-row::-webkit-scrollbar { height: 6px; }
.clipes-row::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.clipe-card {
    flex: 0 0 360px;
    aspect-ratio: 16 / 10;
    border-radius: var(--r-md);
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    transition: all var(--t-base);
    box-shadow: var(--shadow-md);
}
.clipe-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-gold);
    z-index: 5;
}
.clipe-card__img {
    position: absolute;
    inset: 0;
}
.clipe-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform var(--t-slow);
}
.clipe-card:hover .clipe-card__img img { transform: scale(1.08); }
.clipe-card::after {
    content: '▶';
    position: absolute;
    top: 50%; left: 50%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(200, 169, 107, .9);
    color: var(--black);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    transform: translate(-50%, -50%) scale(0);
    transition: transform var(--t-base);
    box-shadow: var(--shadow-gold);
}
.clipe-card:hover::after { transform: translate(-50%, -50%) scale(1); }

.clipe-card__info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 60px 22px 22px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .92));
    color: var(--white);
    z-index: 2;
}
.clipe-card__info span {
    font-size: .7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}
.clipe-card__info h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 1px;
}

.clipes-cta {
    text-align: center;
    margin-top: 24px;
}

/* ============== STATS ============== */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.stat {
    text-align: center;
    padding: 50px 30px;
    border: 1px solid rgba(200, 169, 107, .15);
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .02);
    backdrop-filter: blur(10px);
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
}
.stat::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 107, .08), transparent);
    transition: left 1s;
}
.stat:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.stat:hover::before { left: 100%; }
.stat__num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--gold);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.stat__label {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(245, 245, 245, .7);
}
.stats__source {
    text-align: center;
    margin-top: 30px;
    font-size: .8rem;
    color: rgba(245, 245, 245, .5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============== DISCO TABS / GRID ============== */
.disco-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}
.disco-tab {
    padding: 11px 22px;
    border: 1px solid rgba(200, 169, 107, .25);
    border-radius: 999px;
    color: rgba(245, 245, 245, .75);
    font-size: .82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all var(--t-fast);
}
.disco-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.disco-tab.is-active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.disco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}
.disco-card {
    background: linear-gradient(180deg, var(--gray) 0%, var(--gray-dark) 100%);
    border: 1px solid rgba(200, 169, 107, .12);
    border-radius: var(--r-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--t-base);
    color: var(--white-ice);
    cursor: pointer;
}
.disco-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.disco-card__cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(200, 169, 107, .25) 0%, transparent 60%),
        linear-gradient(135deg, #2a2a2a 0%, #0e0e0e 100%);
}
.disco-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow), opacity .6s ease;
    opacity: 0;
}
.disco-card__cover img.is-loaded {
    opacity: 1;
}
.disco-card:hover .disco-card__cover img {
    transform: scale(1.06);
}
.disco-card__cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, .55) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--t-base);
}
.disco-card:hover .disco-card__cover::after { opacity: 1; }

/* Botão "Tocar no Spotify" sobre a capa */
.disco-card__cover::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    transition: transform var(--t-base);
    box-shadow: 0 12px 32px rgba(200, 169, 107, .55);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230A0A0A'><path d='M8 5v14l11-7L8 5z'/></svg>");
    background-repeat: no-repeat;
    background-position: 56% 50%;
    background-size: 26px;
}
.disco-card:hover .disco-card__cover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Placeholder elegante enquanto carrega */
.disco-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    color: rgba(200, 169, 107, .55);
    line-height: 1.05;
    z-index: 0;
    background:
        repeating-linear-gradient(45deg, rgba(200,169,107,.03) 0 2px, transparent 2px 14px);
}
.disco-card__cover img.is-loaded ~ .disco-card__placeholder { display: none; }

.disco-card__meta {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.25) 100%);
}
.disco-card__year {
    font-family: 'Bebas Neue';
    font-size: .9rem;
    color: var(--gold);
    letter-spacing: 3px;
}
.disco-card h4 {
    font-family: 'Bebas Neue';
    font-size: 1.45rem;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: 1px;
    margin: 2px 0 4px;
}
.disco-card__faixas {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(245, 245, 245, .55);
}
.disco-card.is-hidden { display: none; }

/* ============== PLATAFORMAS ============== */
.plats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    margin-bottom: 60px;
}
.plat-card {
    aspect-ratio: 1;
    background: linear-gradient(180deg, var(--gray) 0%, var(--gray-dark) 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-md);
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
    color: var(--white);
}
.plat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, var(--plat), transparent 70%);
    opacity: 0;
    transition: opacity var(--t-base);
}
.plat-card:hover {
    transform: translateY(-10px);
    border-color: var(--plat);
    box-shadow: 0 20px 60px color-mix(in srgb, var(--plat) 30%, transparent);
}
.plat-card:hover::before { opacity: .15; }
.plat-card__icon {
    width: 56px; height: 56px;
    color: var(--plat);
    z-index: 1;
}
.plat-card__icon svg { width: 100%; height: 100%; }
.plat-card h4 {
    font-family: 'Bebas Neue';
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 1.5px;
    z-index: 1;
}
.plat-card__cta {
    font-size: .75rem;
    color: rgba(245, 245, 245, .6);
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 1;
    transition: color var(--t-fast);
}
.plat-card:hover .plat-card__cta { color: var(--plat); }

.plat-cta {
    text-align: center;
    margin-bottom: 60px;
}

.links-oficiais {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(200, 169, 107, .12);
}
.links-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.link-pill {
    padding: 12px 22px;
    border: 1px solid rgba(200, 169, 107, .3);
    border-radius: 999px;
    color: rgba(245, 245, 245, .85);
    font-size: .82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--t-fast);
}
.link-pill:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* ============== PRODUÇÃO ============== */
.prod-list {
    list-style: none;
    margin-top: 30px;
}
.prod-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(200, 169, 107, .12);
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 1.1rem;
    color: rgba(245, 245, 245, .85);
    transition: all var(--t-fast);
}
.prod-list li:hover {
    color: var(--gold);
    padding-left: 14px;
}
.prod-list li span {
    font-family: 'Bebas Neue';
    color: var(--gold);
    font-size: 1.6rem;
    letter-spacing: 2px;
    min-width: 40px;
}

/* ============== GALERIA ============== */
.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.g-tab {
    padding: 10px 20px;
    border: 1px solid rgba(200, 169, 107, .25);
    border-radius: 999px;
    color: rgba(245, 245, 245, .75);
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--t-fast);
}
.g-tab:hover { border-color: var(--gold); color: var(--gold); }
.g-tab.is-active { background: var(--gold); color: var(--black); border-color: var(--gold); }

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.g-item {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--t-base);
}
.g-item:nth-child(3n) { aspect-ratio: 1; }
.g-item:nth-child(5n) { aspect-ratio: 4 / 5; }
.g-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-gold);
}
.g-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 22%;
    transition: transform var(--t-slow);
}
.g-item:hover img { transform: scale(1.1); }
.g-item figcaption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 50px 18px 18px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .9));
    color: var(--gold);
    font-size: .8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    transform: translateY(10px);
    opacity: 0;
    transition: all var(--t-base);
}
.g-item:hover figcaption { transform: translateY(0); opacity: 1; }
.g-item.is-hidden { display: none; }

/* ============== CONTATO ============== */
.contato-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    padding: 8px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(200, 169, 107, .15);
    border-radius: 999px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
}
.c-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 999px;
    background: transparent;
    color: rgba(245, 245, 245, .7);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all var(--t-fast);
    cursor: pointer;
    white-space: nowrap;
}
.c-tab svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.c-tab:hover { color: var(--gold); }
.c-tab.is-active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--black);
    box-shadow: 0 8px 24px rgba(200, 169, 107, .35);
}

/* Contexto explicativo */
.contato-context {
    margin-top: 8px;
    padding: 22px 24px;
    background: linear-gradient(180deg, rgba(200, 169, 107, .08) 0%, rgba(200, 169, 107, 0) 100%);
    border: 1px solid rgba(200, 169, 107, .18);
    border-radius: var(--r-md);
    border-left: 3px solid var(--gold);
}
.contato-context .kicker { margin-bottom: 12px; }
.contato-context__text {
    font-size: .92rem;
    color: rgba(245, 245, 245, .82);
    line-height: 1.6;
    margin: 0;
    transition: opacity var(--t-base);
}
.contato-context__text[hidden] { display: none; }


.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
}
.contato-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contato-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    background: linear-gradient(180deg, var(--gray) 0%, var(--gray-dark) 100%);
    border: 1px solid rgba(200, 169, 107, .12);
    border-radius: var(--r-md);
    transition: all var(--t-base);
    color: var(--white-ice);
}
.contato-card:hover {
    transform: translateX(8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.contato-card__icon {
    width: 52px; height: 52px;
    background: rgba(200, 169, 107, .15);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--gold);
    flex-shrink: 0;
}
.contato-card__icon svg { width: 24px; height: 24px; }
.contato-card span {
    display: block;
    font-size: .72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 245, 245, .55);
    margin-bottom: 4px;
}
.contato-card strong {
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 500;
}
.contato-disclaimer {
    font-size: .78rem;
    color: rgba(245, 245, 245, .5);
    font-style: italic;
    text-align: center;
    margin-top: 12px;
}

.contato-form {
    background: linear-gradient(180deg, var(--gray) 0%, var(--gray-dark) 100%);
    border: 1px solid rgba(200, 169, 107, .15);
    border-radius: var(--r-md);
    padding: 38px 36px;
}
.contato-form h3 {
    font-family: 'Bebas Neue';
    font-size: 2rem;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 26px;
}
.contato-form label {
    display: block;
    margin-bottom: 18px;
}
.contato-form label span {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 600;
}
.contato-form input,
.contato-form select,
.contato-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, .3);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    font-size: .95rem;
    transition: all var(--t-fast);
}
.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
    outline: 0;
    border-color: var(--gold);
    background: rgba(0, 0, 0, .5);
}
.contato-form textarea { resize: vertical; min-height: 100px; }
.contato-form button { width: 100%; margin-top: 8px; }

/* Show/hide forms based on tab — must come AFTER base .contato-form rules */
.contato-form { display: none; }
.contato-form.is-active { display: block; animation: formFadeIn .5s ease-out; }
@keyframes formFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============== FOOTER ============== */
.footer {
    background: var(--black-2);
    padding-top: 80px;
    border-top: 1px solid rgba(200, 169, 107, .15);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer__brand h4 {
    font-family: 'Bebas Neue';
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--white);
    margin: 18px 0 12px;
}
.footer__brand p {
    color: rgba(245, 245, 245, .6);
    font-size: .9rem;
    margin-bottom: 22px;
    max-width: 340px;
}
.footer__mark {
    width: 50px; height: 50px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Bebas Neue';
    color: var(--gold);
    font-size: 1.3rem;
    letter-spacing: 1px;
}
.footer__social {
    display: flex;
    gap: 12px;
}
.footer__social a {
    width: 42px; height: 42px;
    border: 1px solid rgba(200, 169, 107, .25);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: rgba(245, 245, 245, .7);
    transition: all var(--t-fast);
}
.footer__social svg { width: 18px; height: 18px; }
.footer__social a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-4px);
}
.footer__col h5 {
    font-family: 'Bebas Neue';
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}
.footer__col ul {
    list-style: none;
}
.footer__col li {
    margin-bottom: 10px;
}
.footer__col a {
    color: rgba(245, 245, 245, .65);
    font-size: .88rem;
    transition: color var(--t-fast);
}
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 24px 0;
}
.footer__bottom-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: .8rem;
    color: rgba(245, 245, 245, .5);
}
.footer__bottom-row a:hover { color: var(--gold); }

/* ============== WHATS FAB ============== */
.whats-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px; height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(37, 211, 102, .5);
    z-index: 99;
    transition: all var(--t-base);
    animation: pulse 2.4s infinite;
}
.whats-fab:hover {
    transform: scale(1.1) rotate(-5deg);
}
.whats-fab svg { width: 30px; height: 30px; }
@keyframes pulse {
    0% { box-shadow: 0 12px 30px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, .6); }
    70% { box-shadow: 0 12px 30px rgba(37, 211, 102, .5), 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 12px 30px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============== REVEAL ANIMATIONS ============== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--t-base), transform 1s var(--t-base);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
    .duplas, .plats { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .gallery { grid-template-columns: repeat(3, 1fr); }
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
    .section { padding: 90px 0; }
    .nav__menu {
        position: fixed;
        top: 70px;
        right: 0;
        background: rgba(10, 10, 10, .98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 30px 0;
        width: min(80vw, 320px);
        height: calc(100vh - 70px);
        transform: translateX(100%);
        transition: transform var(--t-base);
        border-left: 1px solid rgba(200, 169, 107, .15);
    }
    .nav__menu.is-open { transform: translateX(0); }
    .nav__menu a { padding: 16px 30px; width: 100%; }
    .nav__toggle { display: flex; }
    .nav__brand-name { font-size: 1rem; letter-spacing: 2px; }

    .hero__content { padding: 110px 22px 100px; }
    .hero__title { white-space: normal; font-size: clamp(2.6rem, 13vw, 5rem); line-height: .95; }
    .hero__cta .btn { flex: 1 1 calc(50% - 8px); }

    .two-col, .solo__grid, .contato-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .solo__photo { max-width: 360px; margin: 0 auto; }

    .timeline::before { left: 22px; }
    .timeline__item {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-left: 60px;
    }
    .timeline__item--reverse { direction: ltr; }
    .timeline__item::before { left: 22px; }
    .timeline__media { aspect-ratio: 16 / 11; max-height: 380px; }

    .duplas, .plats { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr; gap: 36px; }

    .clipe-card { flex: 0 0 280px; }

    .contato-form { padding: 28px 22px; }

    .whats-fab { bottom: 18px; right: 18px; width: 54px; height: 54px; }
}

@media (max-width: 480px) {
    .hero__title { letter-spacing: 1px; }
    .hero__cta { gap: 10px; }
    .hero__cta .btn { flex: 1 1 100%; padding: 14px 22px; }
    .disco-grid { grid-template-columns: repeat(2, 1fr); }
    .disco-card { padding: 18px 16px; }
    .disco-card h4 { font-size: 1.3rem; }
    .stat__num { font-size: 2.8rem; }
}
