﻿/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: rgb(36, 202, 104);
    --green-dark: #008f4a;
    --green-light: #f0fdf6;
    --green-border: #c8f0dc;
    --text-primary: #111;
    --text-secondary: #555;
    --text-muted: #999;
    --border: #e8e8e8;
    --bg-page: #f0f0f0;
    --bg-card: #ffffff;
    --radius-sm: 10px;
    --radius-md: 16px;
    --shadow-card: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-cover: 0 4px 20px rgba(0,0,0,0.15);
    --max-w: 480px;
    --side-pad: 16px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, Arial, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-primary);
    padding-bottom: 152px;
    -webkit-font-smoothing: antialiased;
}

button { cursor: pointer; font-family: inherit; }
a { text-decoration: none; }
img { display: block; }

/* ============================================================
   HEADER
============================================================ */
.header {
    background-color: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 11px var(--side-pad);
}

.logo { display: flex; align-items: center; }
.logo-img { height: 30px; width: auto; }

.header-actions { display: flex; align-items: center; gap: 2px; }

.header-icon-btn {
    background: none;
    border: none;
    color: var(--green);
    font-size: 17px;
    padding: 8px;
    line-height: 1;
    border-radius: 8px;
    transition: background 0.15s;
}


.header-icon-btn:hover { background: var(--green-light); }

/* ============================================================
   MAIN WRAPPER
============================================================ */
.main-content {
    max-width: var(--max-w);
    margin: 0 auto;
}

/* ============================================================
   COVER IMAGE
============================================================ */
.cover-wrapper { padding: 16px var(--side-pad) 0; }

.cover-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-cover);
}

.cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.93);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #bbb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: color 0.2s, transform 0.15s;
}

.btn-favorite:hover { transform: scale(1.1); color: #e74c3c; }
.btn-favorite.active { color: #e74c3c; }

/* ============================================================
   CAMPAIGN CARD
============================================================ */
.campaign-card {
    background: var(--bg-card);
    margin: 12px var(--side-pad) 0;
    border-radius: var(--radius-md);
    padding: 22px var(--side-pad) 24px;
    box-shadow: var(--shadow-card);
}

.campaign-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.campaign-title {
    font-size: 26px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 5px;
}

.campaign-id {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 22px;
}

/* ============================================================
   PROGRESS
============================================================ */
.progress-section { margin-bottom: 20px; }

.progress-bar-track {
    width: 100%;
    height: 6px;
    background: var(--border);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-bar-fill {
    height: 100%;
    background: var(--green);
    border-radius: 99px;
    width: 0%;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-labels {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.raised-amount {
    font-size: 18px;
    font-weight: 90;
    color: var(--green);
    line-height: 1;
}

.goal-label { font-size: 17px; color: var(--text-muted); }

/* ============================================================
   STATS GRID
============================================================ */
.stats-grid {
    background: rgb(238, 255, 230);
    border: 1px solid var(--green-border);
    border-radius: var(--radius-sm);
    margin-bottom: 22px;
    overflow: hidden;
}

.stat-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px;
    gap: 10px;
}

.stat-card + .stat-card {
    border-top: 1px solid var(--green-border);
}

.stat-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.stat-icon { color: var(--green); font-size: 13px; flex-shrink: 0; }
.stat-body { display: flex; flex-direction: column; gap: 2px; }

.stat-number {
    font-size: 15px;
    font-weight: 70;
    color: var(--text-primary);
    line-height: 1;
}

.stat-desc { font-size: 11px; color: var(--text-muted); font-weight: 500; }

/* ============================================================
   DESCRIPTION
============================================================ */
.description-block { margin-bottom: 20px; }

.description-block p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.description-block .hidden { display: none; }

.btn-read-more {
    background: none;
    border: none;
    color: var(--green);
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    margin-top: 4px;
}

.btn-read-more:hover { text-decoration: underline; }

/* ============================================================
   PROTECTED BADGE
============================================================ */
.badge-protected {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green);
    color: #fff;
    padding: 9px 18px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.badge-protected i { font-size: 12px; }

/* ============================================================
   PIX HIGHLIGHT CARD
============================================================ */
.pix-highlight-card {
    background: var(--bg-card);
    margin: 12px var(--side-pad) 0;
    border-radius: var(--radius-md);
    padding: 20px var(--side-pad);
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--green);
}

.pix-highlight-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.pix-highlight-header i { color: var(--green); font-size: 14px; }

.pix-highlight-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.pix-highlight-key {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--green-light);
    border: 1.5px solid var(--green-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    gap: 8px;
}

.pix-highlight-key span {
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    word-break: break-all;
}

.btn-copy-pix {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--green);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
}

.btn-copy-pix:hover { background: var(--green-dark); }

/* ============================================================
   CREATOR
============================================================ */
.creator-card {
    background: var(--bg-card);
    margin: 12px var(--side-pad) 0;
    border-radius: var(--radius-md);
    padding: 16px var(--side-pad);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 14px;
}

.creator-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--green-border);
}

