:root {
    --navy: #07113b;
    --blue: #08278b;
    --green: #1da33f;
    --yellow: #ffd90a;
    --paper: #fffdf6;
    --soft-green: #dff3df;
    --muted: #4d596f;
    --line: rgba(7, 17, 59, 0.12);
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--navy);
    background:
        radial-gradient(circle at 6% 30%, rgba(29, 163, 63, 0.22), transparent 25%),
        radial-gradient(circle at 86% 5%, rgba(255, 217, 10, 0.34), transparent 30%),
        var(--paper);
    line-height: 1.55;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 24px clamp(20px, 5vw, 56px);
    background: rgba(255, 253, 246, 0.86);
    backdrop-filter: blur(14px);
}

.brand,
.nav,
.follow-button {
    font-weight: 800;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    text-decoration: none;
}

.flag-dots {
    display: inline-flex;
    gap: 5px;
}

.flag-dots i {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green);
}

.flag-dots i:nth-child(2) {
    background: var(--yellow);
}

.flag-dots i:nth-child(3) {
    background: var(--blue);
}

.nav {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 3vw, 34px);
    font-size: 14px;
}

.nav a {
    text-decoration: none;
}

.follow-button {
    justify-self: end;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: clamp(34px, 7vw, 86px);
    align-items: center;
    min-height: calc(100vh - 88px);
    padding: clamp(34px, 6vw, 76px) clamp(20px, 5vw, 56px) 76px;
}

.badge {
    display: inline-flex;
    margin: 0 0 24px;
    padding: 8px 18px;
    border: 1px solid rgba(29, 163, 63, 0.28);
    border-radius: 999px;
    background: rgba(29, 163, 63, 0.1);
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 5.2vw, 62px);
    line-height: 0.95;
    letter-spacing: 0;
}

h1 span,
h1 mark {
    display: block;
}

h1 .green {
    color: var(--green);
}

h1 mark {
    width: max-content;
    max-width: 100%;
    padding: 0 18px 4px;
    color: var(--blue);
    background: var(--yellow);
    font-style: italic;
}

.lead {
    max-width: 620px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.primary-button,
.outline-button,
.event-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
}

.primary-button {
    background: var(--green);
    color: var(--white);
}

.outline-button {
    border: 2px solid var(--blue);
    color: var(--blue);
    background: transparent;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    max-width: 520px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.stats strong {
    display: block;
    color: var(--blue);
    font-size: 34px;
    line-height: 1;
}

.stats div:first-child strong {
    color: var(--green);
}

.stats span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0;
}

.hero-media {
    position: relative;
}

.hero-media img {
    display: block;
    width: 100%;
    border: 8px solid var(--white);
    border-radius: 28px;
    box-shadow: 0 26px 64px rgba(7, 17, 59, 0.16);
}

.hero-card {
    position: absolute;
    left: -30px;
    bottom: -24px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 210px;
    padding: 16px 20px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(7, 17, 59, 0.14);
}

.hero-card span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--blue);
    font-weight: 900;
}

.hero-card strong,
.hero-card small {
    display: block;
}

.hero-card small {
    color: var(--muted);
}

.flag-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 12px;
}

.flag-strip span:nth-child(1) {
    background: var(--green);
}

.flag-strip span:nth-child(2) {
    background: var(--yellow);
}

.flag-strip span:nth-child(3) {
    background: var(--blue);
}

.section {
    padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 56px);
}

.section-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(30px, 6vw, 84px);
    align-items: start;
}

h2 {
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: 0;
}

.copy-stack {
    color: var(--muted);
    font-size: 20px;
}

.copy-stack p {
    margin-bottom: 18px;
}

.pillars-section {
    background: var(--white);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.pillar-card {
    min-height: 250px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(145deg, #ffffff, #fbfff6);
}

.pillar-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--blue);
    font-weight: 900;
}

.pillar-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.pillar-card p {
    color: var(--muted);
}

.color-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.color-row div {
    padding: 18px;
    border-radius: 18px;
    color: var(--white);
    background: var(--green);
}

.color-row div:nth-child(2) {
    color: var(--navy);
    background: var(--yellow);
}

.color-row div:nth-child(3) {
    background: var(--blue);
}

.color-row div:nth-child(4) {
    color: var(--navy);
    background: var(--paper);
    border: 1px solid var(--line);
}

.color-row b,
.color-row span {
    display: block;
}

.mission-section {
    padding: clamp(78px, 10vw, 132px) clamp(20px, 5vw, 56px);
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 17, 59, 0.96), rgba(8, 39, 139, 0.9)),
        radial-gradient(circle at 12% 20%, rgba(255, 217, 10, 0.35), transparent 28%);
}

.mission-inner {
    max-width: 900px;
}

.mission-inner .section-kicker {
    color: var(--yellow);
}

.mission-inner p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 21px;
}

.mission-inner small {
    display: inline-flex;
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.event-list {
    display: grid;
    gap: 16px;
}

.event-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(7, 17, 59, 0.06);
}

.event-date {
    text-align: center;
    color: var(--blue);
}

.event-date strong {
    display: block;
    font-size: 28px;
}

.event-date span {
    color: var(--green);
    font-weight: 900;
}

.event-card h3 {
    margin-bottom: 6px;
    font-size: 24px;
}

.event-card p {
    margin-bottom: 4px;
    color: var(--muted);
}

.event-card small {
    color: var(--muted);
}

.event-card a {
    min-height: 46px;
    border: 2px solid var(--green);
    color: var(--green);
}

.cta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 56px);
    color: var(--white);
    background: var(--green);
}

.cta-section div {
    max-width: 760px;
}

.cta-section p {
    font-size: 20px;
}

.cta-section a:not(.primary-button) {
    font-weight: 900;
}

.cta-section .primary-button {
    background: var(--yellow);
    color: var(--blue);
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 26px clamp(20px, 5vw, 56px);
    color: var(--muted);
    background: var(--paper);
}

.footer p {
    margin: 0;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    font-size: 26px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(7, 17, 59, 0.22);
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .nav {
        grid-column: 1 / -1;
        order: 3;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero,
    .two-column {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 34px;
    }

    .hero-media {
        max-width: 680px;
    }

    .pillar-grid,
    .color-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .site-header {
        padding: 18px 18px 14px;
    }

    .brand {
        font-size: 18px;
    }

    .follow-button {
        padding: 9px 14px;
    }

    h1 {
        font-size: 44px;
    }

    h1 mark {
        width: auto;
        padding-left: 10px;
        padding-right: 10px;
    }

    .lead {
        font-size: 18px;
    }

    .stats,
    .pillar-grid,
    .color-row {
        grid-template-columns: 1fr;
    }

    .hero-card {
        left: 14px;
        bottom: -18px;
    }

    .event-card,
    .cta-section,
    .footer {
        align-items: flex-start;
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .event-date {
        text-align: left;
    }
}
