/* ═══════════════════════════════════════════════
   about.css — OZI-UI About Page
   Carregado via @push('styles') no about.blade.php
   ═══════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────── */
.ozi-about-hero {
    background: linear-gradient(135deg, #a93226 0%, #c0392b 40%, #d35400 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.ozi-about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(231,76,60,.3) 0%, transparent 60%);
}

.ozi-about-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ozi-about-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    font-family: var(--mono);
}

.ozi-about-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.ozi-about-hero__title em {
    font-style: normal;
    color: var(--orange);
}

.ozi-about-hero__desc {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    max-width: 520px;
    line-height: 1.7;
}

/* ── Layout ───────────────────────────────────── */
.ozi-about-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* ── Timeline ─────────────────────────────────── */
.ozi-timeline {
    position: relative;
}

.ozi-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--red), var(--orange), var(--border));
}

.ozi-timeline__item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.ozi-timeline__dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--red);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.ozi-timeline__dot--orange {
    background: var(--orange);
    box-shadow: 0 0 0 2px var(--orange);
}

.ozi-timeline__content {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    flex: 1;
}

.ozi-timeline__year {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 4px;
}

.ozi-timeline__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .5rem;
}

.ozi-timeline__desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.ozi-timeline__desc code {
    font-family: var(--mono);
    font-size: 12px;
    background: var(--red-light);
    color: var(--red-dark);
    padding: 1px 5px;
    border-radius: 3px;
}

/* ── Story ────────────────────────────────────── */
.ozi-story {
    margin-bottom: 3rem;
}

.ozi-story__eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-bottom: .5rem;
}

.ozi-story__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.ozi-story__title span { color: var(--red); }

.ozi-story__text {
    font-size: 15px;
    color: #3a3632;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.ozi-story__text code {
    font-family: var(--mono);
    font-size: 12.5px;
    background: var(--red-light);
    color: var(--red-dark);
    padding: 2px 6px;
    border-radius: 4px;
}

.ozi-story__quote {
    border-left: 4px solid var(--orange);
    background: var(--orange-lt);
    padding: 1rem 1.5rem;
    border-radius: 0 10px 10px 0;
    margin: 1.5rem 0;
    font-size: 15px;
    color: #5a4520;
    font-style: italic;
    line-height: 1.7;
}

/* ── Sidebar cards ────────────────────────────── */
.ozi-about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ozi-creator-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.ozi-creator-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-family: var(--sans);
}

.ozi-creator-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.ozi-creator-card__role {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 1rem;
}

.ozi-creator-card__bio {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    text-align: left;
}

.ozi-creator-card__links {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.ozi-creator-card__link {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: border-color .15s, color .15s;
}

.ozi-creator-card__link:hover {
    border-color: var(--red);
    color: var(--red);
}

/* ── Stats card ───────────────────────────────── */
.ozi-stats-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
}

.ozi-stats-card__title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 1rem;
}

.ozi-stats-card__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.ozi-stats-card__item:last-child { border-bottom: none; }

.ozi-stats-card__label { color: var(--muted); }

.ozi-stats-card__value {
    font-weight: 700;
    color: var(--red);
    font-family: var(--mono);
}

/* ── Values card ──────────────────────────────── */
.ozi-values-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
}

.ozi-values-card__title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 1rem;
}

.ozi-values-card__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: .75rem;
    font-size: 13px;
    color: var(--muted);
}

.ozi-values-card__item:last-child { margin-bottom: 0; }

.ozi-values-card__icon {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── CTA ──────────────────────────────────────── */
.ozi-about-cta {
    background: linear-gradient(135deg, #a93226 0%, #c0392b 50%, #d35400 100%);
    padding: 3rem 2rem;
    text-align: center;
}

.ozi-about-cta__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .75rem;
}

.ozi-about-cta__title em {
    font-style: normal;
    color: var(--orange);
}

.ozi-about-cta__desc {
    color: rgba(255,255,255,.8);
    font-size: 14px;
    margin-bottom: 1.5rem;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 768px) {
    .ozi-about-wrap          { grid-template-columns: 1fr; }
    .ozi-timeline::before    { left: 14px; }
}
