:root {
    --blue: #02b1db;
    --green: #ffcc07;
    --yellow: #ffcc07;
    --dark: #062047;
    --text: #0e1a2b;
    --muted: #5f6d80;
    --white: #ffffff;
    --shadow: 0 16px 40px rgba(2, 177, 219, 0.22);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 8%, rgba(255, 204, 7, 0.24) 0, transparent 26%),
        radial-gradient(circle at 92% 14%, rgba(2, 177, 219, 0.16) 0, transparent 28%),
        linear-gradient(150deg, #f4fcff 0%, #eefcff 58%, #fffef5 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

#particles-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.76);
    border-bottom: 1px solid rgba(2, 177, 219, 0.14);
}

.nav {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
}

.logo-image {
    display: block;
    width: auto;
    height: 78px;
    object-fit: contain;
}

.menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.1rem;
}

.menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

.menu a:hover {
    color: var(--blue);
    transform: translateY(-1px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 0.82rem 1.35rem;
    background: linear-gradient(130deg, var(--blue), #0289aa);
    color: var(--white);
    font-family: "Sora", sans-serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
    box-shadow: var(--shadow);
}

.btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.04);
}

.btn-sm {
    padding: 0.58rem 1rem;
}

.menu .btn {
    background: linear-gradient(130deg, var(--blue), #017c99);
    color: var(--white);
    border: 2px solid rgba(2, 177, 219, 0.55);
}

.menu .btn:hover {
    background: linear-gradient(130deg, var(--yellow), #f3be00);
    color: var(--dark);
    border-color: rgba(255, 204, 7, 0.95);
    box-shadow: 0 14px 28px rgba(255, 204, 7, 0.35);
    filter: none;
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid rgba(2, 177, 219, 0.34);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--blue);
    box-shadow: 0 12px 28px rgba(2, 177, 219, 0.2);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: rgba(2, 177, 219, 0.1);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    background: var(--dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

main {
    padding-bottom: 4rem;
}

.hero {
    min-height: calc(100vh - 96px);
    position: relative;
    margin-top: 0;
    padding: 2rem 0 2.3rem;
    background: url("../../uploads/fundoerick.png") center center / cover no-repeat;
    border-top: 0;
    border-bottom: 1px solid rgba(2, 177, 219, 0.14);
    overflow: hidden;
}

.hero-inner {
    min-height: inherit;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 2rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, rgba(255, 255, 255, 0.54) 24%, rgba(243, 252, 255, 0.44) 62%, rgba(255, 204, 7, 0.16) 100%);
    z-index: 0;
}

.hero-content,
.hero-card {
    position: relative;
    z-index: 1;
}

.tagline,
.section-label {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.76rem;
    color: #d19a00;
    font-weight: 700;
}

.hero h1 {
    margin-top: 0.75rem;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.7rem);
    line-height: 1.04;
    color: var(--dark);
}

.hero h1 span {
    color: var(--blue);
    text-shadow: 0 10px 35px rgba(2, 177, 219, 0.25);
}

.hero-text {
    margin-top: 1.2rem;
    max-width: 52ch;
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-card {
    position: relative;
    border-radius: 22px;
    padding: 2rem 1.4rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(2, 177, 219, 0.14);
    box-shadow: 0 20px 46px rgba(7, 27, 72, 0.16);
    overflow: hidden;
}

.hero-card h3 {
    font-family: "Sora", sans-serif;
    color: var(--dark);
    margin-bottom: 1rem;
}

.hero-card ul {
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.hero-card li {
    position: relative;
    padding-left: 1.2rem;
    color: #223247;
}

.hero-card li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 99px;
    position: absolute;
    left: 0;
    top: 0.58rem;
    background: linear-gradient(120deg, var(--blue), var(--yellow));
}

.glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.35;
}

.glow-blue {
    width: 130px;
    height: 130px;
    background: var(--blue);
    top: -60px;
    right: -40px;
}

.glow-green {
    width: 110px;
    height: 110px;
    background: var(--yellow);
    bottom: -40px;
    left: -30px;
}

section {
    margin-top: 2.8rem;
}

.about,
.results,
.contact,
.proposals,
.agenda,
.social {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(2, 177, 219, 0.12);
    border-radius: 22px;
    padding: 2rem 1.5rem;
    box-shadow: 0 14px 34px rgba(8, 31, 79, 0.09);
}

.about-title h2,
.section-head h2,
.contact h2 {
    margin-top: 0.36rem;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.45rem, 2.5vw, 2.25rem);
    color: var(--dark);
}

