@font-face {
  font-family: "Gotham Book";
  src: url("../fonts/GothamBook.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Gotham Rounded Bold";
  src: url("../fonts/Gotham Rounded Bold.otf") format("opentype");
  font-display: swap;
}

:root {
  --primary-blue: #006bb6;
  --primary-blue-dark: #003f68;
  --primary-blue-soft: #dff4ff;
  --primary-green: #73bd44;
  --primary-green-dark: #4d912f;
  --primary-green-soft: #ecf8e5;
  --aqua: #00a8c8;
  --yellow: #ffc33c;
  --orange: #ff793f;
  --pink: #cf1f86;
  --dark: #123040;
  --gray: #61707a;
  --light: #f7fbfd;
  --white: #ffffff;
  --line: #dcebf1;
  --radius: 28px;
  --shadow: 0 24px 60px rgba(0, 63, 104, 0.15);
  --shadow-soft: 0 16px 38px rgba(0, 63, 104, 0.09);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Gotham Book", Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

h1, h2, h3,
.logo,
.nav-links,
.btn,
.eyebrow,
.footer-logo {
  font-family: "Gotham Rounded Bold", "Gotham Book", Arial, Helvetica, sans-serif;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 235, 241, 0.9);
}

.navbar {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  width: 84px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-weight: 900;
  font-size: 0.89rem;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  color: var(--dark);
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
  transition: 0.3s;
  border-radius: 10px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 21px;
  font-weight: 900;
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 107, 182, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-green-dark));
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #cfe3ea;
  color: var(--primary-blue-dark);
}

.btn-outline:hover {
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--primary-blue-dark);
  background: rgba(223, 244, 255, 0.72);
  border: 1px solid rgba(0, 107, 182, 0.12);
}

.btn-light {
  background: #fff;
  color: var(--primary-blue-dark);
}

.agenda-visit-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.45), transparent 24%),
    linear-gradient(135deg, #ff8a18 0%, #ffc33c 34%, #72c642 70%, #08a7c8 100%);
  border: 0;
  box-shadow: 0 16px 34px rgba(0, 107, 182, 0.2), 0 8px 18px rgba(255, 138, 24, 0.22);
  padding-inline: 24px;
}

.agenda-visit-btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
  z-index: -1;
}

.agenda-visit-btn::before {
  content: "";
  position: absolute;
  top: -70%;
  left: -45%;
  width: 42%;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: rotate(22deg);
  transition: left 0.55s ease;
}

.agenda-visit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 42px rgba(0, 107, 182, 0.25), 0 12px 24px rgba(115, 189, 68, 0.2);
}

.agenda-visit-btn:hover::before {
  left: 110%;
}

.agenda-visit-btn::marker {
  display: none;
}

.agenda-visit-btn-light {
  background:
    radial-gradient(circle at 15% 16%, rgba(255, 255, 255, 0.55), transparent 22%),
    linear-gradient(135deg, #ffffff 0%, #e7f8ff 38%, #dff7d8 100%);
  color: var(--primary-blue-dark);
  box-shadow: 0 18px 36px rgba(0, 63, 104, 0.16);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #cfe3ea;
  background: #fff;
  color: var(--primary-blue-dark);
  font-size: 1.4rem;
}

.section {
  padding: 92px 0;
  position: relative;
}

.soft-bg {
  background:
    radial-gradient(circle at 8% 10%, rgba(115, 189, 68, 0.12), transparent 28%),
    radial-gradient(circle at 92% 30%, rgba(0, 168, 200, 0.12), transparent 26%),
    linear-gradient(180deg, #f9fdff, #f4fbf1);
}

.section-blueprint {
  background:
    radial-gradient(circle at top left, rgba(0, 107, 182, 0.24), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(115, 189, 68, 0.22), transparent 28%),
    radial-gradient(circle at 40% 92%, rgba(0, 168, 200, 0.14), transparent 32%),
    linear-gradient(180deg, #ffffff, #f4fbfd 55%, #eef8f1);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--primary-blue-dark);
  border: 1px solid rgba(207, 227, 234, 0.95);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 22px;
  box-shadow: 0 12px 30px rgba(0, 63, 104, 0.07);
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  background: var(--primary-green);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(115, 189, 68, 0.16);
}

.hero {
  padding: 74px 0 64px;
  min-height: calc(100vh - 84px);
  overflow: hidden;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.65;
}

.hero::before {
  width: 420px;
  height: 420px;
  right: -160px;
  top: 120px;
  background: linear-gradient(135deg, rgba(0, 107, 182, 0.14), rgba(115, 189, 68, 0.14));
}

.hero::after {
  width: 240px;
  height: 240px;
  left: -90px;
  bottom: 60px;
  background: linear-gradient(135deg, rgba(255, 195, 60, 0.2), rgba(0, 168, 200, 0.14));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -4px;
  margin-bottom: 24px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--gray);
  font-size: 1.2rem;
  max-width: 650px;
  margin-bottom: 34px;
}

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

.hero-card {
  position: relative;
  min-height: 570px;
  border-radius: 44px;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 64, 104, 0.88), rgba(0, 168, 200, 0.86)),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 36%);
  box-shadow: var(--shadow);
  color: #fff;
}

.hero-card-glow {
  position: absolute;
  inset: auto -70px -100px auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(115, 189, 68, 0.32);
  filter: blur(16px);
}

.bottle-orbit {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 14px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(0, 63, 104, 0.08), 0 30px 60px rgba(0, 0, 0, 0.2);
  animation: floatBottle 4s ease-in-out infinite;
}

.bottle-orbit img {
  width: 128px;
  object-fit: contain;
}

@keyframes floatBottle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

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

.mini-tag {
  display: inline-flex;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
}

.hero-card-content h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
  max-width: 500px;
  margin-bottom: 14px;
}

.hero-card-content p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
  font-size: 1rem;
}

.hero-stats {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  padding: 16px;
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0.86;
  margin-top: 5px;
}

.section-title {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}

.section-title small,
.lives-copy small,
.mission-card small,
.share-copy small,
.map-copy small {
  display: inline-block;
  color: var(--primary-green-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-size: 0.78rem;
}

.section-title h2,
.design-copy h2,
.lives-copy h2,
.mission-card h2,
.share-copy h2,
.map-copy h3 {
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.section-title p,
.design-copy p,
.lives-copy p,
.mission-card p,
.share-copy p,
.map-copy p {
  color: var(--gray);
  font-size: 1.05rem;
}

.local-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.local-card,
.pillar-card,
.power-card,
.action-card {
  background: var(--white);
  border: 1px solid rgba(220, 235, 241, 0.9);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.local-card {
  position: relative;
  overflow: hidden;
}

.local-card::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 107, 182, 0.12), rgba(115, 189, 68, 0.12));
}

