/*
Theme Name: Atleta360 — GRAACC 2
Theme URI: https://atleta360.com.br
Author: Fred Beijos / 360Mais
Author URI: https://360mais.com.br
Description: Tema WordPress da landing page Atleta360 — Rumo ao Ironman Brasil, pela vida das crianças do GRAACC.
Version: 11.0.0
Text Domain: atleta360
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: one-page, landing-page, custom-background, triathlon, graacc
*/

/* ========== DESIGN TOKENS ========== */
:root {
  --ink: #250437;
  --ink-soft: #31094a;
  --sand: #F3EEE3;
  --sand-dim: #C9C2B2;
  --swim: #2BA8AE;
  --bike: #D99A3D;
  --run: #E15A3E;
  --line: rgba(243, 238, 227, 0.14);
  --serif: 'Fraunces', serif;
  --sans: 'Inter', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

em {
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--sand);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-dim);
}

/* ========== HERO (parallax) ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(64, 9, 94, 0.82) 0%, rgba(14, 26, 36, 0.92) 100%),
    var(--hero-bg) center/cover no-repeat;
  background-attachment: fixed, fixed;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero .eyebrow {
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.04;
  max-width: 720px;
}

.hero h1 em {
  font-style: normal;
  color: #c792ea;
}

.hero p.sub {
  margin-top: 28px;
  max-width: 620px;
  font-size: 18px;
  color: var(--sand-dim);
}

.hero .cta-row {
  margin-top: 42px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-avatar img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  filter: drop-shadow(0 8px 40px rgba(64, 9, 94, 0.45));
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width:760px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-avatar {
    order: -1;
  }

  .hero-avatar img {
    max-width: 280px;
    margin: 0 auto;
  }

  .hero .cta-row {
    justify-content: center;
  }
}

/* ========== BUTTONS ========== */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #00aeef;
  color: #fff;
}

.btn-primary:hover {
  background: #00aeef;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--sand);
}

.btn-ghost:hover {
  border-color: var(--sand-dim);
}

/* ========== SPLIT BAR (signature element) ========== */
.splitbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  height: 6px;
  background: var(--ink-soft);
}

.splitbar a {
  flex: none;
  height: 100%;
  display: block;
  transition: opacity .15s;
}

.splitbar a:hover {
  opacity: 0.7;
}

.seg-swim {
  background: var(--swim);
  flex-grow: 3.8;
}

.seg-bike {
  background: var(--bike);
  flex-grow: 180;
}

.seg-run {
  background: var(--run);
  flex-grow: 42.2;
}

.nav-labels {
  display: flex;
  width: 100%;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--sand-dim);
  background: var(--ink-soft);
}

.nav-labels a {
  text-decoration: none;
  color: inherit;
  padding: 10px 16px;
  flex-grow: 1;
  text-align: center;
}

.nav-labels a:hover {
  color: var(--sand);
}

/* ========== METAS OVERVIEW ========== */
.metas {
  padding: 110px 0 60px;
  background: #e2e2e2;
}

.metas .head {
  max-width: 680px;
  margin-bottom: 64px;
}

.metas .head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-top: 14px;
  color: #490c6a;
  line-height: 1.3;
}

.metas .head p {
  margin-top: 18px;
  color: #6b6b6b;
  font-size: 17px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.meta-card {
  background: var(--ink);
  padding: 36px 28px;
  text-decoration: none;
  color: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background .15s;
}

.meta-card:hover {
  background: var(--ink-soft);
}

.meta-card .icon-dist {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--sand-dim);
}

.meta-card .big-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  margin-top: -10px;
}

.meta-card.swim .big-num {
  color: var(--swim);
}

.meta-card.bike .big-num {
  color: var(--bike);
}

.meta-card.run .big-num {
  color: var(--run);
}

.meta-card .label {
  font-size: 15px;
  color: var(--sand-dim);
}

.progress-wrap {
  width: 100%;
}

.progress-percent {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--sand-dim);
  display: block;
  text-align: right;
  margin-bottom: 6px;
  font-weight: 600;
}

.progress-track {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: rgba(243, 238, 227, 0.1);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
}

.swim .progress-fill {
  background: var(--swim);
  width: 0%;
}

.bike .progress-fill {
  background: var(--bike);
  width: 0%;
}

.run .progress-fill {
  background: var(--run);
  width: 0%;
}

.meta-card .go {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  margin-top: auto;
  color: var(--sand-dim);
}

