@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --green:  #009e60;
    --yellow: #fcd116;
    --blue:   #3a75c4;
    --dark:   #111827;
    --gray:   #6b7280;
    --light:  #f9fafb;
    --border: #e5e7eb;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: #fff; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* NAV */
nav {
    position: sticky; top: 0; z-index: 100;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 90px;
}
.nav-logo img { height: 90px; }
.nav-links { display: flex; align-items: center; gap: 2rem; font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: var(--green); }
.btn-don {
    background: var(--green); color: #fff;
    padding: 0.5rem 1.2rem; border-radius: 4px;
    font-weight: 600; font-size: 0.85rem;
    transition: background 0.2s;
}
.btn-don:hover { background: #007a4a; color: #fff; }

/* TRICOLOR */
.tricolor { display: flex; height: 3px; }
.tricolor span { flex: 1; }
.tricolor .t-green  { background: var(--green); }
.tricolor .t-yellow { background: var(--yellow); }
.tricolor .t-blue   { background: var(--blue); }

/* SECTIONS */
.section { padding: 4rem 2rem; }
.section-light { background: var(--light); }
.container { max-width: 1100px; margin: 0 auto; }

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}
.section-subtitle { color: var(--gray); margin-bottom: 2.5rem; font-size: 0.95rem; }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.card {
    border: 1px solid var(--border); border-radius: 6px;
    overflow: hidden; transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-img-placeholder { width: 100%; height: 200px; background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%); }
.card-body { padding: 1.25rem; }
.card-title { font-family: 'Bebas Neue', sans-serif; font-weight: 500; font-size: 0.95rem; margin-bottom: 0.5rem; }
.card-text { color: var(--gray); font-size: 0.875rem; line-height: 1.5; }
.card-footer { padding: 1rem 1.25rem; border-top: 1px solid var(--border); }

/* PROGRESS */
.progress-label { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--gray); margin-bottom: 0.3rem; }
.progress-bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--green); border-radius: 3px; }

/* HERO */
.hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 60%, #0d3320 100%);
    color: #fff; padding: 6rem 2rem; text-align: center;
}
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    letter-spacing: 8px;
    line-height: 1;
}
.hero-title .c { color: var(--green); }
.hero-title .s { color: var(--yellow); }
.hero-title .m { color: var(--blue); }
.hero-sub { font-size: 1.05rem; font-weight: 300; margin: 1.25rem auto 2rem; opacity: 0.85; max-width: 600px; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn { padding: 0.75rem 1.75rem; border-radius: 4px; font-weight: 600; font-size: 0.9rem; cursor: pointer; display: inline-block; transition: all 0.2s; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: #007a4a; }
.btn-outline { border: 2px solid rgba(255,255,255,0.6); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #2d5ea3; }

/* STATS */
.stats { display: flex; gap: 3rem; flex-wrap: wrap; justify-content: center; padding: 3rem 2rem; border-bottom: 1px solid var(--border); }
.stat { text-align: center; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.2rem; }
.stat-green  { color: var(--green); }
.stat-yellow { color: var(--yellow); }
.stat-blue   { color: var(--blue); }

/* PAGE HEADER */
.page-header { background: var(--light); padding: 3rem 2rem 2rem; border-bottom: 1px solid var(--border); }
.page-header h1 { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; font-weight: 600; letter-spacing: 1px; }
.breadcrumb { font-size: 0.85rem; color: var(--gray); margin-bottom: 0.5rem; }
.breadcrumb a:hover { color: var(--green); }

/* FORMS */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 500; font-size: 0.875rem; margin-bottom: 0.4rem; }
.form-control {
    width: 100%; padding: 0.625rem 0.875rem;
    border: 1px solid var(--border); border-radius: 4px;
    font-family: inherit; font-size: 0.9rem;
}
.form-control:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,158,96,0.1); }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ALERTS */
.alert { padding: 1rem 1.25rem; border-radius: 4px; margin-bottom: 1rem; font-size: 0.9rem; }
.alert-success { background: #d1fae5; color: #065f46; }
.alert-error   { background: #fee2e2; color: #991b1b; }

/* FOOTER */
footer { background: var(--dark); color: #9ca3af; padding: 3rem 2rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto 2rem; }
.footer-title { font-family: 'Bebas Neue', sans-serif; color: #fff; font-weight: 500; margin-bottom: 1rem; font-size: 0.9rem; letter-spacing: 0.5px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; font-size: 0.875rem; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid #374151; padding-top: 1.5rem; text-align: center; font-size: 0.8rem; max-width: 1100px; margin: 0 auto; }

@media (max-width: 640px) {
    .nav-links { display: none; }
    .hero { padding: 4rem 1.5rem; }
    .section-title { font-size: 1.8rem; }
}