.card-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  font-weight: 900;
  margin-bottom: 22px;
}

.local-card h3,
.pillar-card h3,
.power-card h3,
.action-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.local-card p,
.pillar-card p,
.power-card p,
.action-card p,
.part-info p,
.agenda-note p {
  color: var(--gray);
}

.map-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(223, 244, 255, 0.84), rgba(236, 248, 229, 0.84));
  border: 1px solid rgba(220, 235, 241, 0.95);
}

.map-copy h3 {
  font-size: clamp(1.7rem, 2vw, 2.35rem);
  letter-spacing: -1px;
}

.map-dots {
  position: relative;
  min-height: 280px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 36%, rgba(0, 107, 182, 0.16), transparent 4%),
    radial-gradient(circle at 45% 50%, rgba(0, 168, 200, 0.18), transparent 4%),
    radial-gradient(circle at 60% 28%, rgba(115, 189, 68, 0.22), transparent 5%),
    radial-gradient(circle at 74% 65%, rgba(255, 195, 60, 0.26), transparent 5%),
    linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.map-dots::before {
  content: "";
  position: absolute;
  inset: 32px 50px;
  border: 2px dashed rgba(0, 107, 182, 0.26);
  border-radius: 45% 55% 44% 56%;
}

.map-dot {
  position: absolute;
  border: none;
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  color: var(--primary-blue-dark);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0, 63, 104, 0.16);
  cursor: pointer;
}

.map-dot.active {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: #fff;
}

.map-dot:nth-child(1) { left: 11%; top: 42%; }
.map-dot:nth-child(2) { right: 12%; top: 18%; }
.map-dot:nth-child(3) { right: 16%; bottom: 22%; }
.map-dot:nth-child(4) { left: 35%; bottom: 12%; }

.map-info,
.part-info,
.agenda-note {
  background: #fff;
  border: 1px solid rgba(220, 235, 241, 0.95);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.map-info strong,
.part-info strong,
.agenda-note h3 {
  display: block;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.pillars-grid,
.powers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pillar-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--primary-blue-soft);
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.question-banner {
  margin-top: 26px;
  padding: 28px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue), var(--primary-green));
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.question-banner h3 {
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1.05;
}

.question-banner p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 420px;
}

.journey-section {
  background:
    radial-gradient(circle at 5% 15%, rgba(0, 168, 200, 0.12), transparent 28%),
    radial-gradient(circle at 95% 78%, rgba(115, 189, 68, 0.14), transparent 28%),
    #fff;
}

.journey-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}

.journey-steps {
  display: grid;
  gap: 12px;
}

.journey-step {
  text-align: left;
  border: 1px solid rgba(220, 235, 241, 0.95);
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--primary-blue-dark);
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s;
  box-shadow: 0 10px 22px rgba(0, 63, 104, 0.06);
}

.journey-step:hover,
.journey-step.active {
  transform: translateX(5px);
  background: linear-gradient(135deg, var(--primary-blue), var(--aqua));
  color: #fff;
}

.journey-display {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 38px;
  color: #fff;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(0, 63, 104, 0.94), rgba(0, 168, 200, 0.88)),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.16), transparent 24%);
  box-shadow: var(--shadow);
}

.journey-display::after {
  content: "♻";
  position: absolute;
  right: -20px;
  bottom: -110px;
  font-size: 18rem;
  opacity: 0.09;
  line-height: 1;
}

.stage-badge {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 26px;
}

.journey-display h3 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.98;
  margin-bottom: 18px;
  max-width: 640px;
}

.journey-display p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 680px;
  font-size: 1.12rem;
}


.actions-section {
  background: linear-gradient(180deg, #fff, #f6fbfd);
}

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

.action-card {
  min-height: 240px;
  position: relative;
  overflow: hidden;
}

.action-card span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--primary-blue-dark);
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.action-card:nth-child(2) span { background: var(--primary-green-soft); color: var(--primary-green-dark); }
.action-card:nth-child(3) span { background: #ffe6ef; color: var(--pink); }
.action-card:nth-child(4) span { background: var(--primary-blue-soft); color: var(--primary-blue-dark); }

.action-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  right: -55px;
  bottom: -60px;
  background: linear-gradient(135deg, rgba(0, 107, 182, 0.1), rgba(115, 189, 68, 0.1));
}


