/* =========================================
   SEÇÃO PRODUTOS — cards verticais "pricing premium"
   Padrão do site: fundo #050505, cards #080808, dourado #C6A87C.
   Layout flex centralizado: 5 cards = 3 + 2 centrados (sem órfão solto).
   ========================================= */
.section-produtos {
    background-color: #050505;
    padding: 100px 0;
}
.produtos-inner { position: relative; }

.produtos-header { text-align: center; margin-bottom: 56px; }
.produtos-eyebrow {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
}
.produtos-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
}
.produtos-title .ital { color: var(--gold); font-style: normal; }
.produtos-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 18px auto 0;
    line-height: 1.6;
}

/* GRID — flex centralizado, cards de largura fixa */
.produtos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
}

/* CARD */
.pc-card {
    flex: 1 1 300px;
    max-width: 340px;
    position: relative;
    background: #080808;
    border: 1px solid #1f1f1f;
    border-radius: 14px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.pc-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.55);
}
.pc-card-dark { background: #060606; }

/* TAG (pill) */
.pc-tag {
    align-self: flex-start;
    font-family: var(--font-body);
    font-size: 0.64rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid var(--gold-dark);
    border-radius: 40px;
    padding: 6px 14px;
    margin-bottom: 22px;
}

/* ÍCONE */
.pc-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    border: 1px solid #262626;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(145deg, #141414, #0b0b0b);
}
.pc-icon i { font-size: 1.4rem; color: var(--gold); }

/* NOME */
.pc-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 4px;
    text-transform: none;
}
.pc-name-brand { letter-spacing: 1px; }
.pc-name-brand b { color: var(--gold-light); }

.pc-sub {
    color: var(--gold);
    font-size: 0.74rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

/* PREÇO */
.pc-price { margin-bottom: 20px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.pc-price-old {
    color: #666;
    font-size: 0.95rem;
    text-decoration: line-through;
    width: 100%;
}
.pc-price-now {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}
.pc-price-text { font-size: 1.5rem; }
.pc-price-cond { color: #888; font-size: 0.85rem; }

.pc-desc {
    color: #999;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* LISTA */
.pc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ccc;
    font-size: 0.86rem;
    line-height: 1.45;
}
.pc-check {
    flex-shrink: 0;
    width: 18px; height: 18px;
    border-radius: 5px;
    background: rgba(198,168,124,0.12);
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
}
.pc-check svg { width: 11px; height: 11px; fill: none; stroke: var(--gold); stroke-width: 3; }

/* BOTÃO — cola na base */
.pc-btn {
    margin-top: auto;
    display: block;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold-light);
    text-decoration: none;
    border: 1px solid var(--gold-dark);
    border-radius: 6px;
    padding: 14px 18px;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.pc-btn:hover { background: var(--gold); border-color: var(--gold); color: #0a0a0a; }

/* RESPONSIVO */
@media (max-width: 1080px) {
    .pc-card { flex-basis: 280px; max-width: 320px; }
}
@media (max-width: 640px) {
    .section-produtos { padding: 64px 0; }
    .produtos-title { font-size: 1.9rem; }
    .produtos-grid { gap: 18px; }
    .pc-card { flex-basis: 100%; max-width: 420px; }
    .produtos-header { margin-bottom: 40px; }
}

/* =========================================
   ITEM 8 — PRODUTOS DEITADOS (layout horizontal)
   Volta os cards ao formato linha (full-width), 1 por linha.
   Mantém checkouts e textos. Sobrescreve o grid vertical acima.
   ========================================= */
.section-produtos .produtos-grid {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    max-width: 920px;
    gap: 20px;
}
.section-produtos .pc-card {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 200px;
    grid-template-areas:
        "icon  head   tag"
        "icon  head   price"
        "icon  desc   price"
        "list  list   btn";
    align-items: start;
    column-gap: 30px;
    row-gap: 10px;
    padding: 32px 36px;
}
.section-produtos .pc-tag {
    grid-area: tag;
    position: static;
    align-self: start;
    justify-self: end;
    margin: 0 0 10px;
}
.section-produtos .pc-icon { grid-area: icon; margin: 0; }
.section-produtos .pc-head-wrap { grid-area: head; align-self: start; }
.section-produtos .pc-name { margin-bottom: 2px; }
.section-produtos .pc-sub { margin-bottom: 0; }
.section-produtos .pc-desc {
    grid-area: desc;
    margin: 8px 0 0;
    align-self: start;
    max-width: 520px;
}
.section-produtos .pc-price {
    grid-area: price;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: right;
    margin: 0;
    padding-left: 28px;
    align-self: start;
    gap: 2px;
}
.section-produtos .pc-tag { padding-left: 28px; }
.section-produtos .pc-price-old { width: auto; text-align: right; margin: 0; }
.section-produtos .pc-list {
    grid-area: list;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 28px;
    margin: 6px 0 0;
    padding-top: 18px;
    border-top: 1px solid #1a1a1a;
}
.section-produtos .pc-btn {
    grid-area: btn;
    margin: 0;
    align-self: center;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    padding: 13px 18px;
    margin-left: 28px;
}

@media (max-width: 760px) {
    .section-produtos .pc-card {
        grid-template-columns: 52px 1fr;
        grid-template-areas:
            "tag   tag"
            "icon  head"
            "desc  desc"
            "price price"
            "list  list"
            "btn   btn";
        column-gap: 18px;
        padding: 26px 22px;
    }
    .section-produtos .pc-tag { grid-area: tag; justify-self: start; margin-bottom: 4px; }
    .section-produtos .pc-price { align-items: flex-start; text-align: left; }
    .section-produtos .pc-price-old { text-align: left; }
    .section-produtos .pc-list { grid-template-columns: 1fr; }
    .section-produtos .pc-btn { width: 100%; text-align: center; }
}
