/* ── Reset & Base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --green-dark:  #1a5c2a;
      --green-mid:   #2e7d3c;
      --green-light: #4caf50;
      --orange:      #e8631a;
      --orange-light:#ff8c42;
      --yellow:      #f5c842;
      --yellow-light:#ffe57a;
      --cream:       #f4f0e6;
      --cream-dark:  #e8e0d0;
      --red:         #d32f2f;
      --blue:        #1976d2;
      --purple:      #7b1fa2;
      --teal:        #00897b;
      --text-dark:   #1a2b1a;
      --text-body:   #2d3d2d;
      --radius:      16px;
      --shadow:      0 8px 32px rgba(0,0,0,0.12);
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Nunito', sans-serif;
      background-color: var(--cream);
      color: var(--text-body);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* ── Scrollbar ── */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--cream-dark); }
    ::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 4px; }

    /* ── Typography ── */
    .font-fredoka { font-family: 'Fredoka One', cursive; }
    .font-baloo   { font-family: 'Baloo 2', cursive; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      background: var(--green-dark);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 24px; height: 64px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Fredoka One', cursive; font-size: 1.2rem;
      color: #fff; text-decoration: none;
    }
    .nav-logo-img {
      display: block;
      width: min(210px, 46vw);
      height: auto;
      max-height: 42px;
      object-fit: contain;
    }
    .nav-logo-ic {
      width: 36px; height: 36px; background: #fff; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Fredoka One', cursive; font-size: 1.1rem; color: var(--green-dark);
      font-weight: 900;
    }
    .nav-links { display: flex; gap: 6px; align-items: center; }
    .nav-links a {
      color: rgba(255,255,255,0.85); text-decoration: none; padding: 6px 14px;
      border-radius: 20px; font-weight: 700; font-size: 0.85rem;
      transition: background 0.25s, color 0.25s;
    }
    .nav-links a:hover { background: rgba(255,255,255,0.15); color: var(--yellow); }
    .nav-cta {
      background: var(--orange) !important; color: #fff !important;
      padding: 8px 18px !important; border-radius: 20px !important;
    }
    .nav-cta:hover { background: var(--orange-light) !important; color: #fff !important; }
    .hamburger {
      display: none; flex-direction: column; gap: 5px; cursor: pointer;
      background: none; border: none; padding: 4px;
    }
    .hamburger span { width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: 0.3s; }
    .mobile-menu {
      display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 998;
      background: var(--green-dark); flex-direction: column; padding: 16px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: #fff; text-decoration: none; padding: 12px 16px;
      font-weight: 700; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--yellow); }

    /* ── Decorative SVG elements ── */
    .deco { position: absolute; pointer-events: none; }
    .floating-ico {
      display: block;
      width: clamp(54px, 7vw, 96px);
      height: auto;
      object-fit: contain;
      opacity: 0.78;
      z-index: 0;
    }
    .floating-ico-lg { width: clamp(72px, 9vw, 128px); }
    .floating-ico-tall { width: clamp(44px, 5vw, 76px); }
    .deco-star { animation: spin-slow 12s linear infinite; }
    .deco-float { animation: float 4s ease-in-out infinite; }
    .deco-float-alt { animation: float 5s ease-in-out infinite reverse; }
    .deco-plane { animation: fly 8s ease-in-out infinite; }
    .deco-wiggle { animation: wiggle 3s ease-in-out infinite; }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-14px); }
    }
    @keyframes spin-slow {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    @keyframes fly {
      0%, 100% { transform: translate(0,0) rotate(-5deg); }
      50%       { transform: translate(12px,-10px) rotate(5deg); }
    }
    @keyframes wiggle {
      0%, 100% { transform: rotate(-6deg); }
      50%       { transform: rotate(6deg); }
    }
    @keyframes pulse-scale {
      0%, 100% { transform: scale(1); }
      50%       { transform: scale(1.06); }
    }
    @keyframes bounce-in {
      0%   { transform: scale(0.5); opacity: 0; }
      70%  { transform: scale(1.08); }
      100% { transform: scale(1); opacity: 1; }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeLeft {
      from { opacity: 0; transform: translateX(-40px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes fadeRight {
      from { opacity: 0; transform: translateX(40px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes draw-underline {
      from { width: 0; }
      to   { width: 100%; }
    }
    @keyframes question-bob {
      0%, 100% { transform: translateY(0) rotate(-3deg); }
      50%       { transform: translateY(-10px) rotate(3deg); }
    }
    @keyframes paint-splash {
      0%   { transform: scale(0.8) rotate(-10deg); opacity: 0.7; }
      50%  { transform: scale(1.05) rotate(5deg); opacity: 1; }
      100% { transform: scale(0.8) rotate(-10deg); opacity: 0.7; }
    }
    @keyframes countdown-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(232,99,26,0.4); }
      50%       { box-shadow: 0 0 0 16px rgba(232,99,26,0); }
    }
    @keyframes step-reveal {
      from { opacity: 0; transform: translateX(-20px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    .reveal {
      opacity: 0;
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: none !important; }
    .reveal-up    { transform: translateY(50px); }
    .reveal-left  { transform: translateX(-50px); }
    .reveal-right { transform: translateX(50px); }
    .reveal-scale { transform: scale(0.85); }

    /* ── Section wrapper ── */
    section { padding: 100px 24px 80px; position: relative; overflow: hidden; }
    .container { max-width: 1140px; margin: 0 auto; }

    /* ── Section tag ── */
    .section-tag {
      display: inline-block;
      background: var(--green-dark); color: var(--yellow);
      font-family: 'Fredoka One', cursive; font-size: 0.85rem;
      padding: 4px 16px; border-radius: 20px; letter-spacing: 0.08em;
      margin-bottom: 12px;
    }

    /* ─────────────────────────────────────
       HERO
    ───────────────────────────────────── */
    #hero {
      min-height: 100vh;
      background: url("../images/bg-lp-mascote.jpg") center top / cover no-repeat;
      display: flex; align-items: center;
      padding-top: 80px;
    }
    .hero-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 48px; align-items: center;
      width: 100%; max-width: 1140px; margin: 0 auto;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--green-dark); color: #fff;
      padding: 8px 18px; border-radius: 40px;
      font-weight: 800; font-size: 0.9rem;
      margin-bottom: 20px;
    }
    .hero-badge span { color: var(--yellow); }
    .hero-title {
      font-family: 'Fredoka One', cursive;
      font-size: clamp(2.8rem, 6vw, 4.8rem);
      line-height: 1.0;
      color: var(--green-dark);
      margin-bottom: 8px;
    }
    .hero-title .year {
      color: var(--orange);
      display: block;
    }
    .hero-subtitle {
      display: inline-block;
      background: var(--green-dark);
      color: #fff; padding: 10px 22px;
      border-radius: 12px; font-size: 1.05rem;
      font-weight: 700; margin: 16px 0;
    }
    .hero-subtitle em { color: var(--orange-light); font-style: normal; }
    .hero-meta {
      font-size: 0.9rem; color: var(--green-dark); font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.06em;
      margin-top: 6px;
    }
    .hero-cta {
      display: inline-block; margin-top: 12px;
      background: var(--orange); color: #fff;
      font-family: 'Fredoka One', cursive; font-size: 1.25rem;
      padding: 14px 36px; border-radius: 40px; text-decoration: none;
      box-shadow: 0 6px 20px rgba(232,99,26,0.35);
      transition: transform 0.2s, box-shadow 0.2s;
      animation: countdown-pulse 2.5s ease-in-out infinite;
    }
    .hero-cta:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 10px 30px rgba(232,99,26,0.45);
    }

    /* Ghost mascot */
    .hero-visual {
      display: flex; justify-content: center; align-items: center;
      position: relative;
      min-height: 520px;
    }
    .hero-ico { z-index: 3; }
    .hero-ico-sol { top: -62px; left: -68px; }
    .hero-ico-lapis-left { bottom: 132px; left: -84px; transform: rotate(-16deg); }
    .hero-ico-casa { top: -22px; right: -76px; }
    .hero-ico-flor { bottom: 14px; right: -82px; transform: rotate(18deg); }
    .hero-ico-gato { top: 46%; right: -94px; }
    .hero-mascot-logo {
      display: block;
      width: min(676px, 112%);
      height: auto;
      filter: drop-shadow(0 18px 28px rgba(0,0,0,0.18));
      animation: float 4s ease-in-out infinite;
      position: relative;
      z-index: 2;
    }
    .mascot-circle {
      width: clamp(280px, 38vw, 440px);
      height: clamp(280px, 38vw, 440px);
      background: var(--green-dark);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      position: relative;
      box-shadow: 0 16px 48px rgba(26,92,42,0.35),
                  inset 0 0 0 6px rgba(255,255,255,0.08);
    }
    .mascot-ghost {
      font-size: clamp(5rem, 12vw, 9rem);
      animation: float 3.5s ease-in-out infinite;
      filter: drop-shadow(0 12px 20px rgba(0,0,0,0.2));
      position: relative; z-index: 2;
    }
    .mascot-q {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-30%, -50%);
      font-family: 'Fredoka One', cursive;
      font-size: clamp(2.5rem, 6vw, 5rem);
      color: var(--green-dark);
      text-shadow: 0 3px 0 rgba(0,0,0,0.25);
      z-index: 3;
      animation: question-bob 4s ease-in-out infinite;
    }
    .mascot-tag {
      position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
      background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
      color: var(--yellow);
      font-family: 'Fredoka One', cursive;
      font-size: clamp(0.85rem, 2vw, 1.1rem);
      padding: 8px 28px; border-radius: 30px;
      white-space: nowrap;
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
      border: 3px solid var(--orange);
    }

    /* Decorative doodles around mascot */
    .doodle-star  { color: var(--yellow); font-size: 2rem; }
    .doodle-star2 { color: var(--orange); font-size: 1.4rem; }
    .splash-1 { width: 70px; top: 10%; left: -5%; opacity: 0.85; }
    .splash-2 { width: 55px; bottom: 15%; right: -8%; opacity: 0.9; }
    .plane-1  { top: 5%; right: 2%; font-size: 2rem; }
    .star-1   { top: 12%; left: 5%; font-size: 1.8rem; }
    .star-2   { bottom: 20%; left: 10%; font-size: 1.3rem; }
    .star-3   { top: 20%; right: 12%; font-size: 1.5rem; }
    .pencil-1 { bottom: 5%; right: 5%; font-size: 2.5rem; }
    .sun-deco { top: 8%; left: 2%; font-size: 3rem; }

    /* ─────────────────────────────────────
       SOBRE O PROJETO
    ───────────────────────────────────── */
    #sobre {
      background: #fff;
    }
    .sobre-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 56px; align-items: start;
    }
    .sobre-title {
      font-family: 'Fredoka One', cursive;
      font-size: clamp(2rem, 5vw, 3.2rem);
      color: var(--green-dark); margin-bottom: 8px;
    }
    .underline-orange {
      display: block; height: 5px; width: 80px;
      background: var(--orange); border-radius: 3px; margin: 10px 0 24px;
    }
    .sobre-text {
      font-size: 1.05rem; color: var(--text-body);
      margin-bottom: 18px; line-height: 1.75;
    }
    .sobre-text strong { color: var(--green-dark); }
    .sobre-divider {
      border: none; border-top: 2px dashed #c5d9c7;
      margin: 20px 0;
    }
    .sobre-vencedor { font-size: 1.05rem; line-height: 1.75; }
    .sobre-vencedor strong { color: var(--green-dark); }

    .pillars-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 20px; margin-top: 36px;
    }
    .pillar {
      background: var(--cream);
      border-radius: 20px; padding: 22px 18px;
      text-align: center;
      border: 2px solid transparent;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    }
    .pillar:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    }
    .pillar:nth-child(1) { border-color: var(--yellow); }
    .pillar:nth-child(1):hover { border-color: var(--yellow); }
    .pillar:nth-child(2) { border-color: #e57373; }
    .pillar:nth-child(3) { border-color: #64b5f6; }
    .pillar:nth-child(4) { border-color: var(--yellow); }
    .pillar-icon { font-size: 2.2rem; margin-bottom: 0px; }
    .pillar-title {
      font-family: 'Fredoka One', cursive;
      font-size: 0.95rem; letter-spacing: 0.05em;
      color: var(--green-dark); margin-bottom: 6px;
    }
    .pillar:nth-child(2) .pillar-title { color: var(--orange); }
    .pillar:nth-child(3) .pillar-title { color: var(--blue); }
    .pillar-desc { font-size: 0.82rem; color: #555; line-height: 1.5; }

    .sobre-banner {
      background: var(--green-dark); border-radius: 16px;
      padding: 16px 24px; margin-top: 24px;
      text-align: center;
    }
    .sobre-banner p {
      font-family: 'Fredoka One', cursive; font-size: 1.3rem;
      color: #fff;
    }
    .sobre-banner em { color: var(--orange); font-style: normal; }

    .sobre-visual {
      display: flex; flex-direction: column; gap: 24px;
      align-items: center;
    }
    .sobre-mascote-img {
      display: block;
      width: 100%;
      max-width: 390px;
      height: auto;
      filter: drop-shadow(0 16px 28px rgba(0,0,0,0.14));
      animation: float 4s ease-in-out infinite;
    }

    /* ─────────────────────────────────────
       PARTICIPAÇÃO
    ───────────────────────────────────── */
    #participacao {
      background: var(--cream);
    }
    .participacao-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 48px; align-items: start;
    }
    .participacao-title {
      font-family: 'Fredoka One', cursive;
      font-size: clamp(2rem, 5vw, 3.2rem);
      color: var(--green-dark); margin-bottom: 8px;
    }
    .cat-subtitle {
      font-weight: 700; color: var(--text-body);
      margin: 20px 0 14px; font-size: 1rem;
    }
    .category-card {
      background: #fff; border-radius: 18px;
      padding: 18px 20px; margin-bottom: 14px;
      display: flex; align-items: center; gap: 16px;
      border-left: 5px solid var(--green-mid);
      box-shadow: 0 4px 12px rgba(0,0,0,0.06);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .category-card:hover {
      transform: translateX(6px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    .category-card:nth-child(2) { border-left-color: var(--orange); }
    .cat-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .cat-icon .step-icon {
      width: 54px;
      height: 54px;
    }
    .cat-name {
      font-family: 'Baloo 2', cursive; font-size: 1.1rem;
      font-weight: 700; color: var(--green-dark);
    }
    .category-card:nth-child(2) .cat-name { color: var(--orange); }
    .cat-label { font-size: 0.85rem; color: #666; }

    .vote-box {
      background: var(--green-dark); color: #fff;
      border-radius: 16px; padding: 16px 20px;
      display: flex; align-items: center; gap: 14px;
      margin-top: 8px;
    }
    .vote-box .star-ico { font-size: 1.8rem; flex-shrink: 0; }
    .vote-box p { font-size: 0.9rem; font-weight: 600; line-height: 1.5; }
    .vote-box strong { color: var(--yellow); }
    .regulamento-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 18px;
      background: var(--orange);
      color: #fff;
      text-decoration: none;
      font-family: 'Fredoka One', cursive;
      font-size: 1rem;
      padding: 12px 24px;
      border-radius: 30px;
      box-shadow: 0 6px 18px rgba(232,99,26,0.28);
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    }
    .regulamento-btn:hover {
      background: var(--orange-light);
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(232,99,26,0.36);
    }

    /* Importante box */
    .importante-box {
      background: #fff; border: 2px solid var(--green-mid);
      border-radius: 20px; padding: 28px 24px;
      box-shadow: var(--shadow);
    }
    .importante-header {
      display: flex; align-items: center; gap: 10px;
      background: var(--green-dark); color: #fff;
      padding: 10px 18px; border-radius: 12px;
      margin-bottom: 18px;
    }
    .importante-header h3 {
      font-family: 'Fredoka One', cursive; font-size: 1.3rem; letter-spacing: 0.04em;
    }
    .importante-lead { font-size: 0.95rem; text-align: center; margin-bottom: 18px; }
    .importante-lead strong { color: var(--green-dark); }
    .aceito-label {
      background: var(--green-dark); color: #fff;
      font-family: 'Fredoka One', cursive; font-size: 1rem;
      padding: 6px 16px; border-radius: 8px; margin-bottom: 12px;
      display: inline-block; letter-spacing: 0.04em;
    }
    .check-list { list-style: none; margin-bottom: 18px; }
    .check-list li {
      display: flex; align-items: center; gap: 10px;
      padding: 6px 0; font-size: 0.95rem; border-bottom: 1px dashed #d5e8d5;
    }
    .check-list li:last-child { border-bottom: none; }
    .check-ico { color: var(--green-mid); font-size: 1.2rem; flex-shrink: 0; }

    .nao-label {
      display: flex; align-items: center; gap: 8px;
      color: var(--red); font-family: 'Fredoka One', cursive; font-size: 1rem;
      margin: 14px 0 10px;
    }
    .nao-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px;
      margin-bottom: 16px;
    }
    .nao-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.82rem; color: #555;
    }
    .x-ico { color: var(--red); font-weight: 900; font-size: 1rem; }
    .desclassificacao {
      background: #fff3f3; border: 2px solid #ffcdd2;
      border-radius: 12px; padding: 12px 16px;
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.88rem; color: #555;
    }
    .desclassificacao strong { color: var(--red); }
    .alert-ico { color: var(--red); font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

    /* ─────────────────────────────────────
       CRONOGRAMA
    ───────────────────────────────────── */
    #cronograma {
      background: var(--green-dark);
      color: #fff;
    }
    .crono-header { text-align: center; margin-bottom: 56px; }
    .crono-title {
      font-family: 'Fredoka One', cursive;
      font-size: clamp(2rem, 5vw, 3.6rem);
      color: #fff; margin-bottom: 8px;
    }
    .crono-sub { font-size: 1rem; color: rgba(255,255,255,0.75); }
    .crono-sub strong { color: var(--yellow); }

    .timeline { position: relative; max-width: 720px; margin: 0 auto; }
    .timeline::before {
      content: '';
      position: absolute; left: 32px; top: 0; bottom: 0;
      width: 4px; background: rgba(255,255,255,0.15);
      border-radius: 2px;
    }
    .timeline-step {
      display: flex; align-items: center; gap: 20px;
      padding: 0 0 28px 80px;
      position: relative;
    }
    .timeline-step:last-child { padding-bottom: 0; }
    .step-num {
      position: absolute; left: 0;
      width: 64px; height: 64px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Fredoka One', cursive; font-size: 1.4rem;
      color: #fff; flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(0,0,0,0.3);
      z-index: 1;
    }
    .step-num.g1 { background: var(--green-mid); }
    .step-num.g2 { background: #43a047; }
    .step-num.o1 { background: var(--orange); }
    .step-num.o2 { background: var(--orange-light); }
    .step-num.b1 { background: var(--blue); }
    .step-num.p1 { background: var(--purple); }

    .step-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px; padding: 16px 20px;
      flex: 1;
      display: flex; align-items: center; gap: 16px;
      transition: background 0.3s, transform 0.3s;
      cursor: default;
    }
    .step-card:hover {
      background: rgba(255,255,255,0.15);
      transform: translateX(6px);
    }
    .step-icon {
      width: 122px;
      height: 92px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .step-copy { min-width: 0; }
    .step-name {
      font-family: 'Fredoka One', cursive; font-size: 1.1rem;
      letter-spacing: 0.04em;
    }
    .step-date {
      font-size: 0.85rem; color: rgba(255,255,255,0.65);
      margin-top: 4px; font-weight: 600;
    }
    .step-card.green .step-name  { color: var(--yellow-light); }
    .step-card.orange .step-name { color: #ffcc80; }
    .step-card.blue .step-name   { color: #90caf9; }
    .step-card.purple .step-name { color: #ce93d8; }

    .crono-cta-box {
      background: rgba(255,255,255,0.07);
      border: 2px dashed rgba(255,255,255,0.2);
      border-radius: 16px; padding: 16px 24px;
      display: flex; align-items: flex-start; gap: 14px;
      margin-top: 36px; max-width: 720px; margin-left: auto; margin-right: auto;
    }
    .crono-cta-box .cal-ico { font-size: 1.8rem; flex-shrink: 0; }
    .crono-cta-box p { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
    .crono-cta-box strong { color: #fff; }
    .crono-result {
      text-align: center; margin-top: 32px;
      background: rgba(245,200,66,0.12); border: 2px solid var(--yellow);
      border-radius: 20px; padding: 20px 32px; max-width: 480px; margin: 32px auto 0;
    }
    .crono-result .trophy { font-size: 2.5rem; margin-bottom: 8px; }
    .crono-result p {
      font-family: 'Fredoka One', cursive; font-size: 1.1rem;
      color: rgba(255,255,255,0.9);
    }
    .crono-result em { color: var(--yellow); font-style: normal; font-size: 1.3rem; }

    /* ─────────────────────────────────────
       CLOSING / CTA
    ───────────────────────────────────── */
    #encerramento {
      background: url("../images/bg-lp-mascote.jpg") center top / cover no-repeat;
      text-align: center;
    }
    .enc-title {
      font-family: 'Fredoka One', cursive;
      font-size: clamp(1.8rem, 4.5vw, 3rem);
      color: var(--green-dark); margin-bottom: 12px;
      line-height: 1.2;
    }
    .enc-title em { color: var(--orange); font-style: normal; }
    .enc-sub { font-size: 1.1rem; color: #555; max-width: 560px; margin: 0 auto 36px; }
    .enc-social-links {
      display: flex; justify-content: center; gap: 20px;
      flex-wrap: wrap; margin: 24px 0;
    }
    .enc-social-links a {
      display: flex; align-items: center; gap: 8px;
      background: #fff; border: 2px solid var(--cream-dark);
      color: var(--green-dark); text-decoration: none;
      padding: 10px 20px; border-radius: 30px;
      font-weight: 700; font-size: 0.9rem;
      transition: all 0.25s;
      box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    }
    .enc-social-links a:hover {
      background: var(--green-dark); color: var(--yellow);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(26,92,42,0.2);
    }
    .social-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      fill: currentColor;
    }

    /* ─────────────────────────────────────
       VOTACAO
    ───────────────────────────────────── */
    .votacao-page {
      background: var(--cream);
    }
    .votacao-hero {
      min-height: calc(100vh - 64px);
      background: url("../images/bg-lp-mascote.jpg") center top / cover no-repeat;
      padding-top: 120px;
    }
    .votacao-header {
      max-width: 760px;
      margin: 0 auto 42px;
      text-align: center;
    }
    .votacao-title {
      font-family: 'Fredoka One', cursive;
      font-size: clamp(2.2rem, 5vw, 4rem);
      line-height: 1.05;
      color: var(--green-dark);
      margin-bottom: 12px;
    }
    .votacao-header p {
      max-width: 620px;
      margin: 0 auto;
      color: var(--text-body);
      font-size: 1.05rem;
      font-weight: 700;
    }
    .finalistas-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      align-items: stretch;
    }
    .finalista-card {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      border: 2px solid var(--cream-dark);
      background: #fff;
      border-radius: 18px;
      padding: 14px;
      text-align: left;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    }
    .finalista-card:hover,
    .finalista-card:focus-visible {
      border-color: var(--orange);
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(26,92,42,0.16);
      outline: none;
    }
    .finalista-img {
      display: block;
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: 12px;
      background: var(--cream);
    }
    .finalista-meta {
      align-self: flex-start;
      background: var(--green-dark);
      color: var(--yellow);
      border-radius: 20px;
      padding: 4px 12px;
      font-size: 0.78rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .finalista-card strong {
      font-family: 'Fredoka One', cursive;
      color: var(--green-dark);
      font-size: 1.35rem;
      line-height: 1.1;
    }
    .vote-modal {
      position: fixed;
      inset: 0;
      z-index: 1200;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .vote-modal.open {
      display: flex;
    }
    .vote-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(10,24,10,0.72);
      backdrop-filter: blur(4px);
    }
    .vote-dialog {
      position: relative;
      z-index: 1;
      width: min(920px, 100%);
      max-height: min(760px, 92vh);
      overflow: auto;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 0;
      background: #fff;
      border-radius: 22px;
      box-shadow: 0 28px 80px rgba(0,0,0,0.35);
    }
    .vote-close {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 2;
      width: 40px;
      height: 40px;
      border: none;
      border-radius: 50%;
      background: var(--green-dark);
      color: #fff;
      font-size: 1.7rem;
      line-height: 1;
      cursor: pointer;
    }
    .vote-preview {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--cream);
      padding: 24px;
    }
    .vote-preview img {
      display: block;
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    }
    .vote-form-wrap {
      padding: 42px 34px 34px;
    }
    .vote-form-wrap h2 {
      font-family: 'Fredoka One', cursive;
      color: var(--green-dark);
      font-size: clamp(1.6rem, 4vw, 2.35rem);
      line-height: 1.1;
      margin-bottom: 10px;
    }
    .vote-help {
      color: #555;
      font-weight: 700;
      margin-bottom: 22px;
    }
    #voteForm {
      display: grid;
      gap: 10px;
    }
    #voteForm label {
      color: var(--green-dark);
      font-weight: 900;
      font-size: 0.9rem;
    }
    #voteForm input {
      width: 100%;
      border: 2px solid var(--cream-dark);
      border-radius: 12px;
      padding: 12px 14px;
      font: inherit;
      color: var(--text-body);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    #voteForm input:focus {
      border-color: var(--green-mid);
      box-shadow: 0 0 0 4px rgba(46,125,60,0.12);
    }
    .vote-error {
      min-height: 22px;
      color: var(--red);
      font-weight: 800;
      font-size: 0.9rem;
    }
    .vote-submit {
      border: none;
      border-radius: 30px;
      background: var(--orange);
      color: #fff;
      font-family: 'Fredoka One', cursive;
      font-size: 1.05rem;
      padding: 13px 24px;
      cursor: pointer;
      box-shadow: 0 8px 22px rgba(232,99,26,0.28);
      transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    }
    .vote-submit:hover {
      background: var(--orange-light);
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(232,99,26,0.36);
    }
    .vote-toast {
      position: fixed;
      left: 50%;
      bottom: 28px;
      z-index: 1300;
      transform: translate(-50%, 20px);
      background: var(--green-dark);
      color: #fff;
      border: 2px solid var(--yellow);
      border-radius: 30px;
      padding: 12px 22px;
      font-weight: 900;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s, transform 0.25s;
      box-shadow: 0 10px 30px rgba(0,0,0,0.24);
    }
    .vote-toast.show {
      opacity: 1;
      transform: translate(-50%, 0);
    }
    body.modal-open {
      overflow: hidden;
    }

    /* ─────────────────────────────────────
       FOOTER
    ───────────────────────────────────── */
    footer {
      background: var(--green-dark); color: rgba(255,255,255,0.7);
      text-align: center; padding: 24px;
      font-size: 0.85rem;
    }
    footer strong { color: #fff; }
    footer a { color: var(--yellow); text-decoration: none; }

    /* ─────────────────────────────────────
       BACK TO TOP
    ───────────────────────────────────── */
    .back-top {
      position: fixed; bottom: 28px; right: 28px; z-index: 900;
      background: var(--orange); color: #fff; border: none;
      width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
      font-size: 1.4rem; display: none; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(232,99,26,0.4);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .back-top.show { display: flex; }
    .back-top:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(232,99,26,0.5); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero-inner,
      .sobre-inner,
      .participacao-inner { grid-template-columns: 1fr; }

      .hero-inner { text-align: center; gap: 0; }
      .hero-inner > div:first-child { order: 2; }
      .hero-badge { margin-left: auto; margin-right: auto; }
      .hero-visual {
        order: 1;
        width: min(468px, 92vw);
        min-height: auto;
        margin: 0 auto 10px;
        padding: 42px 38px 22px;
      }
      .hero-mascot-logo {
        width: 120%;
        max-width: none;
        margin-left: -10%;
      }
      .hero-ico-sol { top: 0; left: 0; }
      .hero-ico-lapis-left { bottom: 26px; left: -6px; }
      .hero-ico-casa { top: 26px; right: 0; }
      .hero-ico-flor { bottom: -4px; right: 26px; }
      .hero-ico-gato { top: 56%; right: -18px; }
      .mascot-circle { width: 280px; height: 280px; }

      .pillars-grid { grid-template-columns: 1fr 1fr; }
      .sobre-visual { display: none; }

      .nav-links { display: none; }
      .hamburger { display: flex; }

      .finalistas-grid { grid-template-columns: 1fr; }
      .votacao-hero { padding-top: 96px; }
      .vote-dialog { grid-template-columns: 1fr; }
      .vote-preview { padding: 18px; }
      .vote-preview img { max-height: 280px; object-fit: contain; }
    }

    @media (max-width: 560px) {
      section { padding: 80px 16px 60px; }
      .pillars-grid { grid-template-columns: 1fr; }
      .nao-grid { grid-template-columns: 1fr; }
      .timeline::before { left: 28px; }
      .timeline-step { padding-left: 68px; }
      .step-num { width: 56px; height: 56px; font-size: 1.2rem; }
      .votacao-hero { padding-top: 88px; }
      .votacao-header { margin-bottom: 28px; }
      .finalista-card { padding: 12px; }
      .vote-modal { padding: 12px; }
      .vote-form-wrap { padding: 34px 20px 22px; }
      .vote-close { top: 10px; right: 10px; }
      .vote-toast {
        width: calc(100vw - 32px);
        text-align: center;
      }
    }

    /* ── Wiggling doodle decorations ── */
    .doodle-bg {
      position: absolute; opacity: 0.18; pointer-events: none;
      font-size: 2.5rem;
    }