.actions-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.actions-graphic-card,
.actions-copy-card,
.carbon-card {
  background: var(--white);
  border: 1px solid rgba(220, 235, 241, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.actions-graphic-card {
  padding: clamp(18px, 3vw, 34px);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffffff, #f4fbff 48%, #f7fff2);
}

.steps-graphic {
  width: min(100%, 620px);
  height: auto;
  border-radius: 18px;
  filter: drop-shadow(0 18px 32px rgba(0, 63, 104, 0.12));
}

.actions-copy-card {
  padding: clamp(26px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.actions-copy-card h3 {
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 0.98;
  color: var(--primary-blue-dark);
  margin-bottom: 18px;
}

.actions-copy-card p {
  color: var(--gray);
  font-size: 1.08rem;
  margin-bottom: 26px;
}

.actions-mini-list {
  display: grid;
  gap: 12px;
}

.actions-mini-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: #f6fbfd;
  color: var(--dark);
  font-weight: 800;
}

.actions-mini-list strong {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: #fff;
  flex-shrink: 0;
}

.carbon-section {
  background: radial-gradient(circle at 10% 10%, rgba(223, 244, 255, 0.8), transparent 36%),
              linear-gradient(135deg, #ffffff, #f6fbfd 55%, #f0faeb);
}

.carbon-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 4vw, 56px);
  position: relative;
}

.carbon-card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -140px;
  top: -140px;
  background: rgba(115, 189, 68, 0.12);
}

.carbon-copy {
  position: relative;
  z-index: 2;
}

.carbon-copy small {
  display: inline-flex;
  color: var(--primary-green-dark);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.carbon-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 0.95;
  color: var(--primary-blue-dark);
  margin-bottom: 20px;
}

.carbon-copy p {
  color: var(--gray);
  font-size: 1.12rem;
  margin-bottom: 28px;
  max-width: 640px;
}

.carbon-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.carbon-visual img {
  max-height: 520px;
  width: auto;
  filter: drop-shadow(0 26px 36px rgba(0, 63, 104, 0.13));
}

.design-section {
  overflow: hidden;
}

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

.design-copy h2 {
  margin-bottom: 20px;
}

.part-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.part-btn {
  border: 1px solid rgba(207, 227, 234, 0.95);
  color: var(--primary-blue-dark);
  background: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s;
}

.part-btn:hover,
.part-btn.active {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: #fff;
  border-color: transparent;
}

.bottle-diagram {
  min-height: 560px;
  display: grid;
  place-items: center;
  position: relative;
}

.cap {
  position: absolute;
  top: 30px;
  width: 98px;
  height: 48px;
  background: linear-gradient(135deg, #1fbad6, #0b80b8);
  border-radius: 12px 12px 6px 6px;
  z-index: 4;
}

.neck {
  position: absolute;
  top: 76px;
  width: 76px;
  height: 110px;
  background: rgba(214, 244, 255, 0.88);
  border: 5px solid rgba(0, 107, 182, 0.22);
  border-bottom: none;
  z-index: 3;
}

.bottle-body {
  width: 250px;
  height: 390px;
  border-radius: 88px 88px 58px 58px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.76), rgba(223, 244, 255, 0.72) 42%, rgba(0, 168, 200, 0.26)),
    radial-gradient(circle at 35% 15%, rgba(255, 255, 255, 0.9), transparent 22%);
  border: 6px solid rgba(0, 107, 182, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 70px rgba(0, 63, 104, 0.16);
  margin-top: 120px;
}

.label-band {
  position: absolute;
  left: -10px;
  right: -10px;
  top: 160px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: #fff;
  text-align: center;
  padding: 18px;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.shine {
  position: absolute;
  left: 48px;
  top: 40px;
  width: 28px;
  height: 230px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
}

.bottle-diagram p {
  position: absolute;
  bottom: 0;
  color: var(--primary-blue-dark);
  font-weight: 900;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.timeline-item {
  background: #fff;
  border: 1px solid rgba(220, 235, 241, 0.95);
  border-radius: 22px;
  padding: 22px;
  min-height: 140px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  width: 4px;
  height: 46px;
  background: linear-gradient(var(--primary-blue), var(--primary-green));
  border-radius: 99px;
}

.timeline-item strong {
  display: block;
  color: var(--primary-blue);
  font-size: 1.35rem;
  margin: 26px 0 8px;
}

.timeline-item span {
  color: var(--gray);
  font-weight: 800;
}

.powers-section {
  background:
    radial-gradient(circle at 15% 40%, rgba(255, 195, 60, 0.16), transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(0, 168, 200, 0.12), transparent 26%),
    #fff;
}

.powers-grid {
  grid-template-columns: repeat(3, 1fr);
}

.power-card span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 21px;
  background: var(--primary-green-soft);
  font-size: 2rem;
  margin-bottom: 18px;
}

.lives-section {
  background: linear-gradient(135deg, #003f68, #006bb6 55%, #73bd44);
  color: #fff;
  overflow: hidden;
}

.lives-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.lives-copy small,
.lives-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.lives-copy h2 {
  color: #fff;
}

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

.life-card {
  min-height: 150px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 32px rgba(4, 31, 59, 0.14);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.life-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.44);
}

.life-card img {
  width: 132px;
  height: 112px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 22px;
  background: #ffffff;
  padding: 0;
  box-shadow: 0 14px 22px rgba(0, 47, 84, 0.16);
}

.life-card h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.42vw, 1.34rem);
  line-height: 1.08;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: -0.03em;
  text-wrap: nowrap;
}

.mission-section {
  background:
    radial-gradient(circle at top left, rgba(207, 31, 134, 0.1), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 195, 60, 0.22), transparent 26%),
    #fff;
}

.mission-card {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: center;
  border-radius: 40px;
  padding: 38px;
  background: linear-gradient(135deg, #fff, #f6fbfd);
  border: 1px solid rgba(220, 235, 241, 0.95);
  box-shadow: var(--shadow);
}

.mission-actions,
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.score-preview {
  border-radius: 32px;
  padding: 28px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-blue), var(--pink));
  box-shadow: var(--shadow-soft);
}

.score-preview img {
  width: 118px;
  margin: 0 auto 16px;
  background: #fff;
  border-radius: 50%;
  padding: 12px;
}

.score-preview h3 {
  font-size: 1.7rem;
  line-height: 1.06;
  margin-bottom: 10px;
}

.score-preview p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
}

.score-preview span {
  display: inline-flex;
  margin-top: 16px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-weight: 900;
}

.agenda {
  background: linear-gradient(180deg, #f9fdff, #ffffff);
}

.agenda-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.agenda-panel,
.agenda-dashboard .calendar-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(220, 235, 241, 0.95);
  box-shadow: var(--shadow-soft);
  padding: 30px;
}

.agenda-panel h3,
.calendar-head h3 {
  font-size: 1.65rem;
  margin-bottom: 10px;
}

.agenda-panel > p {
  color: var(--gray);
  margin-bottom: 22px;
}

.agenda-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.86rem;
  font-weight: 900;
  color: var(--primary-blue-dark);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d6e7ed;
  border-radius: 16px;
  padding: 13px 14px;
  background: #fbfdfe;
  color: var(--dark);
  outline: none;
  transition: 0.2s;
}

textarea {
  min-height: 98px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(0, 107, 182, 0.1);
}

.agenda-submit {
  grid-column: 1 / -1;
  margin-top: 6px;
  min-height: 56px;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.45), transparent 22%),
    linear-gradient(135deg, #ff8a18, #ffc33c 28%, #72c642 64%, #08a7c8);
  box-shadow: 0 18px 36px rgba(0, 107, 182, 0.18), 0 12px 24px rgba(255, 138, 24, 0.18);
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.calendar-badge {
  background: var(--primary-green-soft);
  color: var(--primary-green-dark);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.schedule-list {
  display: grid;
  gap: 14px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 14px;
  background: #f7fbfd;
  border: 1px solid rgba(220, 235, 241, 0.85);
  border-radius: 18px;
}

.schedule-time {
  font-weight: 900;
  color: var(--primary-blue-dark);
}

.schedule-info strong,
.schedule-info small {
  display: block;
}

.schedule-info small {
  color: var(--gray);
  margin-top: 2px;
}

.status {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
}

.status.confirmed {
  color: var(--primary-green-dark);
  background: var(--primary-green-soft);
}

.status.pending {
  color: #9a6713;
  background: #fff3cf;
}

.status.full {
  color: #a72c2c;
  background: #ffe5e5;
}

.agenda-note {
  margin-top: 18px;
}

.share-section {
  background:
    radial-gradient(circle at top right, rgba(115, 189, 68, 0.14), transparent 26%),
    #fff;
}

.share-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 34px;
  align-items: center;
}

.qr-mock {
  padding: 28px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(220, 235, 241, 0.95);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.qr-grid {
  width: 210px;
  height: 210px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
  padding: 14px;
  border: 8px solid var(--primary-blue-dark);
  background: #fff;
}

.qr-grid span {
  background: var(--primary-blue-dark);
  border-radius: 5px;
}

.qr-grid span:nth-child(2n),
.qr-grid span:nth-child(7),
.qr-grid span:nth-child(13),
.qr-grid span:nth-child(20) {
  background: transparent;
}

.qr-mock p {
  margin-top: 18px;
  color: var(--primary-blue-dark);
  font-weight: 900;
}

.cta {
  padding: 88px 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue), var(--primary-green));
  color: #fff;
  text-align: center;
}