@media (max-width:760px) {
  .meta-grid {
    grid-template-columns: 1fr;
  }

  .nav-labels a {
    font-size: 10px;
    padding: 10px 6px;
  }
}

/* ========== DISCIPLINE SECTIONS ========== */
.discipline {
  padding: 120px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 60px;
}

.discipline.bike-zone {
  background: var(--ink-soft);
}

.discipline .grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
}

.discipline .meta-tag {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .08em;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.swim-zone .meta-tag {
  background: rgba(43, 168, 174, 0.16);
  color: var(--swim);
}

.bike-zone .meta-tag {
  background: rgba(217, 154, 61, 0.16);
  color: var(--bike);
}

.run-zone .meta-tag {
  background: rgba(225, 90, 62, 0.16);
  color: var(--run);
}

.discipline h3 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 18px;
}

.discipline .dist-num {
  font-family: var(--serif);
  font-style: normal;
}

.swim-zone .dist-num {
  color: var(--swim);
}

.bike-zone .dist-num {
  color: var(--bike);
}

.run-zone .dist-num {
  color: var(--run);
}

.discipline p.desc {
  color: var(--sand-dim);
  font-size: 17px;
  margin-bottom: 28px;
}

.step-block {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 18px;
}

.step-block h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--sand-dim);
  margin-bottom: 10px;
}

.step-block p {
  font-size: 15px;
  color: var(--sand);
}

.step-block p+p {
  margin-top: 8px;
}

.bank-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 14px;
  margin-top: 8px;
}

.bank-table td {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--sand-dim);
}

.bank-table td:last-child {
  color: var(--sand);
  text-align: right;
  font-weight: 600;
}

.discipline .cta-row {
  margin-top: 26px;
}

/* ========== BASTIDORES / TIMELINE ========== */
.story {
  padding: 120px 0;
  border-top: 1px solid var(--line);
  background: var(--ink-soft);
}

.story .head {
  max-width: 640px;
  margin-bottom: 56px;
}

.story .head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-top: 14px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--line);
  margin-left: 6px;
}

.tl-item {
  position: relative;
  padding: 0 0 48px 32px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--run);
  border: 3px solid var(--ink-soft);
}

.tl-item .yr {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--run);
  margin-bottom: 6px;
  display: block;
}

.tl-item h4 {
  font-family: var(--serif);
  font-size: 21px;
  margin-bottom: 8px;
  font-weight: 600;
}

.tl-item p {
  color: var(--sand-dim);
  font-size: 15.5px;
  max-width: 640px;
}

.fred-personal {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.fred-personal h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.fred-personal p {
  color: var(--sand-dim);
  font-size: 16px;
}

@media (max-width:760px) {

  .discipline .grid,
  .fred-personal {
    grid-template-columns: 1fr;
  }
}

/* ========== IMPACT NUMBERS ========== */
.impact {
  padding: 110px 0;
  border-top: 1px solid var(--line);
}

.impact .head {
  max-width: 680px;
}

.impact .head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-top: 14px;
}

.impact p.lead {
  margin-top: 18px;
  color: var(--sand-dim);
  font-size: 17px;
  max-width: 640px;
}

/* ========== GRAACC INTRO ========== */
.graacc-intro {
  background-color: #e9e9e9;

}

.graacc-intro h2 {
  color: #434343;
}

.graacc-intro .grid {
  display: grid;
  gap: 32px;
  align-items: start;
  grid-auto-flow: row;
}

.graacc-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .graacc-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 800px) {
  .graacc-intro .grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.graacc-intro .logo {
  max-width: 320px;
  margin-bottom: 24px;
}

.graacc-intro .btn-ghost {
  background: #3F51B5;
}

.graacc-intro .eyebrow {
  color: #6b6b6b;
}

.graacc-intro .head {
  max-width: 100%;
}

.graacc-intro .text-content {
  color: #434343;
  font-size: 18px;
  line-height: 1.6;
}

.graacc-intro .text-content:not(:last-of-type) {
  margin-bottom: 24px;
}

.graacc-intro .cta-row {
  margin-top: 32px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}

.stat-card {
  background: var(--ink);
  padding: 40px 32px;
}

.stat-card .num {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--run);
  font-weight: 600;
}

.stat-card .desc {
  margin-top: 10px;
  color: var(--sand-dim);
  font-size: 15px;
}

@media (max-width:760px) {
  .stat-row {
    grid-template-columns: 1fr;
  }
}

/* ========== WHAT IS IRONMAN ========== */
.ironman-explain {
  padding: 100px 0;
  border-top: 1px solid var(--line);
  background: var(--ink-soft);
}