.creator-info { display: flex; flex-direction: column; gap: 4px; }
.creator-name { font-size: 15px; font-weight: 700; color: var(--text-primary); }

.creator-since {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.creator-since i { color: var(--green); font-size: 11px; }

/* ============================================================
   TABS
============================================================ */
.tabs-wrapper {
    background: var(--bg-card);
    margin: 12px var(--side-pad) 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.tabs { display: flex; border-bottom: 2px solid var(--border); }

.tab {
    flex: 1;
    padding: 14px 8px;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    transition: color 0.2s;
}

.tab.active { color: var(--green); }

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}

.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-inner { padding: 20px var(--side-pad); }

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

.tab-meta i { color: var(--green); }
.campaign-full-text { display: flex; flex-direction: column; gap: 14px; }

.campaign-full-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
}

.empty-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 48px var(--side-pad);
    color: var(--text-muted);
}

.empty-tab i { font-size: 32px; opacity: 0.35; }
.empty-tab p { font-size: 14px; }

/* ============================================================
   FAQ / ACCORDION
============================================================ */
.faq-section {
    margin: 12px var(--side-pad) 0;
}

.section-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.3;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px var(--side-pad);
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    gap: 12px;
    transition: color 0.2s;
}

.accordion-header i {
    color: var(--text-muted);
    font-size: 13px;
    flex-shrink: 0;
    transition: transform 0.25s;
}

.accordion-item.active .accordion-header { color: var(--green); }

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--green);
}