.cta h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -2px;
  max-width: 850px;
  margin: 0 auto 18px;
}

.cta p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.cta-actions {
  justify-content: center;
}

.shareholders-strip {
  background: #fff;
  padding: 34px 0;
  border-top: 1px solid rgba(220, 235, 241, 0.9);
  border-bottom: 1px solid rgba(220, 235, 241, 0.9);
}

.shareholders-strip-top {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 42px 0 46px;
  box-shadow: 0 16px 35px rgba(11, 36, 48, 0.05);
  overflow: hidden;
}

.shareholders-strip .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.shareholders-strip-top .container {
  width: min(1540px, 96vw);
}

.shareholders-label {
  margin: 0;
  color: #004466;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
}

.shareholders-strip img {
  display: block;
  width: 100%;
  max-width: 1540px;
  height: auto;
}

@media (max-width: 760px) {
  .shareholders-strip-top {
    padding: 30px 0 34px;
  }

  .shareholders-strip-top .container {
    width: min(100% - 24px, 1540px);
  }

  .shareholders-label {
    font-size: 0.95rem;
  }
}

footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 168, 200, 0.13), transparent 32%),
    radial-gradient(circle at 92% 0%, rgba(115, 189, 68, 0.15), transparent 30%),
    rgba(255, 255, 255, 0.94);
  color: var(--dark);
  padding: 68px 0 28px;
  border-top: 1px solid rgba(220, 235, 241, 0.95);
  box-shadow: 0 -18px 46px rgba(0, 63, 104, 0.06);
}

footer::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 107, 182, 0.18), rgba(115, 189, 68, 0.18), transparent);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.footer-grid > div {
  min-height: 100%;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(220, 235, 241, 0.92);
  box-shadow: 0 16px 34px rgba(0, 63, 104, 0.06);
  backdrop-filter: blur(12px);
}

.footer-grid > div:first-child {
  background:
    radial-gradient(circle at 15% 18%, rgba(223, 244, 255, 0.9), transparent 32%),
    radial-gradient(circle at 82% 80%, rgba(236, 248, 229, 0.95), transparent 36%),
    #ffffff;
}

.footer-logo-img {
  width: min(210px, 72vw);
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.footer-logo {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.footer-logo span:first-child {
  color: var(--primary-green);
}

.footer-logo span:last-child {
  color: var(--primary-blue-dark);
}

.footer-grid p {
  color: var(--gray);
  max-width: 400px;
}

.footer-grid h4 {
  color: var(--primary-blue-dark);
  margin-bottom: 14px;
}

.footer-grid a {
  display: block;
  color: var(--gray);
  margin-bottom: 10px;
  font-weight: 900;
}

.footer-grid a:hover {
  color: var(--primary-blue);
  transform: translateX(3px);
}

.footer-agenda-link {
  display: inline-flex !important;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #ff8a18, #72c642, #08a7c8);
  box-shadow: 0 10px 22px rgba(0, 107, 182, 0.15);
}

.footer-agenda-link::after {
  content: "→";
  font-weight: 900;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 107, 182, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(18, 48, 64, 0.68);
  font-size: 0.9rem;
}

.faq-bot {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
}

.faq-window {
  width: min(390px, calc(100vw - 32px));
  height: 540px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 26px 72px rgba(0, 63, 104, 0.28);
  border: 1px solid rgba(220, 235, 241, 0.95);
  overflow: hidden;
  display: none;
  flex-direction: column;
  margin-bottom: 14px;
}

.faq-bot.open .faq-window {
  display: flex;
}

.faq-header {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: #fff;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.faq-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 6px;
}

.faq-agent span {
  display: block;
  font-size: 0.82rem;
  opacity: 0.86;
}

.faq-close {
  border: none;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

.faq-messages {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
  background: #f7fbfd;
}

.message {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 16px;
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.message.bot {
  background: #fff;
  border: 1px solid rgba(220, 235, 241, 0.95);
  color: var(--dark);
  border-bottom-left-radius: 4px;
}

.message.user {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.quick-actions button {
  border: 1px solid #cfe3ea;
  background: #fff;
  color: var(--primary-blue-dark);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 900;
  font-size: 0.78rem;
  cursor: pointer;
}

.faq-input-area {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(220, 235, 241, 0.95);
}

.faq-input-area input {
  border-radius: 999px;
}

.faq-input-area button {
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.faq-toggle {
  border: none;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 42px rgba(0, 107, 182, 0.28);
  cursor: pointer;
  font-weight: 900;
}

.faq-toggle-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  padding: 5px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.65s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@media (max-width: 1080px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-links.open {
    display: grid;
    position: absolute;
    top: 84px;
    left: 4%;
    right: 4%;
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(220, 235, 241, 0.95);
    border-radius: 24px;
    box-shadow: var(--shadow);
    gap: 14px;
  }

  .hero-grid,
  .design-grid,
  .lives-grid,
  .agenda-layout,
  .share-grid,
  .mission-card,
  .journey-layout,
  .map-panel {
    grid-template-columns: 1fr;
  }

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

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

  .hero-card {
    min-height: 520px;
  }
}

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

  .hero {
    padding: 54px 0 58px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-card,
  .journey-display,
  .mission-card {
    border-radius: 30px;
    padding: 26px;
  }

  .local-layout,
  .powers-grid,
  .pillars-grid,
  .actions-grid,
  .timeline,
  .life-cards,
  .agenda-form {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .schedule-item {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 24px;
  }

  .bottle-orbit {
    width: 190px;
    height: 190px;
  }

  .question-banner,
  .calendar-head,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .bottle-diagram {
    min-height: 500px;
  }

  .faq-bot {
    right: 14px;
    bottom: 14px;
  }

  .faq-toggle span:last-child {
    display: none;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .btn {
    width: 100%;
  }

  .hero-buttons,
  .mission-actions,
  .cta-actions {
    width: 100%;
  }

  .bottle-body {
    width: 218px;
  }

  .map-dots {
    min-height: 220px;
  }

  .map-dot {
    font-size: 0.75rem;
    padding: 8px 10px;
  }
}


/* Imagen oficial: anatomía de la botella */
.bottle-diagram {
  min-height: 560px;
  display: grid;
  place-items: center;
  position: relative;
}

.anatomy-bottle-img {
  width: min(100%, 640px);
  max-height: 720px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 28px 45px rgba(0, 63, 104, 0.14));
}

@media (max-width: 760px) {
  .bottle-diagram {
    min-height: auto;
  }

  .anatomy-bottle-img {
    width: min(100%, 520px);
    max-height: none;
  }
}

/* Mejora visual: sección 4 pilares */
.pillars-experience {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.4fr;
  gap: 34px;
  align-items: center;
  margin-top: 8px;
}

.pillar-orbit {
  position: relative;
  min-height: 500px;
  border-radius: 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.9), transparent 18%),
    radial-gradient(circle at 72% 78%, rgba(115, 189, 68, 0.20), transparent 30%),
    linear-gradient(145deg, rgba(223, 244, 255, 0.92), rgba(237, 250, 229, 0.88));
  border: 1px solid rgba(220, 235, 241, 0.95);
  box-shadow: var(--shadow-soft);
}

.pillar-orbit::before {
  content: "";
  position: absolute;
  inset: 32px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px dashed rgba(0, 107, 182, 0.25);
}

.orbit-ring-one {
  width: 320px;
  height: 320px;
}

.orbit-ring-two {
  width: 420px;
  height: 420px;
  border-color: rgba(115, 189, 68, 0.24);
  transform: translate(-50%, -50%) rotate(18deg);
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 218px;
  height: 218px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue), var(--primary-green));
  box-shadow: 0 28px 60px rgba(0, 63, 104, 0.24);
}

.orbit-core span,
.orbit-core em {
  display: block;
  font-style: normal;
  font-weight: 800;
  opacity: 0.88;
}

.orbit-core strong {
  display: block;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -1px;
  margin: 8px 0;
}

.orbit-dot {
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 63, 104, 0.16);
  border: 1px solid rgba(220, 235, 241, 0.98);
}

.orbit-dot::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
}

.dot-one { left: 16%; top: 16%; }
.dot-two { right: 14%; top: 20%; }
.dot-three { left: 18%; bottom: 15%; }
.dot-four { right: 16%; bottom: 14%; }

.pillars-grid-enhanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pillar-card-enhanced {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 30px 28px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pillar-card-enhanced::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -78px;
  top: -72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 107, 182, 0.12), rgba(115, 189, 68, 0.14));
}

