@font-face {
    font-family: 'Stone Sans Regular';
    src: url('/fonts/Stone%20Sans%20Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --viva-blue: #1d94d2;
    --viva-orange: #da633b;
    --viva-white: #ffffff;
    --viva-bg: #f0f0f0;
    --viva-dark: #07131d;
    --menu-overlay-height: 130px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Stone Sans Regular', 'Figtree', sans-serif;
    background: var(--viva-bg);
    color: #163447;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
}

.container {
    width: 100%;
    margin: 0 auto;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="fade-left"] {
    transform: translateX(-24px);
}

[data-reveal="fade-right"] {
    transform: translateX(24px);
}

[data-reveal="zoom-in"] {
    transform: scale(0.96);
}

[data-reveal="fade-left"].is-revealed,
[data-reveal="fade-right"].is-revealed,
[data-reveal="zoom-in"].is-revealed {
    transform: translateX(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero::before,
    .hero::after,
    .stats::after,
    .proposal-body::after,
    .contact-showcase::after {
        animation: none;
    }
}

@keyframes viva-gradient-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes viva-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -18px, 0) scale(1.04);
    }
}

@keyframes viva-wave-shift {
    0% {
        transform: translateX(-2%);
    }

    50% {
        transform: translateX(2%);
    }

    100% {
        transform: translateX(-2%);
    }
}

.top-spacer {
    height: 0;
}

.main-nav {
    width: min(94%, 1760px);
    margin: 26px auto 0;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 53, 75, 0.08);
    border-radius: 16px;
    min-height: 78px;
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 28px;
    gap: 14px;
    box-shadow: 0 5px 14px rgba(7, 19, 29, 0.12);
}

.main-nav .brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--viva-blue);
    font-weight: 800;
    font-size: clamp(18px, 1.35vw, 32px);
    line-height: 1;
    white-space: nowrap;
}

.main-nav .brand img {
    width: 50px;
    height: auto;
    display: block;
}

.main-nav nav {
    flex: 1 1 auto;
    min-width: 0;
    margin-left: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    justify-content: center;
    white-space: nowrap;
}

.main-nav li {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.main-nav li+li::before {
    content: '|';
    color: var(--viva-blue);
    margin: 0 10px;
    font-weight: 700;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--viva-blue);
    font-weight: 700;
    font-size: clamp(12px, 1.05vw, 24px);
    line-height: 1;
    letter-spacing: 0.01em;
    transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--viva-orange);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(17, 53, 75, 0.22);
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(7, 19, 29, 0.12);
    background: #f7fbff;
    border-color: rgba(29, 148, 210, 0.35);
}

.nav-toggle span {
    width: 20px;
    height: 2.5px;
    border-radius: 999px;
    background: var(--viva-blue);
    display: block;
    box-shadow: 0 6px 0 var(--viva-blue), 0 -6px 0 var(--viva-blue);
}

.hero-toolbar {
    position: absolute;
    top: calc(var(--menu-overlay-height) + 12px);
    left: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9;
}

.hamburger {
    width: 42px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.28);
}

.hamburger span {
    width: 22px;
    height: 3px;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 7px 0 #fff, 0 -7px 0 #fff;
    display: block;
}

.affiliate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.93);
    border: 2px solid #d9d9d9;
    color: var(--viva-orange);
    font-weight: 800;
    font-size: clamp(14px, 1.6vw, 34px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.affiliate-btn:hover,
.affiliate-btn:focus-visible {
    transform: translateY(-3px);
    background: #fff;
    border-color: rgba(218, 99, 59, 0.5);
    box-shadow: 0 14px 28px rgba(7, 19, 29, 0.14);
}

.hero {
    position: relative;
    z-index: 1;
    margin-top: calc(-1 * var(--menu-overlay-height));
    min-height: 100vh;
    padding-top: var(--menu-overlay-height);
    background: #ffffff url('/img/viva/slider.png') center 58%/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -8% -6% auto -6%;
    height: 72%;
    background:
        radial-gradient(circle at 18% 30%, rgba(29, 148, 210, 0.34), transparent 28%),
        radial-gradient(circle at 84% 18%, rgba(218, 99, 59, 0.24), transparent 24%),
        radial-gradient(circle at 52% 74%, rgba(255, 255, 255, 0.18), transparent 34%);
    filter: blur(12px);
    opacity: 0.95;
    animation: viva-float 12s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.88) 5%,
            rgba(255, 255, 255, 0.58) 12%,
            rgba(255, 255, 255, 0.2) 20%,
            rgba(29, 148, 210, 0.2) 30%);
    background-size: 220% 220%;
    animation: viva-gradient-flow 18s ease infinite;
}

