/* ==========================================================
   RandAL Brindes — segmentos.css
   ========================================================== */

/* ===========================
   PAGE HERO (mesmo padrão do catalogo.css)
=========================== */
.page-hero {
    padding: 140px 0 60px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,107,0,.06);
    border-radius: 50%;
    filter: blur(80px);
    top: -150px;
    right: -80px;
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span:last-child { color: var(--text); }

.page-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -.5px;
    color: var(--dark);
}

.page-hero p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 640px;
}

/* ===========================
   GRID DE SEGMENTOS
=========================== */
.segmentos-cards-section { padding: 64px 0 100px; }

.segmento-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.segmento-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.segmento-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 16px 40px rgba(28,25,23,.08);
}

.segmento-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: var(--surface);
    border-radius: 16px;
}

.segmento-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -.2px;
}

.segmento-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

.segmento-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
}

.segmento-card-link svg { transition: transform var(--transition); }
.segmento-card:hover .segmento-card-link svg { transform: translateX(4px); }

/* Não encontrou o segmento */
.segmentos-cta-inline {
    margin-top: 56px;
    text-align: center;
    padding: 40px;
    background: var(--surface);
    border: 1px dashed var(--border-hover);
    border-radius: var(--radius-lg);
}

.segmentos-cta-inline h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark);
}

.segmentos-cta-inline p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .page-hero h1 { font-size: 32px; }
    .segmento-cards-grid { grid-template-columns: 1fr; }
}
