/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {font-family: 'Segoe UI', Arial, sans-serif;color: #222;background: #fff}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
/* ── Header ────────────────────────────────────────────────────────────────── */
header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}
/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-wrap img { height: 100px; width: auto; }
.logo-wrap { display: flex; align-items: center; gap: 8px; }
.logo-wrap-1 img { height: 84px; width: auto; }
/* Nav */
nav { display: flex; align-items: center; gap: 6px; }
nav a {
    padding: 6px 14px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #222;
    border-radius: 4px;
    transition: color 0.2s;
    white-space: nowrap;
}
nav a:hover { color: #e65c00; }
nav a.active { color: #e65c00; border-bottom: 2px solid #e65c00; }
/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    min-width: 160px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    z-index: 200;
    overflow: hidden;
}
.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 0.88rem;
    border-radius: 0;
}
.dropdown-menu a:hover { background: #fff5ee; color: #e65c00; }
.dropdown:hover .dropdown-menu { display: block; }
/* Registration button */
.btn-register {
    background: #e65c00;
    color: #fff !important;
    padding: 9px 22px !important;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.btn-register:hover { background: #bf4900 !important; color: #fff !important; }
/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: #333; display: block; border-radius: 2px; transition: 0.3s; }
/* ── Banner ─────────────────────────────────────────────────────────────────── */
.page-banner {
    width: 100%;
    max-height:490px;
    overflow: hidden;
}
.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ── Main content ───────────────────────────────────────────────────────────── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
}
/* ── Section titles ─────────────────────────────────────────────────────────── */
.section-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #c0392b;
    text-align: left;
    margin-bottom: 12px;
}
.section-subtitle {
    font-size: 1.9rem;
    font-weight: 600;
    color: #1a237e;
    text-align: left;
    margin-bottom: 28px;
}
/* ── Event info box (home) ──────────────────────────────────────────────────── */
.event-box {
    background: #fff8f5;
    border: 2px solid #e65c00;
    border-radius: 10px;
    padding: 20px 30px;
    display: inline-block;
    margin: 0 auto 36px;
    text-align: center;
}
.event-box p { font-size: 1.05rem; font-weight: 600; color: #333; margin-bottom: 4px; }
.event-box .event-label { font-size: 0.85rem; color: #888; font-weight: 500; margin-bottom: 8px; }
.event-center { text-align: center; }
/* ── Body text ──────────────────────────────────────────────────────────────── */
.body-text p {
    font-size: 0.97rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}
/* ── Gallery grid ───────────────────────────────────────────────────────────── */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 32px 0;
}
.gallery img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.gallery img:hover { transform: scale(1.03); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
/* ── Objectives section ─────────────────────────────────────────────────────── */
.objectives {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 36px 40px;
    margin: 32px 0;
}
.objectives h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
}
.objectives ol { padding-left: 22px; }
.objectives ol li {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 14px;
}

/* ── Initiatives section ────────────────────────────────────────────────────── */
.initiatives-section { padding: 36px 0; }
.initiatives-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 24px;
    text-align: center;
}
.initiatives-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
}
.initiatives-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: box-shadow 0.2s;
    background: #fff;
}
.initiatives-logos a:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.initiatives-logos img { height: 60px; width: auto; object-fit: contain; }

/* ── Page title block ───────────────────────────────────────────────────────── */
.page-title-block {
    background:#3f7652;
    /* background: linear-gradient(135deg, #1a237e 0%, #283593 100%); */
    color: #fff;
    padding: 30px 24px;
    text-align: center;
}
.page-title-block h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.page-title-block p { font-size: 1rem; opacity: 0.85; }

/* ── About page ─────────────────────────────────────────────────────────────── */
.about-banner { width: 100%; max-height: 420px; overflow: hidden; }
.about-banner img { width: 100%; height: 420px; object-fit: cover; }

/* ── Brochure page ──────────────────────────────────────────────────────────── */
.brochure-wrap {
    text-align: center;
    padding: 60px 24px;
}
.pdf-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 48px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s;
    color: #e65c00;
    font-weight: 600;
    font-size: 1rem;
}
.pdf-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.14); }
.pdf-card img { width: 80px; }

