/* ============================================================
   THEME SYSTEM - CSS Custom Properties
   ============================================================ */
:root {
  /* Default Theme: Amarelo e Azul */
  --primary: #0D1B4A;
  --primary-light: #1B2D6B;
  --primary-dark: #080F2D;
  --secondary: #F5A623;
  --secondary-light: #FFD54F;
  --secondary-dark: #E09500;
  --accent: #FF8C00;
  --bg: #F8F9FA;
  --bg-alt: #FFFFFF;
  --surface: #FFFFFF;
  --surface-hover: #F0F2F5;
  --text: #1a1a2e;
  --text-light: #6c757d;
  --text-on-primary: #FFFFFF;
  --text-on-secondary: #1a1a2e;
  --border: #E0E0E0;
  --shadow: rgba(13, 27, 74, 0.12);
  --shadow-lg: rgba(13, 27, 74, 0.2);
  --gradient: linear-gradient(135deg, #0D1B4A 0%, #1B2D6B 50%, #F5A623 100%);
  --gradient-reverse: linear-gradient(135deg, #F5A623 0%, #FFD54F 50%, #0D1B4A 100%);
  --hero-gradient: linear-gradient(135deg, #0D1B4A 0%, #1B2D6B 60%, #2A3F8F 100%);
  --card-shadow: 0 4px 20px rgba(13, 27, 74, 0.08);
  --card-shadow-hover: 0 8px 40px rgba(13, 27, 74, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Montserrat', 'Inter', sans-serif;
  --header-bg: rgba(13, 27, 74, 0.95);
  --header-blur: 20px;
  --btn-primary-bg: #F5A623;
  --btn-primary-text: #0D1B4A;
  --btn-primary-hover: #FFD54F;
  --btn-outline-border: #F5A623;
  --btn-outline-text: #F5A623;
}

[data-theme="red-black"] {
  --primary: #1a1a1a;
  --primary-light: #2d2d2d;
  --primary-dark: #0d0d0d;
  --secondary: #D32F2F;
  --secondary-light: #EF5350;
  --secondary-dark: #B71C1C;
  --accent: #B71C1C;
  --bg: #F8F9FA;
  --bg-alt: #FFFFFF;
  --surface: #FFFFFF;
  --surface-hover: #F5F5F5;
  --text: #1a1a1a;
  --text-light: #6c757d;
  --text-on-primary: #FFFFFF;
  --text-on-secondary: #FFFFFF;
  --border: #E0E0E0;
  --shadow: rgba(26, 26, 26, 0.12);
  --shadow-lg: rgba(26, 26, 26, 0.2);
  --gradient: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #D32F2F 100%);
  --gradient-reverse: linear-gradient(135deg, #D32F2F 0%, #EF5350 50%, #1a1a1a 100%);
  --hero-gradient: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 60%, #D32F2F 100%);
  --card-shadow: 0 4px 20px rgba(26, 26, 26, 0.08);
  --card-shadow-hover: 0 8px 40px rgba(26, 26, 26, 0.15);
  --header-bg: rgba(26, 26, 26, 0.95);
  --btn-primary-bg: #D32F2F;
  --btn-primary-text: #FFFFFF;
  --btn-primary-hover: #EF5350;
  --btn-outline-border: #D32F2F;
  --btn-outline-text: #D32F2F;
}

[data-theme="blue-white"] {
  --primary: #0D47A1;
  --primary-light: #1565C0;
  --primary-dark: #072A6E;
  --secondary: #1565C0;
  --secondary-light: #1E88E5;
  --secondary-dark: #0D47A1;
  --accent: #0D47A1;
  --bg: #F5F8FC;
  --bg-alt: #FFFFFF;
  --surface: #FFFFFF;
  --surface-hover: #F0F4F8;
  --text: #0a1628;
  --text-light: #546e7a;
  --text-on-primary: #FFFFFF;
  --text-on-secondary: #FFFFFF;
  --border: #d0dbe8;
  --shadow: rgba(13, 71, 161, 0.08);
  --shadow-lg: rgba(13, 71, 161, 0.15);
  --gradient: linear-gradient(135deg, #0D47A1 0%, #1565C0 50%, #1E88E5 100%);
  --gradient-reverse: linear-gradient(135deg, #1E88E5 0%, #1565C0 50%, #0D47A1 100%);
  --hero-gradient: linear-gradient(135deg, #0a2540 0%, #0D47A1 50%, #1565C0 100%);
  --card-shadow: 0 4px 20px rgba(13, 71, 161, 0.08);
  --card-shadow-hover: 0 8px 40px rgba(13, 71, 161, 0.15);
  --header-bg: rgba(10, 37, 64, 0.95);
  --btn-primary-bg: #1565C0;
  --btn-primary-text: #FFFFFF;
  --btn-primary-hover: #0D47A1;
  --btn-outline-border: #1565C0;
  --btn-outline-text: #1565C0;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth theme transitions */
*, *::before, *::after {
  transition: background-color 0.45s ease-in-out,
              color 0.4s ease-in-out,
              border-color 0.4s ease-in-out,
              box-shadow 0.4s ease-in-out,
              fill 0.4s ease-in-out,
              stroke 0.4s ease-in-out;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.highlight {
  color: var(--secondary);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--bg-alt);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  background: color-mix(in srgb, var(--secondary) 15%, transparent);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__desc {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--secondary);
  border-radius: 4px;
  margin: 0 auto 20px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease !important;
  text-decoration: none;
}

.btn--primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border-color: var(--btn-primary-bg);
}

.btn--primary:hover {
  background: var(--btn-primary-hover);
  border-color: var(--btn-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--btn-outline-text);
  border-color: var(--btn-outline-border);
}

.btn--outline:hover {
  background: var(--btn-outline-border);
  color: var(--text-on-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--shadow-lg);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(var(--header-blur));
  -webkit-backdrop-filter: blur(var(--header-blur));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #FFFFFF;
}

.nav__logo-img {
  height: 42px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
}

.nav__logo-text small {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.8;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all 0.3s ease !important;
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

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

/* Theme Switcher */
.theme-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: var(--radius-full);
}

.theme-btn {
  width: 24px;
  height: 24px;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.3s ease !important;
}

.theme-btn.active {
  border-color: #FFFFFF;
  transform: scale(1.15);
}

.theme-btn__color {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.theme-btn__color--yb {
  background: linear-gradient(135deg, #F5A623 50%, #0D1B4A 50%);
}

.theme-btn__color--rb {
  background: linear-gradient(135deg, #D32F2F 50%, #1a1a1a 50%);
}

.theme-btn__color--bw {
  background: linear-gradient(135deg, #0D47A1 50%, #E3F2FD 50%);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--hero-gradient);
  padding-top: 72px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.hero__bg-shape--1 {
  width: 600px;
  height: 600px;
  background: var(--secondary);
  top: -200px;
  right: -150px;
  animation: float 8s ease-in-out infinite;
}

.hero__bg-shape--2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero__bg-shape--3 {
  width: 200px;
  height: 200px;
  background: var(--secondary-light);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero__logo-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.hero__logo {
  width: min(40vw, 300px);
  height: auto;
  opacity: 0.15;
  animation: heroLogoRun 20s ease-in-out infinite;
}

@keyframes heroLogoRun {
  0% {
    transform: translate(-40vw, -20vh) scale(0.8) rotate(-10deg);
    opacity: 0.05;
  }
  10% {
    transform: translate(30vw, -10vh) scale(1.1) rotate(5deg);
    opacity: 0.15;
  }
  20% {
    transform: translate(-10vw, 15vh) scale(0.9) rotate(-5deg);
    opacity: 0.12;
  }
  30% {
    transform: translate(35vw, 25vh) scale(1.2) rotate(8deg);
    opacity: 0.18;
  }
  40% {
    transform: translate(-25vw, -15vh) scale(0.85) rotate(-3deg);
    opacity: 0.1;
  }
  50% {
    transform: translate(20vw, 10vh) scale(1.05) rotate(0deg);
    opacity: 0.15;
  }
  60% {
    transform: translate(-35vw, -25vh) scale(1.15) rotate(6deg);
    opacity: 0.12;
  }
  70% {
    transform: translate(15vw, 20vh) scale(0.9) rotate(-8deg);
    opacity: 0.18;
  }
  80% {
    transform: translate(-20vw, -5vh) scale(1) rotate(3deg);
    opacity: 0.1;
  }
  90% {
    transform: translate(40vw, 5vh) scale(1.1) rotate(-4deg);
    opacity: 0.15;
  }
  100% {
    transform: translate(-40vw, -20vh) scale(0.8) rotate(-10deg);
    opacity: 0.05;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  padding: 60px 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__badge i {
  color: var(--secondary);
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__title-line {
  display: block;
}

.hero__title-line--small {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.9;
}

.hero__title-line--big {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  letter-spacing: -2px;
  color: var(--secondary);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero__title-line--sub {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}

.hero__subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 40px;
  font-style: italic;
}

.hero__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__cta .btn--outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
}

.hero__cta .btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
}

.hero__social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.hero__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease !important;
}

.hero__social-link:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-3px);
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.about__text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

.about__text strong {
  color: var(--text);
}

.about__founders {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.about__founder {
  text-align: center;
}

.about__founder-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--surface-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--secondary);
  margin-bottom: 12px;
  border: 3px solid var(--border);
}

.about__founder h4 {
  font-size: 1rem;
  color: var(--text);
}

.about__founder span {
  font-size: 0.85rem;
  color: var(--text-light);
}

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

.about__card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}

.about__card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.about__card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--secondary) 15%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary);
  margin: 0 auto 20px;
}

.about__card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.about__card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   HISTORY
   ============================================================ */
.history__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
  align-items: center;
}

.history__hero-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.history__hero-date {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.history__hero-content p {
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.8;
}

.history__hero-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface-hover);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 1.1rem;
  border: 2px dashed var(--border);
}

.history__hero-placeholder i {
  font-size: 3rem;
  color: var(--secondary);
}

.history__hero-placeholder small {
  font-size: 0.8rem;
}

.history__highlights {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: var(--card-shadow);
}

.history__highlights h4,
.history__donations h4,
.timeline h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.history__highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.history__highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.history__highlight-item i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.history__donations {
  background: color-mix(in srgb, var(--secondary) 8%, var(--surface));
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 60px;
}

.history__donations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.history__donations-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--surface);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--border);
}

.history__donations-grid span i {
  color: var(--secondary);
}

/* Timeline */
.timeline__wrapper {
  position: relative;
  padding-left: 40px;
}

.timeline__wrapper::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--secondary);
  border-radius: 3px;
}

.timeline__item {
  position: relative;
  padding-bottom: 40px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -31px;
  top: 4px;
  width: 20px;
  height: 20px;
  background: var(--secondary);
  border: 4px solid var(--bg);
  border-radius: 50%;
  z-index: 2;
}

.timeline__content {
  padding: 0 0 0 20px;
}

.timeline__date {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.timeline__content h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.timeline__content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============================================================
   EVENTS
   ============================================================ */
.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.event-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: all 0.3s ease !important;
}

.event-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.event-card__image {
  height: 160px;
  background: var(--surface-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--secondary);
  position: relative;
}

.event-card__body {
  padding: 24px;
}

.event-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  background: color-mix(in srgb, var(--secondary) 12%, transparent);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.event-card__body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.event-card__body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.event-card__date {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--secondary);
}

