    :root {
        --black: #0C0C0D;
        --white: #ECE9E9;
        --gray: #A4A1A0;
        --brown: #523D2D;
        --gold: #A67244;
    }

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

    html {
        scroll-behavior: smooth
    }

    body {
        background: var(--black);
        color: var(--white);
        font-family: 'Barlow', sans-serif;
        overflow-x: hidden;
        cursor: crosshair;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar {
        width: 3px
    }

    ::-webkit-scrollbar-track {
        background: var(--black)
    }

    ::-webkit-scrollbar-thumb {
        background: var(--gold)
    }

    /* ── NOISE OVERLAY ── */
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 9999;
        opacity: .35;
    }

    /* ── HERO ── */
    #hero {
        position: relative;
        height: 100dvh;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
    }

    #hero-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.45) saturate(.7);
    }

    #hero-preview-video,
    #hero-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.45) saturate(.7);
        opacity: 0;
        transition: opacity 0.8s ease;
    }

    #hero-img,
    #hero-preview-video,
    #hero-video {
        transition: opacity 0.8s ease;
    }

    .hero-gradient {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, var(--black) 0%, transparent 50%, transparent 80%, var(--black) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        padding: 0 2vw;
        width: 100%;
    }

    .hero-logo {
        width: min(300px, 55vw);
        margin-bottom: 0.5rem;
        filter: drop-shadow(0 0 30px rgba(166, 114, 68, .4));
    }

    .hero-title {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(5rem, 15vw, 14rem);
        line-height: .9;
        letter-spacing: .02em;
        color: var(--white);
        text-shadow: 3px 3px 0 var(--brown);
    }

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

    .hero-sub {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        letter-spacing: .4em;
        color: var(--gray);
        text-transform: uppercase;
        margin-top: .5rem;
        margin-left: 1rem;
    }

    .hero-scroll {
        position: absolute;
        bottom: 2.4rem;
        right: 6vw;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .75rem;
        letter-spacing: .3em;
        color: var(--gold);
        text-transform: uppercase;
        writing-mode: vertical-rl;
        animation: pulse 2s ease-in-out infinite;
    }

    #hero-loading {
        position: absolute;
        top: 1.5rem;
        right: 6vw;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .75rem;
        letter-spacing: .3em;
        color: var(--gold);
        text-transform: uppercase;
        animation: pulse 4s ease-in-out infinite;
        z-index: 3;
        transition: opacity 0.6s ease;
        /* animação de 5s para desparecer */

    }

    @keyframes pulse {

        0%,
        100% {
            opacity: .4
        }

        50% {
            opacity: 1
        }
    }


    /* ── MARQUEE ── */
    .marquee-wrap {
        overflow: hidden;
        border-top: 1px solid rgba(166, 114, 68, .3);
        border-bottom: 1px solid rgba(166, 114, 68, .3);
        padding: 14px 0;
        background: rgba(166, 114, 68, .06);
    }

    .marquee-track {
        display: flex;
        gap: 0;
        animation: marquee 20s linear infinite;
        white-space: nowrap;
        width: max-content;
    }

    .marquee-track.reverse {
        animation-direction: reverse;
        animation-duration: 25s
    }

    .marquee-item {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.1rem;
        letter-spacing: .15em;
        color: var(--gold);
        padding: 0 2.5rem;
        text-transform: uppercase;
    }

    .marquee-item.dim {
        color: var(--gray);
        opacity: .5
    }

    @keyframes marquee {
        from {
            transform: translateX(0)
        }

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

    /* ── ABOUT ── */
    #about {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 90vh;
        gap: 0;
    }

    .about-visual {
        position: relative;
        overflow: hidden;
    }

    .about-visual video {
        width: 100%;
        height: 100%;
        min-height: max-content;
        object-fit: cover;
        filter: brightness(.6) saturate(.6);
    }

    .about-visual::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, transparent 70%, var(--black) 100%);
    }

    .about-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 8vh 7vw;
    }

    .section-tag {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .75rem;
        letter-spacing: .5em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 2rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .section-tag::before {
        content: '';
        display: inline-block;
        width: 40px;
        height: 1px;
        background: var(--gold);
    }

    .about-heading {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(3rem, 6vw, 5rem);
        line-height: 1;
        letter-spacing: .03em;
        margin-bottom: 2rem;
    }

    .about-body {
        font-size: 1rem;
        line-height: 1.8;
        color: var(--gray);
        max-width: 460px;
        font-weight: 300;
    }

    .about-body strong {
        color: var(--white);
        font-weight: 600
    }

    .stats-row {
        display: flex;
        gap: 3rem;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(236, 233, 233, .1);
    }

    .stat-item {}

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

    .stat-label {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .8rem;
        letter-spacing: .2em;
        color: var(--gray);
        text-transform: uppercase;
        margin-top: .25rem;
    }

    /* ── GALLERY ── */
    #gallery {
        padding: 10vh 5vw;
    }

    .gallery-header {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        margin-bottom: 4rem;
    }

    .gallery-heading {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(3rem, 8vw, 7rem);
        line-height: 1;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
        gap: 6px;
    }

    .gallery-item {
        overflow: hidden;
        position: relative;
        aspect-ratio: 3/4;
    }

    .gallery-card {
        position: relative;
        width: 100%;
        height: 100%;
        border: 0;
        padding: 0;
        background: transparent;
        display: block;
        color: inherit;
        cursor: pointer;
    }

    .gallery-item:first-child {
        grid-row: span 2;
        aspect-ratio: auto;
    }

    .gallery-item img,
    .gallery-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s cubic-bezier(.25, .46, .45, .94), filter .4s;
        filter: saturate(.5) brightness(.8);
        display: block;
    }

    .gallery-item:hover img,
    .gallery-item:hover video {
        transform: scale(1.06);
        filter: saturate(1) brightness(1);
    }

    .gallery-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(12, 12, 13, .7) 0%, transparent 50%);
        opacity: 0;
        transition: opacity .4s;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1
    }

    .gallery-badge,
    .gallery-play {
        position: absolute;
        z-index: 2;
        pointer-events: none;
    }

    .gallery-badge {
        top: 1rem;
        left: 1rem;
        padding: .35rem .75rem;
        border: 1px solid rgba(236, 233, 233, .18);
        border-radius: 999px;
        background: rgba(12, 12, 13, .66);
        backdrop-filter: blur(10px);
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .72rem;
        letter-spacing: .28em;
        text-transform: uppercase;
        color: var(--gold);
    }

    .gallery-play {
        right: 1rem;
        bottom: 1rem;
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: rgba(166, 114, 68, .9);
        color: var(--white);
        box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
        transition: transform .35s ease, background .35s ease;
    }

    .gallery-play svg {
        width: 1.35rem;
        height: 1.35rem;
        margin-left: .15rem;
    }

    .gallery-item:hover .gallery-play {
        transform: scale(1.08);
        background: var(--gold);
    }

    .gallery-mute-toggle {
        position: absolute;
        left: 2vw;
        bottom: 2vw;
        z-index: 3;
        border: 1px solid rgba(236, 233, 233, .16);
        border-radius: 999px;
        background: rgba(12, 12, 13, .74);
        color: var(--white);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
        padding: .45rem .8rem;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .78rem;
        letter-spacing: .14em;
        text-transform: uppercase;
        cursor: pointer;
        transition: transform .25s ease, border-color .25s ease, background .25s ease;
    }

    .gallery-mute-toggle:hover {
        transform: translateY(-2px);
        border-color: rgba(166, 114, 68, .55);
        background: rgba(31, 24, 20, .9);
    }

    .gallery-mute-toggle.is-active {
        background: rgba(166, 114, 68, .92);
        border-color: rgba(255, 214, 173, .4);
        color: var(--white);
    }

    .gallery-lightbox {
        position: fixed;
        inset: 0;
        z-index: 1200;
        opacity: 0;
        pointer-events: none;
        transition: opacity .35s ease;
    }

    .gallery-lightbox.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .gallery-lightbox-backdrop {
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at top, rgba(166, 114, 68, .16), transparent 36%),
            rgba(8, 8, 9, .92);
        backdrop-filter: blur(12px);
    }

    .gallery-lightbox-shell {
        position: relative;
        z-index: 1;
        width: min(92vw, 1480px);
        height: min(88vh, 960px);
        margin: 6vh auto;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 1.5rem;
    }

    .gallery-lightbox-stage {
        position: relative;
        height: 100%;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        border-radius: 28px;
        overflow: hidden;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01)),
            rgba(18, 18, 20, .92);
        border: 1px solid rgba(236, 233, 233, .08);
        box-shadow: 0 35px 80px rgba(0, 0, 0, .45);
        cursor: grab;
        user-select: none;
        touch-action: none;
    }

    .gallery-lightbox-stage.is-dragging {
        cursor: grabbing;
    }

    .gallery-lightbox-media {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        transform: translateX(0);
        transition: transform .28s ease, opacity .28s ease;
        background: transparent;
    }

    .gallery-lightbox-close,
    .gallery-lightbox-arrow {
        border: 1px solid rgba(236, 233, 233, .12);
        background: rgba(16, 16, 18, .74);
        color: var(--white);
        backdrop-filter: blur(10px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
        cursor: pointer;
        transition: transform .25s ease, border-color .25s ease, background .25s ease;
    }

    .gallery-lightbox-close:hover,
    .gallery-lightbox-arrow:hover {
        transform: translateY(-2px);
        border-color: rgba(166, 114, 68, .55);
        background: rgba(31, 24, 20, .9);
    }

    .gallery-lightbox-close {
        position: absolute;
        top: 1rem;
        right: 1.15rem;
        z-index: 3;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        font-size: 2rem;
        line-height: 1;
        display: grid;
        place-items: center;
        padding: 0;
    }

    .gallery-lightbox-arrow {
        width: 4rem;
        height: 4rem;
        border-radius: 999px;
        display: grid;
        place-items: center;
    }

    .gallery-lightbox-arrow svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        display: grid;
    }

    .gallery-lightbox-mobile-nav {
        display: none;
    }

    .gallery-lightbox-mobile-btn {
        border: 1px solid rgba(236, 233, 233, .12);
        background: rgba(16, 16, 18, .78);
        color: var(--white);
        backdrop-filter: blur(10px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
        border-radius: 999px;
        height: 3.25rem;
        padding: 0 1.2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .55rem;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .86rem;
        letter-spacing: .16em;
        text-transform: uppercase;
    }

    .gallery-lightbox-mobile-btn svg {
        width: 1.1rem;
        height: 1.1rem;
    }

    /* ── VIDEO SECTION ── */
    #videobg {
        position: relative;
        height: 70vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #videobg video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.35) saturate(.5);
    }

    .videobg-gradient {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, var(--black), transparent 30%, transparent 70%, var(--black));
    }

    .videobg-content {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .videobg-quote {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(2rem, 7vw, 6rem);
        line-height: 1.1;
        max-width: 800px;
        color: var(--white);
    }

    .videobg-quote em {
        color: var(--gold);
        font-style: normal;
    }

    /* ── SPOTIFY ── */
    #music {
        padding: 10vh 6vw;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6vw;
        align-items: center;
    }

    .music-text .section-tag {
        margin-bottom: 1.5rem
    }

    .music-heading {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(3rem, 5vw, 4.5rem);
        line-height: 1;
        margin-bottom: 1.5rem;
    }

    .music-sub {
        color: var(--gray);
        font-size: 1rem;
        line-height: 1.7;
        font-weight: 300;
    }

    .spotify-wrap iframe {
        border-radius: 16px !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
    }

    /* ── CONTACT / LINKTREE ── */
    #contact {
        padding: 10vh 6vw;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .contact-bg {
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center, rgba(82, 61, 45, .25) 0%, transparent 70%);
        pointer-events: none;
    }

    .contact-heading {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(4rem, 10vw, 9rem);
        line-height: .9;
        position: relative;
        z-index: 1;
    }

    .contact-heading span {
        color: var(--gold);
        display: block;
    }

    .links-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 520px;
        margin: 3rem auto 0;
        position: relative;
        z-index: 1;
    }

    .link-btn {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        padding: 1.2rem 2rem;
        background: rgba(236, 233, 233, .04);
        border: 1px solid rgba(236, 233, 233, .1);
        color: var(--white);
        text-decoration: none;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.1rem;
        letter-spacing: .15em;
        text-transform: uppercase;
        transition: all .3s;
        position: relative;
        overflow: hidden;
    }

    .link-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s cubic-bezier(.25, .46, .45, .94);
        z-index: 0;
    }

    .link-btn:hover::before {
        transform: scaleX(1)
    }

    .link-btn:hover {
        color: var(--black);
        border-color: var(--gold)
    }

    .link-btn svg,
    .link-btn span {
        position: relative;
        z-index: 1
    }

    .link-btn .lbl {
        flex: 1;
        text-align: left
    }

    /* ── FOOTER ── */
    footer {
        padding: 4vh 6vw;
        border-top: 1px solid rgba(236, 233, 233, .08);
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-logo {
        width: 120px;
        opacity: .5
    }

    .footer-text {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .8rem;
        letter-spacing: .15em;
        color: var(--gray);
        text-transform: uppercase;
    }

    .footer-text a {
        color: var(--gold);
        text-decoration: none
    }

    /* ── MOBILE ── */
    @media(max-width:768px) {
        #about {
            grid-template-columns: 1fr
        }

        .about-visual {
            height: 75vh
        }

        .about-visual::after {
            background: linear-gradient(to bottom, transparent 70%, var(--black) 100%)
        }

        .about-text {
            margin-top: -500px;
        }

        #music {
            grid-template-columns: 1fr
        }

        footer {
            flex-direction: column;
            text-align: center
        }

        .gallery-card {
            cursor: default;
        }

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

        .gallery-item:first-child {
            grid-row: span 1
        }

        .gallery-play {
            width: 3rem;
            height: 3rem;
        }

        .gallery-grid .gallery-mute-toggle {
            display: none;
        }

        .gallery-lightbox-stage .gallery-mute-toggle {
            left: 40vw;
            bottom: 20vw;
            padding: .4rem .7rem;
            font-size: .72rem;
        }

        .gallery-lightbox-shell {
            width: 100vw;
            height: 100dvh;
            margin: 0;
            display: block;
        }

        .gallery-lightbox-stage {
            height: 100dvh;
            border-radius: 0;
            border: 0;
            box-shadow: none;
            padding-bottom: 6.5rem;
        }

        .gallery-lightbox-close {
            top: max(1rem, env(safe-area-inset-top));
            right: max(1rem, env(safe-area-inset-right));
            width: 3.4rem;
            height: 3.4rem;
            background: rgba(12, 12, 13, .82);
            font-size: 2.1rem;
        }

        .gallery-lightbox-mobile-nav {
            position: absolute;
            left: 0;
            right: 0;
            bottom: max(1rem, env(safe-area-inset-bottom));
            z-index: 4;
            display: flex;
            justify-content: center;
            gap: .75rem;
            padding: 0 1rem;
        }

        .stats-row {
            gap: 2rem
        }

        #hero-preview-video,
        #hero-video {
            object-position: 70% center
        }
    }

    @media(max-width:1023px) {
        .gallery-lightbox-prev,
        .gallery-lightbox-next {
            display: none;
        }
    }

    /* ── FADE IN ── */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity .8s cubic-bezier(.25, .46, .45, .94), transform .8s cubic-bezier(.25, .46, .45, .94);
    }

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

    /* Sticky Spotify wrapper */
    #spotify-hero-wrapper {
        transition: none;
    }

    #spotify-hero-wrapper.sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: rgba(10, 10, 10, 0);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 8px 8px;
    }

    /* ── Back to Top Button ── */
    #backToTop {
        position: fixed;
        bottom: 1.5rem;
        right: 1.5rem;
        width: 2.75rem;
        height: 2.75rem;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--bg-soft);
        color: var(--text);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 50;
        transform: scale(0);
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, border-color 0.2s ease;
    }

    #backToTop.visible {
        transform: scale(0.7);
    }

    #backToTop:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
        border-color: var(--accent);
    }

    #backToTop>svg:first-child {
        width: 1.1rem;
        height: 1.1rem;
        flex-shrink: 0;
    }

    .back-to-top-progress {
        position: absolute;
        inset: -4px;
        width: calc(100% + 8px);
        height: calc(100% + 8px);
        transform: rotate(-90deg);
        pointer-events: none;
    }

    .back-to-top-progress rect {
        stroke: #A67244;
    }

    /* /Back to Top Button */

    /* ── WHATSAPP SECTION ── */
    .whatsapp-block {
        padding: 10vh 6vw;
        position: relative;
        overflow: hidden;
    }

    .whatsapp-block::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 70% 50%, rgba(37, 211, 102, 0.04) 0%, transparent 65%);
        pointer-events: none;
    }

    .desktop-whatsapp {
        max-width: 1100px;
        margin: 0 auto;
    }

    .whatsapp-heading {
        margin-bottom: 4rem;
    }

    .whatsapp-heading h2 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(3.5rem, 8vw, 7rem);
        line-height: .9;
        color: var(--white);
    }

    .whatsapp-panel {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        padding-bottom: 200px;
    }

    @media (max-width: 768px) {
        .whatsapp-panel {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

    }

    .whatsapp-copy h3 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(2rem, 4vw, 3rem);
        margin: .5rem 0 1rem;
    }

    .whatsapp-copy p {
        color: var(--gray);
        font-size: .95rem;
        line-height: 1.7;
        max-width: 400px;
    }

    .whatsapp-tags {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
        margin-top: 1.5rem;
    }

    .whatsapp-tags span {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: .75rem;
        letter-spacing: .15em;
        text-transform: uppercase;
        padding: .35rem .8rem;
        border: 1px solid rgba(255, 255, 255, .12);
        color: var(--gray);
    }

    /* Widget shell — the chat window */
    .whatsapp-widget-shell {
        background: #111;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 30px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .06);
        max-width: 380px;
    }

    /* Header */
    .whatsapp-widget-header {
        background: #1a1a1a;
        padding: 1rem 1.2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .whatsapp-widget-user {
        display: flex;
        align-items: center;
        gap: .85rem;
    }

    .whatsapp-widget-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
        position: relative;
    }

    .whatsapp-avatar-wrap {
        position: relative;
        flex-shrink: 0;
    }

    .whatsapp-avatar-wrap::after {
        content: '';
        position: absolute;
        bottom: 2px;
        right: 2px;
        width: 10px;
        height: 10px;
        background: #25d366;
        border-radius: 50%;
        border: 2px solid #1a1a1a;
    }

    .whatsapp-widget-name {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1rem;
        letter-spacing: .05em;
        color: var(--white);
        margin: 0;
    }

    .whatsapp-status {
        font-size: .72rem;
        color: #25d366;
        letter-spacing: .05em;
    }

    .whatsapp-widget-close {
        font-size: 1.3rem;
        color: var(--gray);
        cursor: default;
        line-height: 1;
    }

    /* Chat body */
    .whatsapp-widget-body {
        padding: 1.2rem;
        background: #0e0e0e;
        background-image: radial-gradient(rgba(255, 255, 255, .015) 1px, transparent 1px);
        background-size: 20px 20px;
        min-height: 130px;
        display: flex;
        flex-direction: column;
        gap: .5rem;
    }

    .whatsapp-widget-time {
        font-size: .68rem;
        color: var(--gray);
        text-align: center;
        margin: 0 0 .3rem;
        opacity: .6;
    }

    .whatsapp-widget-bubble {
        background: #1e1e1e;
        border: 1px solid rgba(255, 255, 255, .07);
        border-radius: 0 12px 12px 12px;
        padding: .75rem 1rem;
        max-width: 85%;
        position: relative;
    }

    .whatsapp-widget-bubble::before {
        content: '';
        position: absolute;
        top: 0;
        left: -6px;
        border-width: 0 6px 6px 0;
        border-style: solid;
        border-color: transparent rgba(255, 255, 255, .07) transparent transparent;
    }

    .whatsapp-widget-bubble p {
        margin: 0;
        font-size: .85rem;
        color: var(--text);
        line-height: 1.5;
    }

    .whatsapp-widget-bubble p+p {
        margin-top: .3rem;
    }

    /* Composer */
    .whatsapp-widget-composer {
        display: flex;
        align-items: flex-end;
        gap: .6rem;
        padding: .8rem 1rem;
        background: #1a1a1a;
        border-top: 1px solid rgba(255, 255, 255, .07);
    }

    .whatsapp-widget-composer textarea {
        flex: 1;
        background: #111;
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 10px;
        color: var(--text);
        font-family: inherit;
        font-size: .85rem;
        padding: .55rem .8rem;
        resize: none;
        outline: none;
        min-height: 38px;
        max-height: 100px;
        line-height: 1.5;
        transition: border-color .2s;
    }

    .whatsapp-widget-composer textarea::placeholder {
        color: rgba(255, 255, 255, .25);
    }

    .whatsapp-widget-composer textarea:focus {
        border-color: var(--gold);
    }

    .whatsapp-widget-send {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        background: #25d366;
        border: none;
        border-radius: 50%;
        color: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .2s, transform .15s;
    }

    .whatsapp-widget-send:hover {
        background: #1fb85a;
        transform: scale(1.08);
    }

    .whatsapp-widget-send svg {
        width: 16px;
        height: 16px;
    }

    /* /WHATSAPP SECTION */
