/* AURUM — Produtos Page */
/* Product intro, metal sections, product card grid, product specs, disclaimers */

/* -- Intro Section -- */

.produtos__intro {
    padding: var(--section-gap) 0;
    padding-bottom: 0;
}

/* -- Metal Sections -- */

.produtos__metal-section {
    padding: var(--section-gap) 0;
}
.produtos__metal-section + .produtos__metal-section {
    padding-top: 0;
}
.produtos__metal-section:nth-child(even) {
    background: var(--black-rich);
    padding: var(--section-gap) 0;
}
.produtos__metal-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: clamp(32px, 4vw, 48px);
}
.produtos__metal-symbol {
    color: var(--gold);
    font-weight: 400;
    margin-left: 8px;
}

/* -- Product Grid -- */

.produtos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* -- Product Card -- */

.produtos__card {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 24px;
    transition: all 0.35s var(--ease);
}
.produtos__card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-4px);
}
.produtos__card-img {
    aspect-ratio: 4/3;
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
}
.produtos__card-img svg {
    width: 50%;
    color: var(--gold);
    opacity: 0.25;
    transition: transform 0.8s var(--ease), opacity 0.5s;
}
.produtos__card:hover .produtos__card-img svg {
    transform: scale(1.06);
    opacity: 0.35;
}
.produtos__card-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}
.produtos__card-symbol {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
}
.produtos__card-specs {
    margin-bottom: 20px;
}
.produtos__card-spec {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.produtos__card-spec-label {
    color: var(--white-muted);
}
.produtos__card-spec-value {
    color: var(--gold);
}
.produtos__card-cta {
    width: 100%;
    text-align: center;
}

/* -- Disclaimer -- */

.produtos__disclaimer {
    padding: 40px 0 0;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-dim);
}

/* -- Responsive -- */

@media (max-width: 1024px) {
    .produtos__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .produtos__grid {
        grid-template-columns: 1fr;
    }
    .produtos__card {
        max-width: 400px;
        margin: 0 auto;
    }
}
