/* Hero */
.hero {
    padding: 60px 0;
}

.hero-row {
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.05;
    margin: 0 0 12px;
    color: var(--tn-roxo);
}

.hero-note {
    font-size: 12px;
    font-style: italic;
    color: var(--tn-cinza);
}

/* Destaque */
.destaque {
    border: 2px solid var(--tn-roxo);
    box-shadow: 0 4px 8px rgba(120, 70, 149, 0.1);
    border-radius: 16px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    padding: 20px;
    margin: 40px 0 60px 0;
}

.featured-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}

.featured-top .badge {
    background-color: var(--tn-preto);
    color: var(--tn-branco);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 8px;
}

.featured-body {
    display: flex;
    align-items: center;
    gap: 20px;
}

.featured-media img {
    border-radius: 16px;
    max-width: 300px;
}

.featured-actions {
    padding: 20px 0;
}

.featured-category {
    font-size: 12px;
    color: var(--tn-cinza);
    font-weight: 600;
}

.hint {
    font-size: 12px;
    color: var(--tn-cinza);
}

/* Decision */
.decision {
    padding: 20px 0 60px 0;
}

.decision .section-title {
    color: var(--tn-roxo);
    font-weight: 600;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background-color: var(--tn-cinza-claro);
    box-shadow: 0 4px 8px rgba(120, 70, 149, 0.1);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--tn-cinza-medio);
}

.card .label {
    font-size: 12px;
    color: var(--tn-cinza);
    font-weight: 600;
    margin-bottom: 8px;
}

.card h3 {
    font-size: 20px;
    margin: 0 0 12px 0;
    color: var(--tn-preto);
    font-weight: bold;
}

.card .link {
    font-size: 16px;
    color: var(--tn-roxo);
    font-weight: 600;
    text-decoration: none;
}

.card .link:hover {
    text-decoration: underline;
}

.home-reviews {
    padding: 40px 0;
}

.home-reviews .section-title {
    margin-bottom: 20px;
    color: var(--tn-roxo);
    font-weight: 600;
}

.review-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background-color: var(--tn-cinza-claro);
    box-shadow: 0 4px 8px rgba(120, 70, 149, 0.1);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--tn-cinza-medio);
}

.thumb {
    width: 84px;
    height: 84px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #fafafe;
    display: grid;
    place-items: center;
    overflow: hidden;
    flex: 0 0 auto;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-card h3 {
    margin: 0 0 4px;
    font-size: 16px;
}

.review-card p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 14px;
}

.transparency {    
    margin-bottom: 60px;
}

.transparency p{
    font-size: 12px;
    color: var(--tn-cinza);
}

@media (max-width: 576px) {
    .hero-row {
        flex-direction: column;
    }

    .hero-note {
        margin-bottom: 16px;
    }

    .featured-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .featured-body {
        flex-direction: column;
    }

    .featured-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .review-card {
        flex-direction: column;
        text-align: center;
    }

    .decision .container{
        padding: 0;
    }

    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .thumb {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .transparency {
        margin-bottom: 40px;
        border-radius: 12px;
    }

    .transparency p{
        margin-top: 20px;
    }
}