.pillar-card-enhanced::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background: linear-gradient(180deg, var(--primary-blue), var(--primary-green));
}

.pillar-card-enhanced:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 63, 104, 0.14);
  border-color: rgba(115, 189, 68, 0.34);
}

.pillar-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(0, 63, 104, 0.14);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2px;
}

.pillar-card-enhanced .pillar-icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(223, 244, 255, 0.98), rgba(236, 248, 229, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.86);
}

.pillar-card-enhanced h3,
.pillar-card-enhanced p,
.pillar-tag {
  position: relative;
  z-index: 1;
}

.pillar-card-enhanced h3 {
  font-size: 1.55rem;
  letter-spacing: -0.4px;
}

.pillar-card-enhanced p {
  min-height: 78px;
}

.pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--primary-blue-dark);
  background: rgba(223, 244, 255, 0.85);
  font-size: 0.84rem;
  font-weight: 900;
}

.pillar-tag::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary-green);
}

.question-banner-enhanced {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  padding: 30px 34px;
}

.question-banner-enhanced::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -72px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.question-banner-enhanced span {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

@media (max-width: 1100px) {
  .pillars-experience {
    grid-template-columns: 1fr;
  }

  .pillar-orbit {
    min-height: 360px;
  }

  .orbit-ring-one { width: 240px; height: 240px; }
  .orbit-ring-two { width: 320px; height: 320px; }
  .orbit-core { width: 180px; height: 180px; }
  .orbit-core strong { font-size: 1.9rem; }
}

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

  .pillar-orbit {
    min-height: 310px;
    border-radius: 30px;
  }

  .orbit-ring-one { width: 210px; height: 210px; }
  .orbit-ring-two { width: 270px; height: 270px; }
  .orbit-core { width: 150px; height: 150px; }
  .orbit-core strong { font-size: 1.55rem; }
  .orbit-dot { width: 58px; height: 58px; border-radius: 18px; }
  .orbit-dot::after { inset: 14px; border-radius: 12px; }

  .question-banner-enhanced {
    align-items: flex-start;
  }
}

/* Ajuste final: sección 4 pilares con gráficos proporcionados */
.pillar-orbit-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 34px;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.92), transparent 18%),
    radial-gradient(circle at 70% 76%, rgba(115, 189, 68, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(223, 244, 255, 0.88), rgba(237, 250, 229, 0.82));
}

.pillar-orbit-image::before,
.pillar-orbit-image .orbit-ring,
.pillar-orbit-image .orbit-core,
.pillar-orbit-image .orbit-dot {
  display: none;
}

.pillar-orbit-image img {
  width: min(100%, 520px);
  height: auto;
  display: block;
  filter: drop-shadow(0 26px 42px rgba(0, 63, 104, 0.12));
}

.pillar-card-enhanced .pillar-icon-img {
  width: 96px;
  height: 96px;
  border-radius: 0;
  margin-bottom: 12px;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.pillar-card-enhanced .pillar-icon-img img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 20px rgba(0, 63, 104, 0.10));
}

.pillar-card-enhanced .pillar-icon-img::before,
.pillar-card-enhanced .pillar-icon-img::after {
  display: none;
}

@media (max-width: 980px) {
  .pillar-orbit-image {
    min-height: auto;
    padding: 28px;
  }

  .pillar-orbit-image img {
    width: min(100%, 420px);
  }
}

@media (max-width: 640px) {
  .pillar-card-enhanced .pillar-icon-img {
    width: 82px;
    height: 82px;
  }

  .pillar-card-enhanced .pillar-icon-img img {
    width: 76px;
    height: 76px;
  }
}



/* Ajuste hero: camión PetStar en tamaño nativo para evitar pixelado */
.hero-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.18), transparent 24%),
    radial-gradient(circle at 28% 38%, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(145deg, #00446b 0%, #078fba 54%, #58b957 100%);
}

.socio-hero-visual {
  position: absolute;
  z-index: 1;
  top: 34px;
  left: 50%;
  width: 300px;
  height: 210px;
  transform: translateX(-50%);
  padding: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.18) 54%, transparent 72%);
  border: 0;
  box-shadow: none;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.socio-hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  opacity: 0.7;
}