.hero-content {
    position: relative;
    z-index: 3;
    min-height: calc(100vh - var(--menu-overlay-height));
    display: flex;
    align-items: flex-end;
    padding: 0 0 42px 36px;
}

.hero-overlay {
    display: flex;
    align-items: flex-end;
    gap: clamp(14px, 2vw, 30px);
    max-width: min(94%, 1080px);
}

.hero-overlay-logo {
    width: clamp(118px, 16vw, 240px);
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 24px rgba(7, 19, 29, 0.22));
}

.hero-overlay-text {
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 7vw, 86px);
    font-weight: 800;
    line-height: 0.95;
    text-shadow: 0 8px 18px rgba(7, 19, 29, 0.24);
}

.hero-overlay-text span {
    display: block;
}

.hero-overlay-text span+span {
    padding-top: 10px;
}

.orange-divider {
    background: var(--viva-orange);
    border-top: 0;
    border-bottom: 0;
    height: 58px;
}

.about {
    background: #fff;
    padding: 15px 0 12px;
    position: relative;
    overflow: hidden;
}

.about>h2 {
    width: min(84%, 1280px);
    margin-left: auto;
    margin-right: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 18px;
    align-items: end;
    min-height: 560px;
    width: min(84%, 1280px);
    margin: 0 auto;
    background:
        radial-gradient(circle, rgba(29, 148, 210, 0.26) 2.2px, transparent 2.2px) 58% 46% / 26px 26px no-repeat,
        radial-gradient(circle, rgba(29, 148, 210, 0.16) 1.7px, transparent 1.7px) 58% 46% / 26px 26px no-repeat;
}

.about-copy {
    padding: 0 22px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about h2 {
    /* margin: 0 0 26px; */
    font-size: clamp(30px, 5.5vw, 66px);
    text-align: center;
    color: var(--viva-blue);
    font-weight: 800;
}

.about-copy p {
    margin: 0 0 22px;
    color: var(--viva-orange);
    font-size: clamp(15px, 1.55vw, 22px);
    line-height: 1.15;
    font-weight: 700;
}

.about-copy .blue-line {
    color: var(--viva-blue);
    font-size: clamp(25px, 3.5vw, 42px);
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1;
}

.about-photo {
    align-self: center;
    position: relative;
    min-height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo img {
    width: min(100%, 470px);
    max-height: 580px;
    object-fit: contain;
    display: block;
}

.movement {
    background: #fff;
    color: var(--viva-blue);
    text-align: center;
    padding: 56px 20px 48px;
}

.movement h3 {
    margin: 0;
    font-size: clamp(26px, 6.5vw, 47px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.stats {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f9fdff 0%, #58b6eb 100%);
    padding: 9px 0 14px;
}

.stats::before {
    content: '';
    position: absolute;
    left: -24px;
    bottom: -18px;
    width: min(42vw, 480px);
    height: min(28vw, 220px);
    background:
        radial-gradient(circle, rgba(110, 208, 255, 0.5) 4px, transparent 4px) 0 0 / 20px 20px,
        radial-gradient(circle, rgba(110, 208, 255, 0.3) 2.4px, transparent 2.4px) 10px 10px / 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.stats::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.28) 0 12%, transparent 32%),
        radial-gradient(circle at 86% 70%, rgba(218, 99, 59, 0.18) 0 10%, transparent 30%),
        linear-gradient(120deg, rgba(29, 148, 210, 0.1), rgba(255, 255, 255, 0.05), rgba(218, 99, 59, 0.08));
    background-size: 100% 100%, 100% 100%, 240% 240%;
    animation: viva-gradient-flow 16s ease infinite;
    opacity: 0.85;
    pointer-events: none;
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    width: min(72%, 1040px);
    margin: 0 auto;
}

.stat {
    background: #2f9de2;
    border-radius: 14px;
    padding: 6px 6px 5px;
    box-shadow: 0 8px 22px rgba(17, 53, 75, 0.18);
}

.stat-number {
    color: #fff;
    text-align: center;
    font-size: clamp(38px, 6.9vw, 80px);
    line-height: 0.95;
    font-weight: 800;
    margin: 2px 0 4px;
}

.stat-inner {
    background: #f2f2f2;
    border-radius: 11px;
    padding: 7px 5px 4px;
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-inner p {
    margin: 0 0 4px;
    color: var(--viva-orange);
    font-size: clamp(12px, 9.56vw, 18px);
    line-height: 1.12;
    text-align: center;
    font-weight: 700;
    padding: 15px;
}

.stat-inner img {
    width: 100%;
    height: 208px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.site-footer {
    background: #08263a;
    color: #d7edf9;
    padding: 20px 0;
    border-top: 4px solid var(--viva-orange);
}

.proposal {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.proposal-hero {
    width: 100%;
    aspect-ratio: 1276 / 832;
    background: url('/img/viva/armando2.png') center center / 100% 100% no-repeat,
    radial-gradient(circle, rgba(29, 148, 210, 0.2) 2px, transparent 2px) 18% 24% / 18px 18px,
    radial-gradient(circle, rgba(29, 148, 210, 0.14) 2px, transparent 2px) 78% 52% / 22px 22px,
    #fff;
    position: relative;
    display: grid;
    place-items: center;
    text-align: center;
    padding: clamp(18px, 3vw, 34px) 20px;
}

.proposal-hero h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 58px);
    line-height: 1.02;
    font-weight: 800;
    text-shadow: 0 4px 10px rgba(7, 19, 29, 0.09);
}

.proposal-divider {
    background: var(--viva-orange);
    border: 0;
    height: 16px;
    margin: 0;
}

.proposal-divider-blue {
    background: var(--viva-blue);
    border: 0;
    height: 16px;
    margin: 0;
}

.proposal-body {
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 74%);
    padding: 28px 0 52px;
    position: relative;
}

.proposal-body::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle, rgba(29, 148, 210, 0.18) 2px, transparent 2px) 20% 24% / 18px 18px,
        radial-gradient(circle, rgba(29, 148, 210, 0.14) 2px, transparent 2px) 80% 54% / 22px 22px;
    pointer-events: none;
    opacity: 0.65;
}