.event-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--secondary);
  color: var(--text-on-secondary);
}

.event-card--upcoming {
  border: 2px solid var(--secondary);
}

/* ============================================================
   UPCOMING
   ============================================================ */
.upcoming__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--card-shadow);
  border: 2px solid var(--secondary);
  align-items: center;
  margin-bottom: 40px;
}

.upcoming__date {
  text-align: center;
  background: color-mix(in srgb, var(--secondary) 10%, var(--surface));
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--secondary);
}

.upcoming__date-day {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
}

.upcoming__date-month {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
}

.upcoming__date-year {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
}

.upcoming__info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.upcoming__info p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.upcoming__desc {
  margin-top: 8px !important;
}

.upcoming__info .upcoming__actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.upcoming__icon {
  font-size: 3rem;
  color: var(--secondary);
  opacity: 0.3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upcoming__cta {
  text-align: center;
  padding: 40px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

.upcoming__cta p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-bottom: 40px;
}

.gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: var(--surface-hover);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px dashed var(--border);
  transition: all 0.3s ease !important;
}

.gallery__item--large .gallery__placeholder {
  min-height: 400px;
}

.gallery__placeholder:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: color-mix(in srgb, var(--secondary) 5%, transparent);
}

.gallery__placeholder i {
  font-size: 2.5rem;
  color: var(--secondary);
  opacity: 0.5;
}