.socio-hero-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 246px;
  max-width: 246px;
  height: auto;
  object-fit: contain;
  object-position: center center;
  image-rendering: auto;
  filter: drop-shadow(0 16px 28px rgba(0, 42, 70, 0.22));
}

.hero-card-content {
  position: relative;
  z-index: 2;
  margin-top: 210px;
}

.hero-card-content h2 {
  font-size: clamp(2.05rem, 3vw, 3.05rem);
  line-height: 1.02;
  max-width: 520px;
}

.hero-card-content p {
  max-width: 540px;
}

.hero-stats {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 24px;
}

@media (max-width: 1180px) {
  .hero-card {
    min-height: 550px;
  }

  .socio-hero-visual {
    top: 32px;
    width: 286px;
    height: 200px;
  }

  .socio-hero-visual img {
    width: 246px;
    max-width: 246px;
  }

  .hero-card-content {
    margin-top: 205px;
  }
}

@media (max-width: 780px) {
  .hero-card {
    min-height: auto;
    padding: 28px;
  }

  .socio-hero-visual {
    position: relative;
    top: auto;
    left: auto;
    width: 280px;
    height: 190px;
    margin: 0 auto 16px;
    transform: none;
  }

  .socio-hero-visual img {
    width: 246px;
    max-width: 246px;
  }

  .hero-card-content {
    margin-top: 0;
  }
}


/* Ajuste visual: tarjetas de muchas vidas con fotos reales */
@media (max-width: 1180px) {
  .life-card {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 138px;
    gap: 14px;
  }

  .life-card img {
    width: 112px;
    height: 96px;
  }

  .life-card h3 {
    font-size: clamp(0.95rem, 1.7vw, 1.15rem);
  }
}

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

  .life-card {
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 132px;
  }

  .life-card img {
    width: 120px;
    height: 96px;
  }

  .life-card h3 {
    font-size: clamp(1rem, 4vw, 1.18rem);
    white-space: normal;
  }
}


/* Mapa de accionistas */
.shareholder-map-section {
  background: linear-gradient(180deg, #f7fbff 0%, #eef7f5 100%);
}

.shareholder-map-card {
  margin-top: 26px;
  background: #ffffff;
  border: 1px solid rgba(8, 86, 136, 0.10);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(7, 72, 116, 0.10);
}

.shareholder-map-card img {
  display: block;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .shareholder-map-card {
    padding: 16px;
    border-radius: 24px;
  }
}

/* =========================================================
   Campeones del Reciclaje · Pasaporte WebAR
   Sección agregada sin modificar la estructura existente
========================================================= */
.champions-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(115, 189, 68, 0.22), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(0, 168, 200, 0.22), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #edf9f3 100%);
}

.champions-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 107, 182, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 107, 182, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 84%);
  pointer-events: none;
}

.champions-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 34px;
  align-items: stretch;
}

.champions-copy,
.champions-passport-card,
.champions-note {
  position: relative;
  z-index: 1;
}

.champions-copy {
  padding: clamp(30px, 5vw, 48px);
  border-radius: 36px;
  color: #ffffff;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.24), transparent 22%),
    radial-gradient(circle at 84% 78%, rgba(115, 189, 68, 0.32), transparent 28%),
    linear-gradient(145deg, #003f68 0%, #006bb6 46%, #00a8c8 100%);
  box-shadow: 0 26px 60px rgba(0, 63, 104, 0.18);
  overflow: hidden;
}

.champions-copy::after {
  content: "🏆";
  position: absolute;
  right: -8px;
  bottom: -42px;
  font-size: clamp(9rem, 18vw, 16rem);
  line-height: 1;
  opacity: 0.13;
  transform: rotate(-10deg);
}

.champions-copy small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-family: "Gotham Rounded Bold", "Gotham Book", Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.champions-copy small::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--primary-green);
  box-shadow: 0 0 0 6px rgba(115, 189, 68, 0.22);
}

.champions-copy h2 {
  margin-top: 18px;
  max-width: 520px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.champions-copy p {
  margin-top: 18px;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.03rem;
}

.champions-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.champions-actions .btn-outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

.champions-passport-card {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at 20% 20%, rgba(115, 189, 68, 0.2), transparent 30%);
  border: 1px solid rgba(0, 107, 182, 0.12);
  box-shadow: 0 24px 54px rgba(0, 63, 104, 0.13);
}

.passport-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 107, 182, 0.1);
}

.passport-head span {
  font-family: "Gotham Rounded Bold", "Gotham Book", Arial, Helvetica, sans-serif;
  color: var(--primary-blue-dark);
  font-size: 1.18rem;
}

.passport-head strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  box-shadow: 0 10px 22px rgba(0, 107, 182, 0.16);
}

.passport-progress {
  height: 12px;
  margin: 20px 0 18px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 107, 182, 0.1);
}

.passport-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary-green), var(--aqua), var(--yellow));
  transition: width 0.38s ease;
}

.passport-stamps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.passport-stamp {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 96px;
  padding: 14px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px dashed rgba(0, 107, 182, 0.22);
  box-shadow: 0 12px 28px rgba(0, 63, 104, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.passport-stamp:last-child {
  grid-column: 1 / -1;
}

.passport-stamp.is-captured {
  background: linear-gradient(135deg, rgba(236, 248, 229, 0.96), rgba(223, 244, 255, 0.96));
  border-color: rgba(115, 189, 68, 0.78);
  border-style: solid;
  transform: translateY(-2px);
}

.passport-stamp.is-captured::after {
  content: "CAPTURADO";
  grid-column: 1 / -1;
  justify-self: start;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--primary-green-dark);
  background: rgba(115, 189, 68, 0.14);
  font-family: "Gotham Rounded Bold", "Gotham Book", Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.stamp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #ffffff;
  font-family: "Gotham Rounded Bold", "Gotham Book", Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, var(--primary-blue), var(--aqua));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26), 0 12px 22px rgba(0, 107, 182, 0.18);
}

