@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0D2137;
  --navy-light: #1a3a5c;
  --gold: #C9A84C;
  --gold-light: #e0c872;
  --gold-dark: #a8893a;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --gray-50: #f0f1f3;
  --gray-100: #e2e4e8;
  --gray-200: #c5c9d0;
  --gray-400: #8b92a0;
  --gray-600: #555d6e;
  --gray-800: #2a3040;
  --black: #111827;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(13,33,55,0.08);
  --shadow-md: 0 4px 16px rgba(13,33,55,0.10);
  --shadow-lg: 0 8px 32px rgba(13,33,55,0.14);
  --shadow-xl: 0 16px 48px rgba(13,33,55,0.18);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

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

@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(13,33,55,0.06);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--transition);
}

.header.scrolled .header-inner { height: 64px; }

.logo { display: flex; align-items: center; gap: 14px; }
.logo-img {
  width: 44px; height: 44px;
  border-radius: 10px;
  object-fit: contain;
  transition: transform var(--transition);
}
.logo:hover .logo-img { transform: scale(1.08) rotate(-3deg); }
.logo:hover .logo-icon { transform: scale(1.08) rotate(-3deg); }

.logo-text h1 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--navy); letter-spacing: 0.5px;
  line-height: 1.2;
}
.logo-text span {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: 2px;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 14px; font-weight: 500;
  color: var(--gray-600);
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after { width: 100%; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px; font-weight: 600;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 15px; font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--white);
  font-size: 14px; font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.mobile-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
}
.mobile-toggle span {
  width: 24px; height: 2px;
  background: var(--navy);
  transition: all var(--transition);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .nav.active {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    border-top: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(160deg, var(--navy) 0%, #0a1a2e 50%, #061220 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute; inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 25% 25%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  animation: glow-pulse 6s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  font-size: 13px; font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.hero h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero h2 .gold { color: var(--gold); }

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat h3 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat p {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0; margin-top: 4px;
}

/* SECTIONS */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
}

.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 16px;
}

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

.mvv-card {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all var(--transition);
}

.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.mvv-card .icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
}

.mvv-card h4 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.mvv-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .mvv-grid { grid-template-columns: 1fr; }
}

/* SERVICES */
.services-section { background: var(--off-white); }

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

.service-card {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  color: var(--gold);
  transition: transform var(--transition);
}

.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* BENEFITS */
.benefits-section {
  background: linear-gradient(160deg, var(--navy) 0%, #0a1a2e 100%);
  color: var(--white);
}

.benefits-section .section-title { color: var(--white); }
.benefits-section .section-subtitle { color: rgba(255,255,255,0.6); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.benefit-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  transform: translateX(4px);
}

.benefit-check {
  width: 28px; height: 28px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
}

.benefit-item p {
  font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,0.9);
}

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

/* TARGET */
.target-section { background: var(--off-white); }

.target-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-100);
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.target-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--navy), var(--gold));
}

.target-card h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.target-card p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* CLIENTS */
.clients-section { background: var(--off-white); }

.client-showcase {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 48px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.client-showcase::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, #e91e63, #f06292, var(--gold));
}

.client-logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius);
}

.client-logo-area img {
  max-width: 220px;
  max-height: 160px;
  object-fit: contain;
}

.client-info h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.client-tagline {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.client-info > p:last-of-type {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

.client-highlights {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.client-highlights span {
  padding: 6px 16px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

@media (max-width: 768px) {
  .client-showcase {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  .client-logo-area { padding: 16px; }
}

/* PARTNERS */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.partner-card {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all var(--transition);
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.partner-logo {
  height: 72px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}

.partner-logo img {
  max-height: 60px;
  max-width: 180px;
  object-fit: contain;
}

.partner-card h4 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.partner-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.partner-featured {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.15);
  position: relative;
}

.partner-featured::before {
  content: '★ Parceiro Destaque';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

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

/* CTA */
.cta-section {
  background: linear-gradient(160deg, var(--navy) 0%, #0a1a2e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-content { position: relative; z-index: 2; }

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
}

/* CONTACT */
.contact-section { background: var(--off-white); }

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

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
  display: flex; align-items: center; gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.contact-info-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.contact-info-card h4 {
  font-size: 13px; font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-card a, .contact-info-card p {
  font-size: 16px; font-weight: 600;
  color: var(--navy);
}
.contact-info-card a:hover { color: var(--gold); }

.contact-form {
  padding: 40px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-800);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 140px; }

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

/* FOOTER */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p { font-size: 14px; line-height: 1.7; }

.footer h4 {
  font-size: 14px; font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer ul a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

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

/* ODS */
.ods-section {
  background: linear-gradient(170deg, #0b1a2b 0%, #0f2640 40%, #132f50 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.ods-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(76, 159, 56, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(38, 189, 226, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 50px 50px;
}

.ods-section .section-title { color: var(--white); }
.ods-section .section-subtitle { color: rgba(255,255,255,0.65); }
.ods-section .section-header { margin-bottom: 48px; }

.ods-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.ods-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 10px 16px;
  background: var(--ods-color);
  border-radius: 12px;
  cursor: default;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 1;
  overflow: visible;
}

.ods-tile:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow:
    0 12px 32px rgba(0,0,0,0.35),
    0 0 20px color-mix(in srgb, var(--ods-color) 30%, transparent);
  z-index: 10;
}

.ods-tile::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(13, 33, 55, 0.95);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 8px;
  width: 220px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 100;
}

.ods-tile:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.ods-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.ods-emoji {
  font-size: 24px;
  margin: 6px 0 4px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.ods-label {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.ods-footer-note {
  text-align: center;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}

.ods-footer-note p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

.ods-footer-note a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.ods-footer-note a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .ods-mosaic { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 8px; }
  .ods-tile { padding: 14px 8px 12px; }
  .ods-num { font-size: 18px; }
  .ods-emoji { font-size: 20px; }
  .ods-label { font-size: 9px; }
}

@media (max-width: 400px) {
  .ods-mosaic { grid-template-columns: repeat(3, 1fr); }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* RESPONSIVE TWEAKS */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .hero-content { padding: 40px 0; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-gold, .hero-buttons .btn-outline { width: 100%; justify-content: center; }
  .target-card { padding: 40px 24px; }
}