.ironman-explain .grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.ironman-explain h2 {
  font-size: clamp(26px, 3.6vw, 36px);
  margin-top: 14px;
}

.ironman-explain p {
  color: var(--sand-dim);
  font-size: 16px;
  margin-top: 16px;
}

.im-dist-list {
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.im-dist-list .row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--mono);
}

.im-dist-list .dist-icon {
  width: 80px;
  height: 40px;
  object-fit: contain;
  flex: none;
}

.im-dist-list .row span.v {
  font-size: 20px;
  font-weight: 600;
}

.im-dist-list .row span.l {
  color: var(--sand-dim);
  font-size: 13px;
}

@media (max-width:760px) {
  .ironman-explain .grid {
    grid-template-columns: 1fr;
  }
  .im-dist-list {
    padding: 24px;
  }
}

/* ========== FRED INTRO ========== */
.fred-intro {
  padding: 100px 0;
}

.fred-intro .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.fred-intro h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-top: 14px;
  margin-bottom: 24px;
}

.fred-intro p {
  color: var(--sand-dim);
  font-size: 17px;
  margin-top: 16px;
}

.fred-intro img {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  object-fit: cover;
  margin: 0 auto;
}

@media (max-width:760px) {
  .fred-intro .grid {
    grid-template-columns: 1fr;
  }
}

/* ========== SOCIAL ========== */
.social {
  padding: 100px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.social h2 {
  font-size: clamp(26px, 3.6vw, 38px);
}

.social p {
  color: var(--sand-dim);
  margin-top: 14px;
}

.social-links-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: left;
}

.brand-group h4 {
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  color: var(--sand);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-links a {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 12px 22px;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  transition: border-color .15s, color .15s;
}

.social-links a:hover {
  border-color: var(--run);
  color: var(--run);
}

/* ========== SOCIAL INLINE ========== */
.social-inline {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-brand {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--sand);
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--sand-dim);
  text-decoration: none;
  transition: border-color .15s, color .15s, transform .15s;
}

.social-icon-btn:hover {
  border-color: var(--run);
  color: var(--run);
  transform: translateY(-2px);
}

/* ========== FINAL CTA ========== */
.final-cta {
  padding: 130px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 70% at 50% 0%, rgba(225, 90, 62, 0.16), transparent 65%),
    var(--ink);
  border-top: 1px solid var(--line);
}

.final-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  max-width: 760px;
  margin: 0 auto;
}

.final-cta .cta-row {
  justify-content: center;
  margin-top: 38px;
}

/* ========== FOOTER ========== */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
  color: var(--sand-dim);
}

/* ========== DONATION CTA ========== */
.donate-cta {
  padding: 110px 0;
  border-top: 1px solid var(--line);
  overflow: visible;
  position: relative;
}

.donate-cta .donate-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.donate-left {
  background:
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(199, 146, 234, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 10%, rgba(64, 9, 94, 0.25), transparent 60%),
    linear-gradient(160deg, #5a1380 0%, #40095e 35%, #250437 100%);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.donate-left::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(199, 146, 234, 0.06);
  pointer-events: none;
}

.donate-left h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
}

.donate-left h2 em {
  font-style: normal;
  color: #c792ea;
}

.donate-left p.donate-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
  position: relative;
}

.donate-callout {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--run);
  border-radius: 0 14px 14px 0;
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.donate-callout-icon {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--run);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-top: 1px;
  box-shadow: 0 4px 12px rgba(225, 90, 62, 0.35);
}

.donate-callout-content .callout-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--run);
  margin-bottom: 8px;
  font-weight: 600;
}

.donate-callout-content p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.donate-callout-content strong {
  color: #fff;
  font-weight: 700;
}

.donate-right {
  background: var(--sand);
  padding: 64px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.donate-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 40%);
  pointer-events: none;
}

.donate-right h3 {
  font-size: 30px;
  color: var(--ink);
  margin-bottom: 36px;
  position: relative;
  padding-bottom: 20px;
}

.donate-right h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: #40095e;
  border-radius: 2px;
}

.donate-block {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(37, 4, 55, 0.08);
  position: relative;
}

.donate-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.donate-block .donate-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(37, 4, 55, 0.45);
  margin-bottom: 10px;
  font-weight: 600;
}

.donate-block .donate-value {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 500;
}