.stamp-map { background: linear-gradient(135deg, #e34132, #ff793f); }
.stamp-circles { background: linear-gradient(135deg, var(--primary-green), var(--aqua)); }
.stamp-bottle { background: linear-gradient(135deg, #13823c, #73bd44); }
.stamp-plant { background: linear-gradient(135deg, #0b4566, #006bb6); }

.passport-stamp strong {
  display: block;
  color: var(--primary-blue-dark);
  line-height: 1.15;
  font-family: "Gotham Rounded Bold", "Gotham Book", Arial, Helvetica, sans-serif;
}

.passport-stamp small {
  display: block;
  margin-top: 4px;
  color: var(--gray);
  line-height: 1.28;
  font-size: 0.92rem;
}

.champions-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  color: var(--primary-blue-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 107, 182, 0.11);
  box-shadow: 0 12px 26px rgba(0, 63, 104, 0.06);
}

.champions-note strong {
  font-family: "Gotham Rounded Bold", "Gotham Book", Arial, Helvetica, sans-serif;
}

/* Pantalla AR */
body.champions-ar-open {
  overflow: hidden;
}

.champions-ar-shell {
  position: fixed;
  inset: 0;
  width: var(--champions-ar-width, 100vw);
  height: var(--champions-ar-height, 100dvh);
  background: #000;
  overflow: hidden;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.champions-ar-shell.is-active {
  z-index: 99999;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.champions-ar-container {
  position: fixed;
  inset: 0;
  width: var(--champions-ar-width, 100vw);
  height: var(--champions-ar-height, 100dvh);
  overflow: hidden;
  background: #000;
  z-index: 1;
}

.champions-ar-container video {
  position: absolute !important;
  inset: 0 !important;
  width: var(--champions-ar-width, 100vw) !important;
  height: var(--champions-ar-height, 100dvh) !important;
  min-width: var(--champions-ar-width, 100vw) !important;
  min-height: var(--champions-ar-height, 100dvh) !important;
  object-fit: cover !important;
  background: #000 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.champions-ar-container canvas {
  position: absolute !important;
  inset: 0 !important;
  width: var(--champions-ar-width, 100vw) !important;
  height: var(--champions-ar-height, 100dvh) !important;
  background: transparent !important;
  pointer-events: none !important;
}

.champions-ar-hud {
  position: fixed;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(12px + env(safe-area-inset-top, 0)) 12px calc(12px + env(safe-area-inset-bottom, 0));
  pointer-events: none;
}

.champions-ar-topbar,
.champions-ar-passport,
.champions-ar-bottom,
.champions-ar-toast {
  pointer-events: auto;
}

.champions-ar-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 10px;
  border-radius: 22px;
  background: rgba(0, 48, 72, 0.74);
  color: #ffffff;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.champions-ar-topbar div {
  display: grid;
  gap: 2px;
  text-align: right;
}

.champions-ar-topbar span {
  font-size: 0.78rem;
  opacity: 0.82;
}

.champions-ar-topbar strong {
  font-family: "Gotham Rounded Bold", "Gotham Book", Arial, Helvetica, sans-serif;
}

.champions-ar-close {
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}

.champions-ar-passport {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  width: min(960px, 100%);
  margin: 10px auto 0;
}

.champions-ar-passport span {
  border-radius: 999px;
  padding: 8px 11px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 900;
}

.champions-ar-passport span.is-captured {
  background: linear-gradient(135deg, rgba(115, 189, 68, 0.94), rgba(0, 168, 200, 0.94));
}

.champions-ar-toast {
  display: none !important;
  align-self: center;
  margin-top: auto;
  margin-bottom: 12px;
  width: min(520px, 92vw);
  padding: 16px 18px;
  border-radius: 24px;
  color: #ffffff;
  background: rgba(0, 48, 72, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  text-align: center;
  backdrop-filter: blur(16px);
  transform: translateY(16px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.champions-ar-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.champions-ar-toast strong {
  display: block;
  font-family: "Gotham Rounded Bold", "Gotham Book", Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
}

.champions-ar-bottom {
  display: grid;
  gap: 8px;
  justify-items: center;
  width: min(880px, 100%);
  margin: 0 auto;
}

.champions-start-camera {
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  padding: 15px 26px;
  font-size: clamp(1rem, 4.2vw, 1.28rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-green), var(--aqua));
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

.champions-start-camera:disabled {
  opacity: 0.72;
  cursor: wait;
}

.champions-ar-status,
.champions-ar-debug {
  display: none;
  max-width: min(92vw, 820px);
  padding: 9px 12px;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.68);
  text-align: center;
  line-height: 1.25;
}

.champions-ar-status {
  font-size: 0.94rem;
}

.champions-ar-debug {
  font-size: 0.76rem;
  opacity: 0.92;
}

.champions-confetti {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.champions-confetti i {
  position: absolute;
  top: -16px;
  width: 8px;
  height: 14px;
  border-radius: 3px;
  background: #ffffff;
  animation: championsConfettiFall 1.7s ease-in forwards;
}

.champions-confetti i:nth-child(3n) { background: var(--primary-green); }
.champions-confetti i:nth-child(3n + 1) { background: var(--aqua); }
.champions-confetti i:nth-child(3n + 2) { background: var(--yellow); }

@keyframes championsConfettiFall {
  0% { transform: translate3d(0, -20px, 0) rotate(0deg); opacity: 0; }
  12% { opacity: 1; }
  100% { transform: translate3d(var(--x, 0), 105vh, 0) rotate(520deg); opacity: 0; }
}

@media (max-width: 980px) {
  .champions-hero {
    grid-template-columns: 1fr;
  }

  .passport-stamps {
    grid-template-columns: 1fr;
  }

  .passport-stamp:last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .champions-copy,
  .champions-passport-card {
    border-radius: 28px;
  }

  .champions-actions .btn {
    width: 100%;
  }

  .passport-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (orientation: landscape) {
  .champions-ar-bottom {
    width: min(820px, 78vw);
  }
}


/* Ajustes AR iPhone: retícula, sello y bloqueo de desplazamiento */
html.champions-ar-locked,
html.champions-ar-locked body,
body.champions-ar-open {
  overflow: hidden !important;
  overscroll-behavior: none !important;
  touch-action: none;
}

body.champions-ar-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.champions-ar-shell,
.champions-ar-container,
.champions-ar-hud {
  overflow: hidden !important;
  overscroll-behavior: none !important;
  -webkit-overflow-scrolling: auto;
  touch-action: none;
}

.champions-ar-close,
.champions-start-camera,
.champions-final-video-overlay,
.champions-final-video-overlay * {
  touch-action: manipulation;
}

.champions-scan-frame {
  position: fixed;
  left: 50%;
  top: 52%;
  width: min(72vw, 360px);
  height: min(44vh, 300px);
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  border-radius: 26px;
  opacity: 0.96;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.38));
}

.champions-scan-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: radial-gradient(circle at center, rgba(255,255,255,0.06), rgba(255,255,255,0) 58%);
}

.champions-scan-corner {
  position: absolute;
  width: 62px;
  height: 62px;
  border-color: rgba(255, 255, 255, 0.96);
  border-style: solid;
  border-width: 0;
}

.corner-tl { top: 0; left: 0; border-top-width: 5px; border-left-width: 5px; border-radius: 24px 0 0 0; }
.corner-tr { top: 0; right: 0; border-top-width: 5px; border-right-width: 5px; border-radius: 0 24px 0 0; }
.corner-bl { bottom: 0; left: 0; border-bottom-width: 5px; border-left-width: 5px; border-radius: 0 0 0 24px; }
.corner-br { bottom: 0; right: 0; border-bottom-width: 5px; border-right-width: 5px; border-radius: 0 0 24px 0; }

.champions-scan-line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.98), transparent);
  box-shadow: 0 0 18px rgba(255,255,255,0.88), 0 0 34px rgba(115,189,68,0.58);
  animation: championsScanLine 1.95s ease-in-out infinite;
}

@keyframes championsScanLine {
  0% { transform: translateY(-118px); opacity: 0.18; }
  18% { opacity: 1; }
  50% { opacity: 1; }
  100% { transform: translateY(118px); opacity: 0.18; }
}

.champions-stamp-pop {
  position: fixed;
  left: 50%;
  bottom: calc(118px + env(safe-area-inset-bottom, 0));
  width: min(88vw, 430px);
  transform: translate(-50%, 28px) scale(0.92) rotate(-2deg);
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  color: #ffffff;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.champions-stamp-pop.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1) rotate(-2deg);
}

.champions-stamp-pop-inner {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(0, 76, 98, 0.92), rgba(22, 141, 83, 0.94));
  border: 2px dashed rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(18px);
}

.champions-stamp-pop-badge {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 4px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.14);
  font-size: 2rem;
  font-weight: 950;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.22);
}

.champions-stamp-pop small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 900;
  opacity: 0.86;
  margin-bottom: 4px;
}