.accordion-content {
    display: none;
    padding: 0 var(--side-pad) 18px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.accordion-item.active .accordion-content { display: block; }

/* ============================================================
   OTHER CAMPAIGNS
============================================================ */
.other-campaigns {
    background: var(--bg-card);
    margin: 12px var(--side-pad) 0;
    border-radius: var(--radius-md);
    padding: 22px var(--side-pad);
    box-shadow: var(--shadow-card);
}

.campaigns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.campaign-card-mini {
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #fafafa;
    border: 1px solid var(--border);
}

.campaign-card-mini img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.campaign-card-mini-body { padding: 10px; }

.campaign-card-mini-body h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mini-amount { font-size: 13px; font-weight: 700; color: var(--green); margin-bottom: 5px; }
.mini-meta { font-size: 11px; color: var(--text-muted); }
.mini-meta i { color: #e74c3c; }

/* ============================================================
   REPORT BLOCK
============================================================ */
.report-block {
    margin: 12px var(--side-pad) 0;
    padding: 20px var(--side-pad);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.btn-report {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    padding: 0;
}

.btn-report:hover { text-decoration: underline; }
.btn-report i { font-size: 12px; }
.report-legal { font-size: 11px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    margin-top: 12px;
    padding: 36px var(--side-pad) 28px;
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-logo { display: flex; justify-content: center; margin-bottom: 32px; }

.footer-logo-img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.footer-col h4 { font-size: 13px; font-weight: 700; color: rgb(0, 157, 78); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 12px; color: #888; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green); }

.footer-contact { margin-bottom: 24px; }
.footer-contact h4 { font-size: 13px; font-weight: 700; color: rgb(0, 157, 78); margin-bottom: 8px; }
.footer-contact p { font-size: 12px; color: #888; }

.footer-apps { margin-bottom: 28px; }
.footer-apps h4 { font-size: 13px; font-weight: 700; color: rgb(0, 157, 78); margin-bottom: 12px; }

.app-btns { display: flex; gap: 10px; }

.app-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #2a2a2a;
    border: 1px solid #3d3d3d;
    color: #ccc;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 12px;
}

.app-btn:hover { background: #333; color: #fff; }

.footer-bottom {
    border-top: 1px solid #2e2e2e;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.social-links { display: flex; gap: 18px; }
.social-links a { color: #666; font-size: 18px; transition: color 0.2s; }
.social-links a:hover { color: var(--green); }
.footer-bottom p { font-size: 11px; color: #555; }

/* ============================================================
   FIXED CTA
============================================================ */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 50%;
    border-radius: 12px;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-w);
    background: #fff;
    padding: 10px var(--side-pad) 18px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.fixed-cta-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #fff;
    border: 1.5px solid var(--green);
    color: var(--green);
    border-radius: 99px;
    padding: 7px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    align-self: center;
}

.fixed-cta-badge i { font-size: 12px; }

.btn-help {
    width: 100%;
    background: var(--green);
    color: #fff;
    border: none;
    padding: 17px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.2px;
    transition: background 0.2s, transform 0.1s;
}

.btn-help:hover { background: var(--green-dark); }
.btn-help:active { transform: scale(0.98); }

.btn-share {
    width: 100%;
    background: #fff;
    color: #222;
    border: 1.5px solid #ccc;
    padding: 13px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.2s;
}

.btn-share:hover { background: #f8f8f8; }

/* ============================================================
   DONATION PANEL
============================================================ */
.donation-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.donation-overlay.active { opacity: 1; pointer-events: all; }

.donation-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: var(--max-w);
    background: #fff;
    z-index: 400;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.donation-panel.active { transform: translateX(0); }

.donation-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px var(--side-pad);
    border-bottom: 1px solid var(--border);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.donation-back {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    padding: 6px;
    line-height: 1;
    border-radius: 8px;
}

.donation-back:hover { background: var(--green-light); }

.donation-logo { flex: 1; display: flex; align-items: center; }

.donation-body {
    padding: 22px var(--side-pad) 48px;
    flex: 1;
}

.already-donated { font-size: 13px; color: var(--text-secondary); margin-bottom: 18px; }
.already-donated a { color: var(--green); font-weight: 600; }

.donation-title { font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 3px; }
.donation-id { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 13px 14px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-group input:focus { border-color: var(--green); }
.form-group input::placeholder { color: #ccc; }
.form-group input.input-error  { border-color: #e53935 !important; }
.form-group input.input-success { border-color: #43a047 !important; }
.field-error-msg {
    display: none;
    font-size: 12px;
    color: #e53935;
    margin-top: 5px;
    font-weight: 500;
}
.field-error-msg.visible { display: block; }

.amount-input {
    display: flex;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.amount-input:focus-within { border-color: var(--green); }

.currency-label {
    padding: 13px 14px;
    background: #f7f7f7;
    border-right: 1.5px solid #ddd;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    white-space: nowrap;
}

.amount-input input { border: none; border-radius: 0; flex: 1; }
.amount-input input:focus { border: none; }

.payment-methods { display: flex; gap: 10px; flex-wrap: wrap; }

.payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1.5px solid #ddd;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    user-select: none;
}

.payment-option input[type="radio"] { width: auto; accent-color: var(--green); }

.payment-option.selected {
    border-color: var(--green);
    color: var(--green);
    font-weight: 700;
    background: var(--green-light);
}

.turbo-section {
    background: var(--green-light);
    border: 1.5px solid var(--green-border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.turbo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.turbo-check { display: flex; align-items: center; gap: 10px; }
.turbo-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--green); }
.turbo-label { font-size: 13px; font-weight: 800; color: var(--green); letter-spacing: 0.5px; }
.turbo-price { font-size: 14px; font-weight: 700; color: var(--text-primary); }

.turbo-items { display: flex; flex-direction: column; gap: 16px; }
.turbo-item { display: flex; align-items: flex-start; gap: 12px; }
.turbo-item-icon { font-size: 22px; flex-shrink: 0; }
.turbo-item-info { flex: 1; }

.turbo-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}

.turbo-item-name { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.turbo-item-price { font-size: 13px; color: var(--text-secondary); font-weight: 500; }
.turbo-item-price.free { color: var(--text-muted); }
.turbo-item-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

.donation-summary {
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.donation-summary p { font-size: 14px; color: var(--text-secondary); }

.updates-check { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
.updates-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); flex-shrink: 0; }
.updates-text span { font-size: 13px; color: var(--text-primary); display: block; margin-bottom: 4px; }
.updates-text p { font-size: 12px; color: var(--text-muted); }

.btn-contribute {
    width: 100%;
    background: var(--green);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 16px;
    transition: background 0.2s, transform 0.1s;
}

.btn-contribute:hover { background: var(--green-dark); }
.btn-contribute:active { transform: scale(0.98); }

.legal-text {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.legal-text a { color: var(--green); text-decoration: underline; }

.security-seal {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 20px;
}

.seal-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #222;
    color: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    gap: 4px;
    flex-shrink: 0;
    min-width: 72px;
}

.seal-icon i { font-size: 18px; color: #ffd700; }
.seal-label { font-size: 8px; font-weight: 800; letter-spacing: 0.3px; line-height: 1.4; text-align: center; }
.security-seal p { font-size: 13px; color: #555; line-height: 1.5; }

.info-text { font-size: 11px; color: #aaa; line-height: 1.6; margin-bottom: 20px; }

.recaptcha-placeholder { display: flex; justify-content: flex-end; margin-bottom: 10px; }

.recaptcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 14px;
    background: #f9f9f9;
    width: 200px;
}

.recaptcha-box input { width: 18px; height: 18px; accent-color: var(--green); }
.recaptcha-box label { font-size: 13px; color: #333; flex: 1; }
.recaptcha-logo { display: flex; flex-direction: column; align-items: center; font-size: 9px; color: #999; gap: 2px; }
.recaptcha-logo i { font-size: 20px; color: #4285F4; }

/* ============================================================
   TOAST
============================================================ */
.toast {
    position: fixed;
    bottom: 175px;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
    pointer-events: none;
}

.toast.show { opacity: 1; }