.gallery__item--large .gallery__placeholder i {
  font-size: 4rem;
}

.gallery__instagram {
  text-align: center;
}

/* ============================================================
   DONATE
   ============================================================ */
.donate__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.donate__info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.donate__list {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.donate__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  font-weight: 500;
}

.donate__list li i {
  color: var(--secondary);
  width: 20px;
  text-align: center;
}

.donate__history {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  border-left: 4px solid var(--secondary);
}

.donate__history h4 {
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.donate__history p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.donate__ways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.donate__card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}

.donate__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--secondary) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--secondary);
  margin: 0 auto 16px;
}

.donate__card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.donate__card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   STORE
   ============================================================ */
.store__content {
  text-align: center;
}

.store__placeholder {
  max-width: 500px;
  margin: 0 auto;
  padding: 60px 40px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  border: 2px dashed var(--border);
}

.store__placeholder i {
  font-size: 3.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.store__placeholder h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.store__placeholder > p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.store__preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.store__preview li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
}

.store__preview li i {
  font-size: 0.9rem;
  margin: 0;
  color: #28a745;
}

.store__soon {
  font-weight: 600;
  color: var(--secondary);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  text-align: center;
}

.contact__card i {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.contact__card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact__card a,
.contact__card p {
  font-size: 0.85rem;
  color: var(--text-light);
  word-break: break-all;
}

.contact__card a:hover {
  color: var(--secondary);
}

.contact__form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}