.proposal-body::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 160px;
    background: linear-gradient(90deg, rgba(29, 148, 210, 0.12), rgba(218, 99, 59, 0.1), rgba(29, 148, 210, 0.12));
    background-size: 220% 220%;
    animation: viva-wave-shift 14s ease-in-out infinite;
    opacity: 0.7;
    pointer-events: none;
}

.proposal-wrap {
    width: min(90%, 1200px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.proposal-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 34px;
    width: min(100%, 860px);
    margin: 0 auto 34px;
    justify-items: center;
}

.proposal-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: min(100%, 290px);
    transition: transform 0.25s ease, filter 0.25s ease;
}

.proposal-badge:hover,
.proposal-badge:focus-within {
    transform: translateY(-4px);
    filter: drop-shadow(0 14px 24px rgba(10, 42, 63, 0.12));
}

.proposal-badge img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    border: 2px solid rgba(29, 148, 210, 0.2);
    background: #fff;
    box-shadow: 0 10px 28px rgba(10, 42, 63, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.proposal-badge:hover img,
.proposal-badge:focus-within img {
    transform: scale(1.02);
    box-shadow: 0 18px 36px rgba(10, 42, 63, 0.18);
    border-color: rgba(29, 148, 210, 0.34);
}

.proposal-badge span {
    display: inline-flex;
    text-align: center;
    background: var(--viva-orange);
    color: #fff;
    font-weight: 800;
    font-size: clamp(14px, 1.7vw, 22px);
    line-height: 1;
    padding: 10px 20px 12px;
    border-radius: 999px;
    box-shadow: 0 10px 18px rgba(218, 99, 59, 0.28);
    width: fit-content;
    max-width: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.proposal-badge:hover span,
.proposal-badge:focus-within span {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(218, 99, 59, 0.34);
}

.proposal-title {
    margin: 0 auto 20px;
    text-align: center;
    color: var(--viva-orange);
    font-size: clamp(20px, 3.8vw, 36px);
    line-height: 1.04;
    font-weight: 800;
    max-width: 980px;
}

.proposal-lines {
    width: min(100%, 980px);
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.proposal-line {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(218, 99, 59, 0.22);
    border-radius: 999px;
    color: #b85737;
    text-align: right;
    font-size: clamp(13px, 2.15vw, 24px);
    font-weight: 700;
    line-height: 1.25;
    padding: 13px 24px;
    box-shadow: 0 8px 24px rgba(18, 61, 89, 0.08);
    position: relative;
    z-index: 1;
    padding: 20px;
}

.leaders {
    background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
    padding: 34px 0 42px;
    position: relative;
    overflow: hidden;
}

.leaders::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle, rgba(29, 148, 210, 0.18) 2px, transparent 2px) 10% 28% / 22px 22px,
        radial-gradient(circle, rgba(29, 148, 210, 0.11) 2px, transparent 2px) 82% 62% / 26px 26px;
    pointer-events: none;
}

.leaders-wrap {
    width: min(92%, 1180px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.leaders-wrap>h2 {
    margin: 0 0 18px;
    text-align: center;
    color: var(--viva-blue);
    font-size: clamp(36px, 6.2vw, 72px);
    font-weight: 800;
    line-height: 1;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.leader-card {
    background: #ffffff;
    border-radius: 30px;
    border: 2px solid rgba(29, 148, 210, 0.18);
    overflow: hidden;
    padding: 14px 14px 16px;
    box-shadow: 0 14px 28px rgba(10, 42, 63, 0.12);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.leader-card:hover,
.leader-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(29, 148, 210, 0.32);
    box-shadow: 0 20px 40px rgba(10, 42, 63, 0.16);
}

.leader-image-wrap {
    border-radius: 24px;
    background: linear-gradient(180deg, #7dc7ef 0%, #2191d5 100%);
    overflow: hidden;
    min-height: 260px;
}

.leader-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.leader-card:hover .leader-image-wrap img,
.leader-card:focus-within .leader-image-wrap img {
    transform: scale(1.03);
}

.leader-caption {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(29, 148, 210, 0.2);
    border-radius: 22px;
    padding: 14px 14px 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(14, 62, 95, 0.12);
}

.leader-title {
    margin: 0;
    color: var(--viva-blue);
    font-size: clamp(22px, 2.3vw, 48px);
    font-weight: 800;
    line-height: 1;
}

.leader-role {
    margin: 4px 0 0;
    color: var(--viva-orange);
    font-size: clamp(16px, 1.65vw, 36px);
    font-weight: 800;
    line-height: 1;
}

.participa {
    background: linear-gradient(180deg, #eef7ff 0%, #79c2ea 100%);
    padding: 30px 0 40px;
    position: relative;
    overflow: hidden;
}

.participa::before {
    content: '';
    position: absolute;
    left: -30px;
    bottom: -24px;
    width: min(60vw, 780px);
    height: min(42vw, 360px);
    background:
        radial-gradient(circle, rgba(63, 160, 225, 0.45) 9px, transparent 10px) 0 0 / 34px 34px,
        radial-gradient(circle, rgba(63, 160, 225, 0.28) 4px, transparent 5px) 17px 17px / 34px 34px;
    opacity: 0.8;
    pointer-events: none;
}

.participa-wrap {
    width: min(92%, 1180px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.participa-title {
    width: fit-content;
    margin: 0 auto 28px;
    background: #fff;
    border: 1px solid rgba(14, 62, 95, 0.1);
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(7, 19, 29, 0.12);
    padding: 10px 24px 12px;
    color: var(--viva-orange);
    font-size: clamp(36px, 4.6vw, 60px);
    line-height: 1;
    font-weight: 800;
    text-align: center;
}

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

.participa-card {
    background: #2f9de2;
    border-radius: 28px;
    padding: 14px 14px 16px;
    box-shadow: 0 14px 24px rgba(9, 46, 74, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.participa-card:hover,
.participa-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(9, 46, 74, 0.26);
    filter: saturate(1.03);
}

.participa-card h3 {
    margin: 0 0 10px;
    color: #fff;
    text-align: center;
    font-size: clamp(30px, 3.3vw, 54px);
    font-weight: 800;
    line-height: 1;
}

.participa-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.participa-card:hover img,
.participa-card:focus-within img {
    transform: scale(1.02);
}

.contact-showcase {
    position: relative;
    background: #efefef;
    border-top: 3px solid var(--viva-orange);
    padding: 34px 0 36px;
    overflow: hidden;
}

.contact-showcase::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 20px;
    width: min(60vw, 920px);
    height: min(34vw, 360px);
    background:
        radial-gradient(circle, rgba(29, 148, 210, 0.32) 10px, transparent 11px) 0 0 / 35px 35px,
        radial-gradient(circle, rgba(29, 148, 210, 0.2) 4px, transparent 5px) 17px 17px / 35px 35px;
    opacity: 0.72;
    pointer-events: none;
}

.contact-showcase::after {
    content: '';
    position: absolute;
    right: -8%;
    bottom: -10%;
    width: min(42vw, 560px);
    height: min(42vw, 560px);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.55), transparent 26%),
        radial-gradient(circle at 60% 60%, rgba(29, 148, 210, 0.28), transparent 40%),
        radial-gradient(circle at 45% 45%, rgba(218, 99, 59, 0.2), transparent 52%);
    filter: blur(10px);
    animation: viva-float 14s ease-in-out infinite;
    pointer-events: none;
}

.contact-wrap {
    width: min(92%, 1200px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(220px, 360px) 1fr;
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-brand {
    justify-self: center;
}

.contact-bubble {
    width: fit-content;
    background: #fff;
    color: var(--viva-orange);
    border: 2px solid var(--viva-blue);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 800;
    line-height: 1;
    font-style: italic;
    margin: 0 auto 10px;
    position: relative;
    box-shadow: 0 10px 16px rgba(7, 19, 29, 0.12);
}

.contact-bubble::after {
    content: '';
    position: absolute;
    left: 26%;
    bottom: -11px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-right: 2px solid var(--viva-blue);
    border-bottom: 2px solid var(--viva-blue);
    transform: rotate(45deg);
}

.contact-logo-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(7, 19, 29, 0.14);
    padding: 10px;
    width: min(100%, 320px);
    margin: 0 auto;
}

.contact-logo-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

.contact-copy h2 {
    margin: 0 0 16px;
    color: var(--viva-blue);
    font-size: clamp(52px, 7vw, 88px);
    line-height: 0.95;
    font-weight: 800;
    word-break: break-word;
}

.contact-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.social-chip {
    width: clamp(52px, 6vw, 80px);
    height: clamp(52px, 6vw, 80px);
    border-radius: 14px;
    background: #fff;
    border: 2px solid var(--viva-blue);
    color: var(--viva-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(9, 46, 74, 0.12);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.social-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 18px rgba(9, 46, 74, 0.16);
}

.social-chip svg {
    width: 56%;
    height: 56%;
    fill: currentColor;
}

.social-chip.round {
    border-radius: 999px;
}

.contact-party {
    color: var(--viva-blue);
    font-size: clamp(42px, 5vw, 78px);
    font-weight: 800;
    line-height: 1;
    margin-left: 10px;
    word-break: break-word;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0 28px;
}

.footer-brand {
    font-size: 20px;
    font-weight: 800;
}

.social-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 18px rgba(7, 19, 29, 0.16);
}

@media (max-width: 920px) {
    :root {
        --menu-overlay-height: 110px;
    }

    .main-nav {
        width: calc(100% - 20px);
        margin-top: 12px;
        padding: 10px 16px;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .main-nav nav {
        flex: 0 0 100%;
        width: 100%;
        margin-top: 0;
        overflow: hidden;
        background: #fff;
        border: 1px solid transparent;
        border-radius: 12px;
        padding: 0 12px;
        box-shadow: 0 0 0 rgba(7, 19, 29, 0);
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px) scale(0.98);
        transform-origin: top center;
        transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, padding 0.25s ease, margin-top 0.25s ease, max-height 0.25s ease;
    }

    .main-nav nav.is-open {
        margin-top: 8px;
        padding: 8px 12px;
        border-color: rgba(17, 53, 75, 0.1);
        box-shadow: 0 8px 18px rgba(7, 19, 29, 0.1);
        max-height: 70vh;
        overflow-y: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .main-nav li+li::before {
        content: none;
    }

    .main-nav a {
        font-size: clamp(17px, 2.8vw, 22px);
    }

    .main-nav .brand img {
        width: 50px;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-content {
        min-height: calc(100vh - var(--menu-overlay-height));
        padding: 0 0 26px 18px;
    }

    .hero-overlay-logo {
        width: clamp(102px, 18vw, 180px);
    }

    .hero-overlay-text {
        font-size: clamp(28px, 6.2vw, 56px);
    }

    .hero-toolbar {
        top: calc(var(--menu-overlay-height) + 10px);
        left: 16px;
    }

    .orange-divider {
        height: 44px;
    }

    .movement {
        padding: 38px 16px 34px;
    }

    .about>h2,
    .about-grid {
        width: min(92%, 1280px);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        background-position: 66% 44%;
        min-height: 0;
    }

    .about-copy {
        padding: 0 8px 10px;
    }

    .about-copy p {
        margin: 0 0 14px;
    }

    .about-photo {
        min-height: 0;
    }

    .about-photo img {
        width: min(100%, 360px);
        max-height: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        width: min(88%, 740px);
    }

    .proposal-badges {
        width: min(100%, 720px);
        gap: 18px 20px;
        margin: 0 auto 34px;
        justify-items: center;
    }

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

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

    .contact-copy h2 {
        font-size: clamp(36px, 9vw, 64px);
    }

    .contact-party {
        font-size: clamp(26px, 7vw, 52px);
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-copy {
        text-align: center;
    }

    .contact-social {
        justify-content: center;
    }

    .contact-party {
        margin-left: 0;
    }

    .proposal-badge {
        align-items: center;
    }

    .proposal-badge img {
        border-radius: 18px;
    }

    .proposal-line {
        border-radius: 18px;
    }
}

@media (max-width: 580px) {
    :root {
        --menu-overlay-height: 94px;
    }

    .top-spacer {
        height: 0;
    }

    .main-nav ul {
        gap: 8px;
    }

    .main-nav .brand {
        font-size: clamp(16px, 5vw, 22px);
    }

    .main-nav li+li::before {
        margin: 0 6px;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-toolbar {
        left: 10px;
        top: calc(var(--menu-overlay-height) + 8px);
    }

    .hero-content {
        padding: 0 0 16px 12px;
    }

    .hero-overlay {
        gap: 10px;
        max-width: 96%;
    }

    .hero-overlay-logo {
        width: clamp(86px, 24vw, 130px);
    }

    .hero-overlay-text {
        font-size: clamp(18px, 6vw, 24px);
        line-height: 0.94;
    }

    .movement h3 {
        font-size: clamp(22px, 9vw, 34px);
    }

    .hamburger {
        width: 36px;
        height: 30px;
    }

    .affiliate-btn {
        min-height: 34px;
        padding: 0 10px;
        border-width: 1px;
    }

    .hero-badge {
        width: 90px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        width: min(94%, 420px);
    }

    .proposal-hero {
        padding: 18px 16px;
        aspect-ratio: 4 / 3;
        background-size: cover;
    }

    .proposal-badges {
        grid-template-columns: 1fr;
        width: min(100%, 440px);
        margin-bottom: 24px;
    }

    .leaders {
        padding: 26px 0 30px;
    }

    .leaders-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .participa {
        padding: 22px 0 28px;
    }

    .participa-title {
        margin-bottom: 16px;
    }

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

    .participa-card {
        max-width: 420px;
        margin: 0 auto;
        border-radius: 20px;
    }

    .participa-card img {
        border-radius: 16px;
    }

    .contact-showcase {
        padding: 20px 0 24px;
    }

    .contact-bubble {
        margin-bottom: 8px;
    }

    .contact-copy h2 {
        margin-bottom: 10px;
        font-size: clamp(30px, 12vw, 46px);
    }

    .social-chip {
        width: clamp(42px, 12vw, 54px);
        height: clamp(42px, 12vw, 54px);
        border-radius: 10px;
        font-size: clamp(18px, 5.8vw, 26px);
    }

    .contact-party {
        width: 100%;
        text-align: center;
        font-size: clamp(22px, 8.5vw, 34px);
    }

    .leader-card {
        max-width: 380px;
        margin: 0 auto;
        border-radius: 24px;
    }

    .leader-image-wrap {
        min-height: 220px;
        border-radius: 18px;
    }

    .proposal-badge {
        width: min(100%, 300px);
        align-items: center;
    }

    .proposal-title {
        margin-bottom: 14px;
    }

    .proposal-lines {
        gap: 10px;
    }

    .proposal-line {
        text-align: center;
        font-size: clamp(13px, 4vw, 18px);
        padding: 12px 14px;
    }
}