.about-grid {
    margin-top: 1.2rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-grid article {
    padding: 1.1rem;
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(2, 177, 219, 0.1), rgba(255, 204, 7, 0.16));
}

.about-grid h3 {
    font-family: "Sora", sans-serif;
    color: var(--dark);
    margin-bottom: 0.45rem;
}

.about-grid p {
    color: #314259;
}

.cards-grid {
    margin-top: 1.35rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proposal-card {
    position: relative;
    overflow: hidden;
    padding: 1.2rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(2, 177, 219, 0.14);
    transform-style: preserve-3d;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.proposal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(2, 177, 219, 0.11), rgba(2, 177, 219, 0.08), rgba(255, 204, 7, 0.16));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.proposal-card:hover {
    transform: translateY(-7px) rotateX(3deg);
    box-shadow: 0 18px 38px rgba(6, 36, 92, 0.19);
}

.proposal-card:hover::before {
    opacity: 1;
}

.proposal-card h3 {
    font-family: "Sora", sans-serif;
    color: var(--dark);
    margin-bottom: 0.5rem;
    position: relative;
}

.proposal-card p {
    color: #34455d;
    position: relative;
}

.stats-grid {
    margin-top: 1.25rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
    padding: 1.2rem;
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(2, 177, 219, 0.09), rgba(255, 204, 7, 0.14));
    border: 1px solid rgba(2, 177, 219, 0.12);
    text-align: center;
}

.counter {
    font-family: "Sora", sans-serif;
    display: block;
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    color: var(--blue);
    font-weight: 800;
}

.stat-card p {
    color: #2d3d53;
    margin-top: 0.4rem;
}

.timeline {
    margin-top: 1.2rem;
    display: grid;
    gap: 0.85rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(2, 177, 219, 0.13);
    padding: 1rem;
}

.timeline-date {
    font-family: "Sora", sans-serif;
    color: #cf9b00;
    font-weight: 700;
}

.timeline-item h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
    color: var(--dark);
}

.timeline-item p {
    margin-top: 0.3rem;
    color: #3b4a60;
}

.timeline-item a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

.timeline-item a:hover {
    text-decoration: underline;
}

