/* =========================================
   NOVO ESCOLHA PRIME
   PRODUCT HERO
   ========================================= */

.product-hero {
    padding: 56px 0 88px;
    background: var(--color-background);
}

.product-hero__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================
   MEDIA
   ========================================= */

.product-hero__media {
    min-width: 0;
}

.product-hero__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.product-hero__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-hero__image--empty {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    text-align: center;
}


/* =========================================
   CONTENT
   ========================================= */

.product-hero__content {
    min-width: 0;
}

.product-hero__brand {
    display: inline-block;
    margin-bottom: var(--space-3);
    color: var(--color-text-muted);
    font-size: var(--font-size-xs);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-hero__title {
    margin-bottom: var(--space-5);
    color: var(--color-primary);
    font-size: clamp(
        2rem,
        4vw,
        3rem
    );
    font-weight: 800;
    line-height: 1.12;
}

.product-hero__description {
    max-width: 680px;
    margin-bottom: var(--space-6);
    color: var(--color-text-light);
    font-size: var(--font-size-base);
    line-height: 1.7;
}


/* =========================================
   SCORE
   ========================================= */

.product-hero__score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-5);
    margin-bottom: var(--space-4);
    padding: 20px 24px;
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.product-hero__score-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-hero__score-label {
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: 800;
}

.product-hero__score-caption {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-xs);
}

.product-hero__score-value {
    flex: 0 0 auto;
    color: var(--color-gold);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}


/* =========================================
   STATUS
   ========================================= */

.product-hero__status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-5);
    border-bottom: 1px solid var(--color-border);
}

.product-hero__status span {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.product-hero__status strong {
    color: var(--color-success);
    font-size: var(--font-size-sm);
    font-weight: 800;
}


/* =========================================
   TECHNICAL DETAILS
   ========================================= */

.product-hero__details {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: var(--space-4);
}

.product-hero__detail {
    min-width: 0;
    padding: 14px 16px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.product-hero__detail span {
    display: block;
    margin-bottom: 5px;
    color: var(--color-text-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-hero__detail strong {
    display: block;
    overflow: hidden;
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 900px) {

    .product-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-hero__media {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }

    .product-hero__title {
        font-size: 2.25rem;
    }

}


@media (max-width: 600px) {

    .product-hero {
        padding: 32px 0 64px;
    }

    .product-hero__grid {
        gap: 32px;
    }

    .product-hero__image {
        padding: 24px;
    }

    .product-hero__title {
        font-size: 1.9rem;
    }

    .product-hero__description {
        font-size: var(--font-size-sm);
    }

    .product-hero__score {
        padding: 18px 20px;
    }

    .product-hero__score-value {
        font-size: 1.7rem;
    }

    .product-hero__details {
        grid-template-columns: 1fr;
    }

}