.contact__form h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.form__group {
  margin-bottom: 16px;
}

.form__input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  color: var(--text);
  outline: none;
  transition: all 0.3s ease !important;
}

.form__input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondary) 15%, transparent);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   SUPPORTERS
   ============================================================ */
.supporters__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.supporter-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: all 0.3s ease !important;
}

.supporter-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.supporter-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 20px;
  text-align: center;
}

.supporter-card__placeholder i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.supporter-card__placeholder strong {
  font-size: 1rem;
}

.supporter-card__placeholder small {
  font-size: 0.8rem;
  color: var(--text-light);
}

.supporter-card--add {
  border-style: dashed;
  background: transparent;
}

.supporter-card--add .supporter-card__placeholder i {
  opacity: 0.4;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 80px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer__logo {
  height: 50px;
  width: auto;
  margin-bottom: 12px;
}

.footer__brand h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.footer__brand p {
  font-size: 0.95rem;
  opacity: 0.7;
  font-style: italic;
  margin-bottom: 16px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 1.1rem;
  transition: all 0.3s ease !important;
}

.footer__social a:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer__links li,
.footer__contact li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: all 0.3s ease !important;
}

.footer__links a:hover {
  opacity: 1;
  color: var(--secondary);
}

.footer__contact li {
  font-size: 0.9rem;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__contact li i {
  color: var(--secondary);
  width: 16px;
}

.footer__slogan-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  text-align: center;
}

.footer__slogan-badge i {
  font-size: 2rem;
  color: var(--secondary);
}