.champions-stamp-pop strong {
  display: block;
  font-family: "Gotham Rounded Bold", "Gotham Book", Arial, Helvetica, sans-serif;
  font-size: clamp(1.15rem, 4.2vw, 1.55rem);
  line-height: 1.05;
}

.champions-stamp-pop span {
  display: block;
  margin-top: 7px;
  font-size: clamp(0.9rem, 3.3vw, 1.05rem);
  line-height: 1.25;
}

@media (max-width: 700px) {
  .champions-scan-frame {
    top: 50%;
    width: min(78vw, 330px);
    height: min(38vh, 250px);
  }

  .champions-ar-passport {
    gap: 5px;
    margin-top: 6px;
  }

  .champions-ar-passport span {
    padding: 7px 9px;
    font-size: 0.68rem;
  }

  .champions-stamp-pop {
    bottom: calc(96px + env(safe-area-inset-bottom, 0));
  }

  .champions-stamp-pop-inner {
    grid-template-columns: 64px 1fr;
    padding: 13px 14px;
    border-radius: 22px;
  }

  .champions-stamp-pop-badge {
    width: 62px;
    height: 62px;
    font-size: 1.45rem;
  }
}

.champions-ar-status, .champions-ar-debug { display: none !important; }


/* Ajuste iPhone AR: chips arriba, apuntador centrado y sin scroll raro */
.champions-ar-hud {
  display: block !important;
  padding: 0 !important;
  pointer-events: none;
}

.champions-ar-topbar {
  position: fixed;
  top: calc(12px + env(safe-area-inset-top, 0));
  left: 50%;
  transform: translateX(-50%);
  width: min(94vw, 960px);
  margin: 0 !important;
  z-index: 8;
}

.champions-ar-passport {
  position: fixed;
  top: calc(86px + env(safe-area-inset-top, 0));
  left: 50%;
  transform: translateX(-50%);
  width: min(94vw, 760px);
  margin: 0 !important;
  z-index: 8;
}

.champions-scan-frame {
  top: 48% !important;
  z-index: 4 !important;
}

.champions-ar-bottom {
  position: fixed;
  left: 50%;
  bottom: calc(18px + env(safe-area-inset-bottom, 0));
  transform: translateX(-50%);
  z-index: 9;
  pointer-events: auto;
}

.champions-stamp-pop {
  bottom: calc(78px + env(safe-area-inset-bottom, 0)) !important;
  z-index: 10 !important;
}

.champions-ar-shell,
.champions-ar-container,
.champions-ar-hud {
  max-width: 100vw !important;
  max-height: 100dvh !important;
}

body.champions-ar-open {
  overflow: hidden !important;
  overscroll-behavior: none !important;
}

@media (max-width: 700px) {
  .champions-ar-passport {
    top: calc(88px + env(safe-area-inset-top, 0));
    width: min(96vw, 430px);
    gap: 5px;
  }

  .champions-ar-passport span {
    padding: 6px 8px;
    font-size: 0.66rem;
  }

  .champions-scan-frame {
    top: 46% !important;
    width: min(80vw, 330px) !important;
    height: min(34vh, 250px) !important;
  }

  .champions-stamp-pop {
    bottom: calc(74px + env(safe-area-inset-bottom, 0)) !important;
  }
}


/* Pasaporte AR limpio: sin nombres, pero con puntos de avance visibles */
.champions-ar-shell .champions-ar-passport {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 9px;
  width: auto !important;
  max-width: 92vw;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 32, 48, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.champions-ar-shell .champions-ar-passport span {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  padding: 0 !important;
  border-radius: 999px;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  text-indent: -9999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.30);
  border: 2px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.champions-ar-shell .champions-ar-passport span.is-captured {
  background: linear-gradient(135deg, var(--primary-green), var(--aqua));
  border-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 14px rgba(115, 189, 68, 0.72);
}

@media (max-width: 700px) {
  .champions-ar-shell .champions-ar-passport {
    top: calc(86px + env(safe-area-inset-top, 0));
    gap: 8px;
    padding: 7px 10px;
  }

  .champions-ar-shell .champions-ar-passport span {
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
  }
}


/* Ajuste para que los enlaces del menú no queden tapados por el header fijo */
section,
main[id],
[id="campeones-reciclaje"],
[id="agenda"] {
  scroll-margin-top: 104px;
}


/* Fix navegación interna: el landing debe poder hacer scroll normalmente fuera del modo AR */
html:not(.champions-ar-locked),
html:not(.champions-ar-locked) body:not(.champions-ar-open) {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  height: auto !important;
  position: static !important;
  touch-action: auto !important;
  overscroll-behavior-y: auto !important;
}

body:not(.champions-ar-open) .champions-ar-shell {
  pointer-events: none !important;
}

section[id] {
  scroll-margin-top: 110px;
}
