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

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

.ozi-support-hero::before {
    content: '❤️';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12rem;
    opacity: .06;
    pointer-events: none;
}

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

.ozi-support-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-support-hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

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

.ozi-support-hero__desc {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
}

/* ── Wrap ─────────────────────────────────────── */
.ozi-support-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* ── Why card ─────────────────────────────────── */
.ozi-why {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.ozi-why__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ozi-why__title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--orange);
    border-radius: 2px;
}

.ozi-why__text {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: .75rem;
}

.ozi-why__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-top: 1.25rem;
}

.ozi-why__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.5px;
    color: var(--muted);
}

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

/* ── PayPal card ──────────────────────────────── */
.ozi-paypal-card {
    background: #fff;
    border: 2px solid var(--orange);
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.ozi-paypal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--orange));
}

.ozi-paypal-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--orange-lt);
    border: 1px solid #f0c070;
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ozi-paypal-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .5rem;
}

.ozi-paypal-card__desc {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 1.75rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.ozi-paypal-amounts {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.ozi-amount-btn {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: .6rem 1.25rem;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    transition: all .15s;
    font-family: var(--sans);
    text-decoration: none;
    display: inline-block;
}

.ozi-amount-btn:hover,
.ozi-amount-btn.active {
    border-color: var(--orange);
    background: var(--orange-lt);
    color: var(--orange);
}

.ozi-paypal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0070ba;
    color: #fff;
    border: none;
    padding: 13px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--sans);
    text-decoration: none;
    transition: background .15s, transform .1s;
    cursor: pointer;
}

.ozi-paypal-btn:hover {
    background: #005ea6;
    color: #fff;
    transform: translateY(-1px);
}

.ozi-paypal-btn__logo {
    font-size: 18px;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -1px;
}

.ozi-paypal-card__note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 1rem;
}

/* ── Other ways ───────────────────────────────── */
.ozi-other-ways {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.ozi-other-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color .15s, transform .15s;
}

.ozi-other-card:hover {
    border-color: var(--red);
    transform: translateY(-2px);
}

.ozi-other-card__icon {
    width: 40px;
    height: 40px;
    background: var(--red-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--red);
    margin-bottom: 1rem;
}

.ozi-other-card__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .4rem;
}

.ozi-other-card__desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.ozi-other-card__link:hover {
    background: #f5c6c2;
    color: var(--red);
}

/* ── Supporters ───────────────────────────────── */
.ozi-supporters {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

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

.ozi-supporters__empty {
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 640px) {
    .ozi-why__items   { grid-template-columns: 1fr; }
    .ozi-other-ways   { grid-template-columns: 1fr; }
}