.footer__slogan-badge span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer__madeby i {
  color: var(--secondary);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #FFFFFF;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2001;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 300px;
  color: rgba(255, 255, 255, 0.5);
  gap: 16px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
}

.lightbox__placeholder i {
  font-size: 3rem;
}

/* ============================================================
   ACHIEVEMENTS (MURAL DE CONQUISTAS)
   ============================================================ */
.achievements__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.achievement__card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: all 0.3s ease !important;
}

.achievement__card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.achievement__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--secondary) 15%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--secondary);
  margin: 0 auto 16px;
}

.achievement__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
}

.achievement__number .counter {
  display: inline-block;
}

.achievement__label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ============================================================
   PROGRESS BAR (DOAÇÕES)
   ============================================================ */
.donate__progress {
  margin-top: 24px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
}

.donate__progress h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.donate__progress h4 i {
  color: var(--secondary);
}

.donate__progress-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.progress-bar {
  width: 100%;
  height: 28px;
  background: var(--surface-hover);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.progress-bar__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  transition: width 1.5s ease !important;
  min-width: 0;
}

.progress-bar__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-on-secondary);
  white-space: nowrap;
}

.progress-bar__stats {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.progress-bar__stats strong {
  color: var(--text);
}

/* ============================================================
   CALENDAR
   ============================================================ */
.calendar {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.calendar__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.calendar__nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease !important;
  font-size: 1rem;
}

.calendar__nav:hover {
  background: var(--secondary);
  color: var(--text-on-secondary);
  border-color: var(--secondary);
}

.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}

.calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.calendar__day--empty {
  visibility: hidden;
}

.calendar__day--event {
  background: color-mix(in srgb, var(--secondary) 15%, transparent);
  color: var(--secondary);
  font-weight: 700;
  cursor: pointer;
}

.calendar__day--event::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
}

.calendar__day--today {
  border: 2px solid var(--secondary);
  font-weight: 800;
}

.calendar__events {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.calendar__event {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.calendar__event-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--secondary);
  display: inline-block;
}

.calendar__event strong {
  display: block;
  font-size: 0.9rem;
}

.calendar__event small {
  font-size: 0.8rem;
  color: var(--text-light);
}

.calendar__legend {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.calendar__legend .calendar__event-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
}

/* ============================================================
   TRAILS (NOSSAS TRILHAS)
   ============================================================ */
.trails__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.trail__card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease !important;
}

.trail__card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.trail__card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--secondary) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--secondary);
  margin: 0 auto 20px;
}

.trail__card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.trail__card-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.trail__card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
}

.trail__card-meta span i {
  color: var(--secondary);
}

.trail__card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.trails__cta {
  text-align: center;
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}

.trails__cta p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .about__content {
    grid-template-columns: 1fr;
  }

  .about__founders {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .section__title {
    font-size: 1.8rem;
  }

  .nav__list {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--header-bg);
    backdrop-filter: blur(var(--header-blur));
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav__list.active {
    display: flex;
  }

  .nav__link {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .nav__toggle {
    display: block;
  }

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

  .history__hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .gallery__item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

  .gallery__item--large .gallery__placeholder {
    min-height: 200px;
  }

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

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

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

  .contact__info {
    order: 2;
  }

  .contact__form {
    order: 1;
  }

  .upcoming__card {
    grid-template-columns: auto 1fr;
  }

  .upcoming__icon {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero__title-line--big {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

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

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

  .calendar__weekdays span:nth-child(6),
  .calendar__weekdays span:nth-child(7),
  .calendar__day--weekend {
    color: var(--secondary);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

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

  .gallery__item--large {
    grid-column: auto;
  }

  .theme-switcher {
    display: none;
  }

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

  .upcoming__card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .upcoming__date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
  }

  .upcoming__date-day {
    font-size: 1.5rem;
  }

  .upcoming__info .upcoming__actions {
    justify-content: center;
  }

  .history__highlights {
    padding: 24px;
  }

  .history__donations {
    padding: 24px;
  }

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

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

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

  .achievement__number {
    font-size: 2rem;
  }
}
