:root {
    color-scheme: dark;
    --bg: #090b0f;
    --panel: #10141b;
    --panel-soft: rgba(255, 255, 255, 0.055);
    --line: rgba(255, 255, 255, 0.13);
    --text: #f3f5f7;
    --muted: #aab3bd;
    --subtle: #737f8c;
    --accent: #6cc6d9;
    --accent-warm: #d9b56c;
    --max: 1120px;
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    font-family: "Urbanist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 300;
    line-height: 1.5;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(135deg, rgba(108, 198, 217, 0.09), transparent 34%),
        linear-gradient(225deg, rgba(217, 181, 108, 0.08), transparent 38%),
        #090b0f;
    content: "";
}

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

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

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 22px 24px;
    color: rgba(255, 255, 255, 0.90);
    transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
    width: min(calc(100% - 28px), var(--max));
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(9, 11, 15, 0.82);
    backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.contact-links {
    display: flex;
    align-items: center;
}

.brand {
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
}

.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50%;
    color: var(--accent);
    font-size: 0.78rem;
}

.nav {
    gap: 6px;
}

.nav a {
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.88rem;
    transition: color 160ms ease, background 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.hero {
    position: relative;
    min-height: 92svh;
    overflow: hidden;
    display: grid;
    align-items: end;
    padding: 150px 24px 74px;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    z-index: -2;
  /*  left: 36%; */
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    filter: saturate(0.74) contrast(1.02) brightness(0.62);
}

.hero-overlay {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(9, 11, 15, 0.96) 0%, rgba(9, 11, 15, 0.72) 40%, rgba(9, 11, 15, 0.24) 100%),
        linear-gradient(0deg, #090b0f 0%, rgba(9, 11, 15, 0.18) 42%, rgba(9, 11, 15, 0.18) 100%);
}

.hero-content {
    width: min(100%, var(--max));
    margin: 0 auto;
}

.eyebrow,
.section-label,
.product-status {
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: 7.4rem;
    font-weight: 100;
    line-height: 0.92;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 0;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 400;
}

.hero-copy {
    max-width: 620px;
    color: #d7dde4;
    font-size: 1.25rem;
    font-weight: 300;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 500;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible,
.product-card:hover,
.product-card:focus-visible,
.contact-links a:hover,
.contact-links a:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    border-color: rgba(108, 198, 217, 0.45);
    background: #d9f8ff;
    color: #081014;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.section {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 96px 24px;
}

.intro-grid,
.section-heading,
.contact {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
    gap: 54px;
    align-items: start;
}

.intro-copy,
.section-heading p,
.music-panel p {
    color: var(--muted);
    font-size: 1.05rem;
}

.intro-copy p:last-child,
.section-heading p {
    margin-bottom: 0;
}

.product-groups {
    display: grid;
    gap: 20px;
    margin-top: 38px;
}

.product-group {
    display: grid;
    grid-template-columns: 0.52fr 1fr;
    gap: 22px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
}

.group-head p {
    margin-bottom: 0;
    color: var(--subtle);
}

.product-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.product-card {
    min-height: 136px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius);
    background: var(--panel-soft);
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.product-card:hover,
.product-card:focus-visible {
    border-color: rgba(108, 198, 217, 0.42);
    background: rgba(108, 198, 217, 0.075);
}

.product-card strong,
.product-card span {
    display: block;
}

.product-card strong {
    margin: 18px 0 5px;
    font-size: 1.12rem;
    font-weight: 400;
}

.product-card span:last-child {
    color: var(--muted);
}

.music-panel {
    display: grid;
    grid-template-columns: 0.7fr 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(217, 181, 108, 0.20);
    border-radius: var(--radius);
    background:
        linear-gradient(120deg, rgba(217, 181, 108, 0.10), transparent 42%),
        rgba(255, 255, 255, 0.035);
}

.music-panel h2 {
    font-size: 2.6rem;
}

.text-link {
    white-space: nowrap;
    color: #ffe0a0;
    font-weight: 500;
}

.contact {
    align-items: start;
    border-top: 1px solid var(--line);
}

.contact-links {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.contact-links a {
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-weight: 500;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.contact-form {
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
}

.field {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.92rem;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    background: rgba(6, 8, 12, 0.72);
    color: var(--text);
    font: inherit;
    font-weight: 300;
    outline: none;
    transition: border-color 160ms ease, background 160ms ease;
}

.field input {
    min-height: 46px;
    padding: 0 14px;
}

.field textarea {
    min-height: 142px;
    padding: 13px 14px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(108, 198, 217, 0.64);
    background: rgba(8, 12, 18, 0.92);
}

.field-hidden {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-message {
    margin: 0;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-size: 0.94rem;
}

.form-message p {
    margin-bottom: 4px;
}

.form-message p:last-child {
    margin-bottom: 0;
}

.form-message-success {
    border: 1px solid rgba(108, 217, 160, 0.35);
    background: rgba(108, 217, 160, 0.10);
    color: #d5ffe7;
}

.form-message-error {
    border: 1px solid rgba(255, 130, 130, 0.35);
    background: rgba(255, 130, 130, 0.10);
    color: #ffd7d7;
}

.form-submit {
    width: fit-content;
    margin-top: 4px;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 28px 24px 42px;
    color: var(--subtle);
    font-size: 0.9rem;
}

@media (max-width: 820px) {
    .site-header {
        padding: 16px;
    }

    .site-header.is-scrolled {
        width: calc(100% - 20px);
        margin-top: 10px;
    }

    .brand span:last-child {
        display: none;
    }

    .nav {
        gap: 0;
    }

    .nav a {
        padding: 8px;
        font-size: 0.82rem;
    }

    .hero {
        min-height: 86svh;
        padding: 132px 20px 56px;
    }

    .hero-media img {
        object-position: 66% 14%;
    }

    .hero-media {
        left: 0;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(9, 11, 15, 0.98) 0%, rgba(9, 11, 15, 0.72) 58%, rgba(9, 11, 15, 0.30) 100%),
            linear-gradient(0deg, #090b0f 0%, rgba(9, 11, 15, 0.22) 48%, rgba(9, 11, 15, 0.30) 100%);
    }

    .section {
        padding: 72px 20px;
    }

    h1 {
        font-size: 4.6rem;
    }

    h2 {
        font-size: 2.7rem;
    }

    .music-panel h2 {
        font-size: 2.3rem;
    }

    .intro-grid,
    .section-heading,
    .contact,
    .product-group,
    .music-panel {
        grid-template-columns: 1fr;
    }

    .product-list {
        grid-template-columns: 1fr;
    }

    .form-submit {
        width: 100%;
    }

    .footer {
        flex-direction: column;
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 520px) {
    .nav a[href="#perfil"] {
        display: none;
    }

    h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.15rem;
    }

    .music-panel h2 {
        font-size: 2rem;
    }

    .hero-copy {
        font-size: 1rem;
    }

    .button,
    .hero-actions {
        width: 100%;
    }

    .music-panel,
    .product-group {
        padding: 20px;
    }
}
