:root {
  --navy: #0B3C56;
  --blue: #307297;
  --sky: #CBE7F5;
  --sky-line: #A9D5EC;
  --line: #DCE9F1;
  --soft: #F1F8FC;
  --muted: #5E7B8A;
  --body: #40606F;
  --white: #FFFFFF;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", Helvetica, Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--blue); }
button { font-family: inherit; }
img { max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo img { height: 24px; width: auto; display: block; }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a { font-size: .9rem; font-weight: 500; }
.nav a.is-active { color: var(--blue); }

body.theme-gdl {
  --navy: #0B3C56;
  --blue: #F08B1F;
  --sky: #F8D4A8;
  --sky-line: #F0B45A;
  --line: #F5D9B0;
  --soft: #FDF3E6;
  --muted: #C46E16;
  --body: #40606F;
}
body.theme-gdl .site-footer { background: #F08B1F; }
body.theme-gdl .footer-links a:hover { color: #FCE8C8; }
body.theme-gdl .btn-primary,
body.theme-gdl .btn-linkedin { background: #F08B1F; }
body.theme-gdl .btn-primary:hover,
body.theme-gdl .btn-linkedin:hover { background: #F5A03A; }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 13px 28px;
  border-radius: 40px;
  font-weight: 500;
  font-size: .88rem;
  cursor: pointer;
  transition: background .18s;
  display: inline-flex;
  align-items: center;
}
.btn-primary:hover { background: var(--blue); color: var(--white); }
.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 16px 30px;
  border-radius: 40px;
  font-weight: 500;
  font-size: .94rem;
  cursor: pointer;
  transition: background .18s;
}
.btn-linkedin:hover { background: var(--blue); }
.btn-linkedin svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 16px 30px;
  border-radius: 40px;
  font-weight: 500;
  font-size: .94rem;
  cursor: pointer;
  transition: color .18s, border-color .18s;
  display: inline-flex;
  align-items: center;
}
a.btn-ghost:hover,
.btn-ghost.is-copied {
  color: var(--blue);
  border-color: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--sky-line);
}
.hero-ring.a { top: -90px; right: 34%; width: 230px; height: 230px; }
.hero-ring.b { bottom: 40px; right: 30%; width: 170px; height: 170px; }
.hero-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 76px 40px 96px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 56px;
  align-items: center;
}
.eyebrow {
  color: var(--blue);
  font-weight: 500;
  letter-spacing: .22em;
  font-size: .8rem;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 700;
  margin: 0 0 26px;
  text-wrap: balance;
}
.hero-rule {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
}
.hero-rule .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  display: block;
}
.hero-rule .line {
  width: 70px;
  height: 1px;
  background: var(--blue);
  display: block;
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.62;
  color: var(--body);
  margin: 0 0 40px;
  max-width: 48ch;
  text-wrap: pretty;
}
.hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
}
.hero-blob.navy { top: 8px; left: 6%; width: 120px; height: 120px; background: var(--blue); }
.hero-blob.sky { bottom: 6%; right: 2%; width: 86px; height: 86px; background: var(--sky-line); }
.hero-circle {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}
.hero-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.section-title {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -.025em;
  font-weight: 700;
  max-width: 22ch;
  text-wrap: balance;
}
.evento { padding: 110px 40px 20px; }
.evento-lead {
  margin-top: 28px;
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--body);
}
.features { padding: 70px 40px 100px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  border-top: 1px solid var(--line);
}
.feature {
  padding: 38px 40px 34px;
  border-bottom: 1px solid var(--line);
}
.feature:not(:first-child) { border-left: 1px solid var(--line); }
.feature:first-child { padding-left: 0; }
.feature:last-child { padding-right: 0; }
.feature img {
  width: 56px;
  height: 56px;
  display: block;
  margin-bottom: 24px;
}
.feature h3 {
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.details { background: var(--soft); }
.details-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 56px;
  align-items: center;
}
.details-kicker {
  color: var(--blue);
  font-weight: 500;
  letter-spacing: .2em;
  font-size: .78rem;
  margin-bottom: 22px;
}
.details .section-title { margin-bottom: 18px; max-width: 16ch; }
.details .evento-lead { margin: 0 0 28px; }
.details-photo {
  width: 100%;
  min-height: 340px;
  height: 100%;
  object-fit: cover;
  object-position: 40% 30%;
  display: block;
  border-radius: 20px;
}

.cities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.city-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 28px 24px;
  transition: border-color .18s, transform .18s;
}
.city-card:hover {
  border-color: var(--blue);
  color: var(--navy);
  transform: translateY(-2px);
}
.city-card .label {
  color: var(--blue);
  font-weight: 500;
  letter-spacing: .16em;
  font-size: .72rem;
  margin-bottom: 10px;
}
.city-card .place {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.city-card .date {
  font-size: 1.12rem;
  font-weight: 700;
  margin: 12px 0 18px;
}
.city-card .go {
  color: var(--blue);
  font-weight: 500;
  font-size: .92rem;
}
.city-card.is-static:hover { transform: none; border-color: var(--line); }
.city-card-gdl {
  background: #FDF3E6;
  border-color: #F8D4A8;
}
.city-card-gdl .label,
.city-card-gdl .go { color: #F08B1F; }
.city-card-gdl:hover { border-color: #F08B1F; }

.share { padding: 72px 40px 40px; }
.share-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 64px;
  align-items: start;
}
.share-kicker {
  color: var(--blue);
  font-weight: 500;
  letter-spacing: .2em;
  font-size: .76rem;
  margin-bottom: 20px;
}
.share h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -.025em;
  font-weight: 700;
  margin: 0 0 34px;
}
.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.share-note {
  font-size: .9rem;
  line-height: 1.55;
  max-width: 42ch;
  color: var(--muted);
}
.share-note.is-confirm { color: var(--blue); }
.preview-label {
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--muted);
  margin-bottom: 14px;
}
.preview-card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
}
.preview-stack { display: flex; flex-direction: column; gap: 22px; }
.preview-card img { width: 100%; display: block; }
.preview-card .meta {
  padding: 18px 20px 20px;
  border-top: 1px solid var(--line);
}
.preview-card .meta strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.32;
  margin-bottom: 7px;
}
.preview-card .meta p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.45;
}

.suggested { padding: 40px 40px 110px; }
.suggested-inner {
  border-top: 1px solid var(--line);
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.suggested .preview-label {
  width: 100%;
  max-width: 78ch;
}
.quote {
  background: var(--soft);
  padding: 40px 44px 36px;
  width: 100%;
  max-width: 78ch;
  border-radius: 20px;
}
.quote p {
  font-size: 1.02rem;
  line-height: 1.68;
  margin: 0 0 18px;
  white-space: pre-line;
  text-wrap: pretty;
}
.hashtags { color: var(--blue); font-size: .9rem; font-weight: 500; }

.materiales { padding: 0 40px 110px; }
.materiales-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.materiales-head h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.download {
  font-size: .92rem;
  font-weight: 500;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.materiales img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.72);
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 40px 40px;
}
.footer-logo { height: 22px; width: auto; display: block; margin-bottom: 44px; }
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 28px;
  font-size: .85rem;
}
.footer-links { display: flex; gap: 26px; }
.footer-links a { color: rgba(255,255,255,.72); }
.footer-links a:hover { color: var(--sky); }

@media (max-width: 820px) {
  .header-inner { padding: 0 20px; height: 68px; }
  .nav .hide-sm { display: none; }
  .hero-inner, .evento, .features, .details-inner, .share, .suggested, .materiales, .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .feature { padding: 28px 0; border-left: none !important; }
  .hero-photo { min-height: 320px; }
}