.donate-block .donate-value strong {
  font-size: 22px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.donate-block .donate-value .cnpj {
  font-family: var(--mono);
  font-size: 14px;
  color: rgba(37, 4, 55, 0.55);
  display: block;
  margin-top: 2px;
}

.donate-note {
  font-size: 13.5px;
  color: rgba(37, 4, 55, 0.55);
  font-style: italic;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .donate-cta .donate-grid {
    grid-template-columns: 1fr;
  }

  .donate-left {
    padding: 56px 28px;
  }

  .donate-right {
    padding: 44px 28px;
  }
}

/* ========== BLOG POSTS ========== */
.blog-section {
  padding: 110px 0;
  border-top: 1px solid var(--line);
  background: var(--ink-soft);
}

.blog-section .head {
  max-width: 680px;
  margin-bottom: 56px;
}

.blog-section .head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-top: 14px;
}

.blog-section .head p {
  margin-top: 18px;
  color: var(--sand-dim);
  font-size: 17px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.post-card {
  background: var(--ink);
  padding: 0;
  text-decoration: none;
  color: var(--sand);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.post-card .post-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-card .post-thumb-placeholder {
  width: 100%;
  height: 200px;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(64, 9, 94, 0.5), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(199, 146, 234, 0.15), transparent 50%),
    linear-gradient(145deg, var(--ink-soft) 0%, #1a042a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(199, 146, 234, 0.4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.post-card-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.post-card .post-date {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--sand-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card .post-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.15s;
}

.post-card:hover .post-title {
  color: #c792ea;
}

.post-card .post-excerpt {
  font-size: 14px;
  color: var(--sand-dim);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card .post-read-more {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #c792ea;
  margin-top: auto;
  padding-top: 8px;
  transition: color 0.15s, transform 0.15s;
  display: inline-block;
}

.post-card:hover .post-read-more {
  color: #e0b4f7;
  transform: translateX(4px);
}

.blog-section .view-all {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .posts-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ========== FLOATING DONATE BUTTON ========== */
.fab-donate {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #40095e, #5a1380);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  padding: 0 24px 0 20px;
  height: 56px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  box-shadow:
    0 4px 20px rgba(64, 9, 94, 0.5),
    0 0 0 0 rgba(64, 9, 94, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, gap 0.3s ease, padding 0.3s ease;
  animation: fabPulse 2.5s ease-in-out infinite;
  overflow: hidden;
}

.fab-donate:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 8px 32px rgba(64, 9, 94, 0.6),
    0 0 0 0 rgba(64, 9, 94, 0);
  animation: none;
  gap: 10px;
}

.fab-icon {
  font-size: 22px;
  line-height: 1;
  flex: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.fab-label {
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 0.03em;
}

@keyframes fabPulse {

  0%,
  100% {
    box-shadow:
      0 4px 20px rgba(64, 9, 94, 0.5),
      0 0 0 0 rgba(64, 9, 94, 0.4);
  }

  50% {
    box-shadow:
      0 4px 20px rgba(64, 9, 94, 0.5),
      0 0 0 12px rgba(64, 9, 94, 0);
  }
}

@media (max-width: 760px) {
  .fab-donate {
    bottom: 20px;
    right: 20px;
    height: 52px;
    padding: 0 18px 0 16px;
  }
}

.metas .eyebrow {
  color: #6b6b6b;
}

.metas .head p b {
  color: #000;
}

.metas h3 {
  color: #490c6a;
  margin: 25px 0;
  font-weight: 700;
  font-size: 24px;
}

section#ciclismo .step-block {
  background: rgb(255 255 255 / 8%);
}

/* ========== PARTNERS / PARCEIROS ========== */
.partners {
  padding: 80px 0;
  background: var(--ink);
  border-top: 1px solid var(--line);
  text-align: center;
}

.partners .eyebrow {
  margin-bottom: 12px;
  display: block;
}

.partners h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 48px;
}

.partners-carousel {
  width: 100%;
  overflow: hidden;
  padding-bottom: 32px;
}

.partners-carousel .swiper-wrapper {
  align-items: center;
}

.partners-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: grab;
}

.partners-carousel .swiper-slide:active {
  cursor: grabbing;
}

.partners-carousel .swiper-slide:hover {
  opacity: 1;
  transform: scale(1.05);
}

.partners-carousel img {
  max-width: 180px;
  max-height: 90px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.partners-carousel .swiper-slide:hover img {
  border-color: rgba(255, 255, 255, 0.6);
}

.partners-carousel .swiper-pagination-bullet {
  background: var(--sand-dim);
  opacity: 0.5;
}

.partners-carousel .swiper-pagination-bullet-active {
  background: var(--run);
  opacity: 1;
}