/* ── Slideshow / Image slider ───────────────────────────────────────────────── */
.slider-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 32px 0;
    background: #000;
}
.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}
.slider-track img {
    min-width: 100%;
    width: 100%;
    height: 400px;
    object-fit: cover;
    flex-shrink: 0;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.slider-btn:hover { background: rgba(0,0,0,0.7); }
.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

/* ── Initiative page ────────────────────────────────────────────────────────── */
.initiative-hero {
    background: linear-gradient(135deg, #bf360c 0%, #e65c00 100%);
    color: #fff;
    padding: 48px 24px;
    text-align: center;
}
.initiative-hero h1 { font-size: 2rem; font-weight: 700; margin-bottom: 6px; }

.more-info-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 36px;
    background: #e65c00;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s;
}
.more-info-btn:hover { background: #bf4900; }

/* ── Contact page ───────────────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-info h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 16px;
}
.contact-info p { font-size: 0.95rem; line-height: 2; color: #333; }
.contact-info .location { margin-top: 28px; }
.contact-info .location strong { color: #1a237e; font-size: 1rem; }

.contact-form h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #cfd8dc;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: #1a237e; }
.contact-form textarea { height: 100px; resize: vertical; }
.contact-form button {
    background: #3f7652;
    color: #fff;
    border: none;
    padding: 12px 36px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover { background: #3f7652; }

.map-embed { margin-top: 28px; border-radius: 8px; overflow: hidden; }
.map-embed iframe { width: 100%; height: 280px; border: 0; }

/* Contact alerts */
.contact-alert {
    padding: 14px 16px;
    border-radius: 7px;
    margin-bottom: 18px;
    font-size: 0.9rem;
    line-height: 1.7;
}
.contact-alert--success {
    background: #e8f5e9;
    color: #1b5e20;
    border: 1px solid #a5d6a7;
}
.contact-alert--error {
    background: #ffebee;
    color: #b71c1c;
    border: 1px solid #ef9a9a;
}
.contact-alert--error p { margin: 0 0 4px; }
.contact-alert--error p:last-child { margin-bottom: 0; }

/* ── CEP / NLC sections ─────────────────────────────────────────────────────── */
.cep-section {
    background: #f5f7ff;
    border-radius: 10px;
    padding: 36px 40px;
    margin: 32px 0;
}
.cep-section h2 { font-size: 1.3rem; font-weight: 700; color: #1a237e; margin-bottom: 18px; }
.cep-section ul { padding-left: 22px; }
.cep-section ul li { font-size: 0.95rem; line-height: 1.85; color: #333; margin-bottom: 10px; }

/* ── Footer ─────────────────────────────────────────────────────────────────── */
footer {
    background: #1c1c1c;
    color: #ccc;
    padding: 48px 24px 24px;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}
.footer-links h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; font-weight: 600; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a { color: #bbb; font-size: 0.88rem; transition: color 0.2s; }
.footer-links ul li a:hover { color: #e65c00; }

.footer-about h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; font-weight: 600; }
.footer-about p { font-size: 0.875rem; line-height: 1.8; color: #aaa; }

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 18px;
    text-align: center;
    font-size: 0.82rem;
    color: #777;
    max-width: 1100px;
    margin: 0 auto;
}
/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
    nav { display: none; flex-direction: column; align-items: stretch; position: absolute; top: 72px; left: 0;
          width: 100%; background: #fff; border-top: 1px solid #eee;
          padding: 16px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
    nav.open { display: flex; }
    nav a { padding: 10px 24px; width: 100%; }
    .dropdown { width: 100%; }
    .dropdown > a { display: block; width: 100%; }
    .dropdown-menu { position: static; box-shadow: none; border: none;
                     background: #f9f9f9; display: none !important; }
    .dropdown.open .dropdown-menu { display: block !important; }
    .hamburger { display: flex; }
    .slider-track img { height: 220px; }
    .initiative-hero h1 { font-size: 1.5rem; }
    .page-title-block h1 { font-size: 1.6rem; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .form-row-2 { grid-template-columns: 1fr; }
    .cep-section { padding: 24px 20px; }
    .objectives { padding: 24px 20px; }
    .container { padding: 32px 16px; }
}
@media (max-width: 480px) {
    .gallery { grid-template-columns: 1fr 1fr; }
    .header-inner { padding: 0 16px; }
}