.social-grid {
    margin-top: 1.2rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-card {
    background: #fff;
    border: 1px solid rgba(2, 177, 219, 0.14);
    border-radius: 16px;
    padding: 0.75rem;
    display: grid;
    gap: 0.6rem;
}

.social-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.social-card h3 {
    font-family: "Sora", sans-serif;
    color: var(--dark);
}

.social-card-head a {
    text-decoration: none;
    color: var(--blue);
    font-weight: 700;
    font-size: 0.9rem;
}

.social-card-head a:hover {
    text-decoration: underline;
}

.social-embed {
    width: 100%;
    min-height: 240px;
    border: 1px solid rgba(2, 177, 219, 0.16);
    border-radius: 12px;
    padding: 0.5rem;
    display: block;
    overflow: visible;
    background: #fff;
}

.social-embed .twitter-tweet,
.social-embed .tiktok-embed,
.social-embed .instagram-media {
    margin: 0 auto !important;
    display: block !important;
}

.social-embed .twitter-tweet {
    max-width: 520px;
}

.social-embed iframe {
    max-width: 100% !important;
}


.social-empty {
    min-height: 90px;
    display: grid;
    place-items: center;
    text-align: center;
    color: #3c4f67;
    background: linear-gradient(160deg, rgba(2, 177, 219, 0.08), rgba(255, 204, 7, 0.14));
    border-radius: 12px;
    padding: 0.8rem;
}

.contact {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.2rem;
}

.contact-info p {
    margin-top: 0.85rem;
    color: #34465f;
}

.contact-info ul {
    margin-top: 1rem;
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.contact-info li {
    padding: 0.72rem 0.9rem;
    border-radius: 11px;
    background: rgba(2, 177, 219, 0.08);
    color: #1f3149;
}

.contact-form {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(2, 177, 219, 0.14);
    padding: 1rem;
    display: grid;
    gap: 0.8rem;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
    font-weight: 600;
    color: #253851;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    font: inherit;
    border-radius: 10px;
    border: 1px solid rgba(2, 177, 219, 0.22);
    padding: 0.7rem 0.85rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(2, 177, 219, 0.14);
}

.form-feedback {
    padding: 0.68rem 0.8rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
}

.form-feedback.success {
    color: #0f5d43;
    background: rgba(255, 204, 7, 0.24);
}

.form-feedback.error {
    color: #872f2f;
    background: rgba(239, 93, 93, 0.2);
}

.footer {
    margin-top: 2rem;
    border-top: 1px solid rgba(2, 177, 219, 0.12);
    background: rgba(255, 255, 255, 0.74);
}

.footer .container {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer p {
    color: #364c68;
    font-size: 0.92rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-legal a {
    text-decoration: none;
    color: #274564;
    font-weight: 700;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--blue);
    text-decoration: underline;
}

.footer-social a {
    text-decoration: none;
    color: var(--blue);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(2, 177, 219, 0.28);
    background: rgba(2, 177, 219, 0.08);
    transition: color 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.footer-social a:hover {
    color: var(--dark);
    background: rgba(255, 204, 7, 0.35);
    border-color: rgba(255, 204, 7, 0.7);
}

.policy-main {
    padding: 2rem 0 2.8rem;
}

.policy-card {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(2, 177, 219, 0.15);
    border-radius: 20px;
    padding: 1.35rem;
    box-shadow: 0 16px 36px rgba(7, 32, 81, 0.1);
}

.policy-card h1 {
    font-family: "Sora", sans-serif;
    color: var(--dark);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.policy-card h2 {
    margin-top: 1.1rem;
    font-family: "Sora", sans-serif;
    color: var(--dark);
    font-size: 1.15rem;
}

.policy-card p,
.policy-card li {
    color: #2f4663;
    line-height: 1.58;
}

.policy-card ul {
    margin-top: 0.55rem;
    padding-left: 1rem;
}

.policy-actions {
    margin-top: 1.2rem;
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.24s;
}

.delay-3 {
    transition-delay: 0.36s;
}

@media (max-width: 1020px) {
    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 2.5rem;
    }

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

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

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

    .social-grid {
        grid-template-columns: 1fr;
    }

    .contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .menu-toggle {
        display: block;
    }

    .menu {
        position: absolute;
        top: 96px;
        right: 4%;
        width: min(260px, 92%);
        display: grid;
        gap: 0.6rem;
        padding: 1rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(2, 177, 219, 0.16);
        box-shadow: 0 22px 40px rgba(8, 29, 74, 0.2);
        transform: translateY(-20px) scale(0.96);
        transform-origin: top right;
        opacity: 0;
        pointer-events: none;
        transition: all 0.28s ease;
    }

    .logo-image {
        height: 64px;
    }

    .menu.open {
        transform: translateY(0) scale(1);
        opacity: 1;
        pointer-events: all;
    }

    .menu a {
        padding: 0.45rem 0.2rem;
    }

    .about-grid,
    .cards-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .footer .container {
        justify-content: center;
        text-align: center;
    }

    .footer-legal {
        width: 100%;
        justify-content: center;
    }

    .social-card-head {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-embed {
        display: flex;
        justify-content: center;
    }

    .social-embed {
        min-height: 200px;
        padding: 0.4rem;
    }

    .social-embed .twitter-tweet,
    .social-embed .tiktok-embed,
    .social-embed .instagram-media {
        max-width: 100% !important;
    }

    .social-card {
        padding: 0.6rem;
        gap: 0.5rem;
    }

    .social-card h3 {
        font-size: 1rem;
    }

    .social-card-head a {
        font-size: 0.85rem;
    }

    .social-empty {
        min-height: 80px;
        padding: 0.6rem;
    }
}
