:root {
  --bg: #232529;
  --bg-2: #1d1f23;
  --surface: #2b2e33;
  --surface-soft: #30343a;
  --text: #f2efcf;
  --muted: #c5c6cb;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #41056f;
  --accent-2: #6b1a9e;
  --container: 1180px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.38);
}

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

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: Outfit, sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      900px 460px at 82% -20%,
      rgba(255, 86, 30, 0.12),
      transparent 62%
    ),
    radial-gradient(
      600px 350px at 0% 100%,
      rgba(255, 255, 255, 0.06),
      transparent 70%
    ),
    var(--bg);
}

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 3rem 0;
}

.section-subtitle {
  margin: 0.8rem 0 1.8rem;
  max-width: 720px;
}

.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 30;
  background: rgba(24, 26, 30, 0.35);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(24, 26, 30, 0.9);
  border-color: var(--line);
}

.nav {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  width: clamp(130px, 18vw, 180px);
  height: auto;
  object-fit: contain;
  align-self: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-event-meta {
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #ece9c6;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-link {
  color: #f4f0ca;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
}

.nav-divider {
  color: #00ff8b;
  font-weight: 700;
}

.btn {
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.95rem 1.5rem;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

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

.btn-primary {
  color: #41056f;
  background: #00ff8b;
  box-shadow: 0 10px 28px rgba(0, 255, 139, 0.35);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8.6rem 0 7.6rem;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-yt-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  background:
    linear-gradient(
      95deg,
      rgba(65, 5, 111, 0.55) 0%,
      rgba(65, 5, 111, 0.45) 42%,
      rgba(65, 5, 111, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(65, 5, 111, 0.18) 0%,
      rgba(65, 5, 111, 0.42) 100%
    );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  display: grid;
  gap: 1rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.hero p {
  max-width: 660px;
  font-size: clamp(1.1rem, 1.8vw, 2rem);
  line-height: 1.2;
  color: #ebe7c5;
}

.hero-actions {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero .btn-primary {
  border-radius: 8px;
  min-width: 300px;
  box-shadow: none;
}

.site-header .btn-primary {
  border-radius: 8px;
  padding: 0.9rem 2rem;
  box-shadow: none;
}

.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  height: 58px;
  background: #41056f;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.hero-ticker-marquee {
  height: 100%;
  width: max-content;
  display: flex;
  align-items: center;
  animation: tickerMove 22s linear infinite;
  will-change: transform;
}

.hero-ticker-group {
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 1.6rem;
  padding: 0 0.8rem;
}

.hero-ticker-group span {
  color: #edd5ff;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.tickets {
  background: #dcdbba;
  padding-top: 3.6rem;
  padding-bottom: 2.2rem;
}

.tickets h2 {
  color: #04050a;
  text-align: center;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  margin-bottom: 1.6rem;
}

.tickets .section-subtitle {
  text-align: center;
  color: #242529;
  margin-inline: auto;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: start;
}

.ticket-plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.2rem;
  background: linear-gradient(135deg, #1a1c20 0%, #0a0b0d 100%);
  border: 1px solid #222;
  border-bottom: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top: 3px solid #5bc7f3;
}

.ticket-plan-name {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}

.ticket-plan-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ticket-plan-body {
  padding: 1.4rem 1.35rem 1.2rem;
  min-height: 0;
  display: flex;
  flex-direction: column;
  color: #f6efcd;
  background: #04060a;
  border-left: 1px solid #0f1012;
  border-right: 1px solid #0f1012;
}

.ticket-kicker {
  color: #f0ebcc;
  font-weight: 400;
  line-height: 1.2;
  font-size: 1.2rem;
}

.ticket-kicker strong {
  font-weight: 800;
  font-size: 1.45rem;
  display: inline;
}

.ticket-divider {
  width: 40px;
  height: 3px;
  background: #5bc7f3;
  margin: 1rem 0;
  border-radius: 2px;
}

.ticket-plan--day .ticket-divider {
  background: #f2ba3c;
}
.ticket-plan--vip .ticket-divider {
  background: #a582ea;
}
.ticket-plan--cosplay .ticket-divider {
  background: #f472b6;
}

.ticket-features {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0;
}

.ticket-features li {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  padding: 0.3rem 0;
  color: rgba(242, 239, 205, 0.85);
}

.ticket-features li::before {
  content: "\2713";
  margin-right: 0.5rem;
  font-weight: 700;
  color: #5bc7f3;
}

.ticket-plan--day .ticket-features li::before {
  color: #f2ba3c;
}
.ticket-plan--vip .ticket-features li::before {
  color: #a582ea;
}
.ticket-plan--cosplay .ticket-features li::before {
  color: #f472b6;
}

.ticket-features li.is-off {
  opacity: 0.35;
}

.ticket-features li.is-off::before {
  content: "\2715";
}

.ticket-pricing {
  margin-top: auto;
  padding-top: 1.5rem;
  text-align: center;
}

.ticket-lot-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ff6b6b;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.ticket-price-label {
  text-align: center;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: rgba(240, 239, 207, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ticket-price {
  text-align: center;
  margin-top: 0.15rem;
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  line-height: 1;
  font-weight: 800;
}

.ticket-currency {
  font-size: 0.55em;
  font-weight: 700;
  vertical-align: 0.15em;
}

.ticket-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  margin-top: 1rem;
  border: 0;
  border-radius: 6px;
  background: #5bc7f3;
  color: #061018;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.92rem 0.8rem;
  cursor: pointer;
}

.ticket-btn--group {
  margin-top: 0.45rem;
  background: #19a3d8;
  color: #f8f8f8;
}

.ticket-off {
  margin: 0 auto;
  background: #ebe8c9;
  color: #41056f;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.25rem 0.85rem;
  border-radius: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ticket-include {
  width: 100%;
  border: 1px solid currentColor;
  border-top-width: 2px;
  background: #dcdbba;
  color: #141518;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  padding: 0.62rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.ticket-plan.is-include-open .ticket-include {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ticket-arrow {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.ticket-plan.is-include-open .ticket-arrow {
  transform: rotate(90deg);
}

.ticket-include-panel {
  border: 1px solid currentColor;
  border-top: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 0.9rem 1rem 1rem;
}

.ticket-include-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ticket-include-list li {
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 600;
}

.ticket-include-list li::before {
  content: "\2713  ";
}

.ticket-include-list li.is-off {
  opacity: 0.55;
}

.ticket-include-list li.is-off::before {
  content: "\2715  ";
}

.ticket-plan--biz .ticket-plan-header {
  border-top-color: #50cfff;
}

.ticket-plan--biz .ticket-plan-tag {
  background: rgba(80, 207, 255, 0.2);
  color: #90e0ff;
}

.ticket-plan--biz .ticket-price {
  color: #50cfff;
}

.ticket-plan--biz .ticket-include {
  border-color: #50cfff;
}

.ticket-plan--biz .ticket-include-panel {
  border-color: #50cfff;
  background: #4fc0e5;
  color: #041520;
}

.ticket-plan--biz .ticket-arrow {
  color: #50cfff;
}

.ticket-plan--vip .ticket-btn {
  background: #a582ea;
  color: #130e1f;
}

.ticket-plan--vip .ticket-btn--group {
  background: #8660d8;
  color: #f7f2ff;
}

.ticket-plan--vip .ticket-price {
  color: #a582ea;
}

.ticket-plan--vip .ticket-include {
  border-color: #a582ea;
}

.ticket-plan--vip .ticket-include-panel {
  border-color: #a582ea;
  background: #9a75e6;
  color: #10091a;
}

.ticket-plan--vip .ticket-plan-header {
  border-top-color: #a582ea;
}

.ticket-plan--vip .ticket-plan-tag {
  background: rgba(165, 130, 234, 0.25);
  color: #c9b0ff;
}

.ticket-plan--vip .ticket-arrow {
  color: #a582ea;
}

.ticket-plan--day .ticket-btn {
  background: #f2ba3c;
  color: #151006;
}

.ticket-plan--day .ticket-price {
  color: #f6be3f;
}

.ticket-plan--day .ticket-include {
  border-color: #f2ba3c;
}

.ticket-plan--day .ticket-include-panel {
  border-color: #f2ba3c;
  background: #f0b73b;
  color: #1b1302;
}

.ticket-plan--day .ticket-plan-header {
  border-top-color: #f2ba3c;
}

.ticket-plan--day .ticket-plan-tag {
  background: rgba(242, 186, 60, 0.2);
  color: #f6d680;
}

.ticket-plan--day .ticket-arrow {
  color: #f2ba3c;
}

.ticket-plan--cosplay .ticket-plan-header {
  border-top-color: #f472b6;
}

.ticket-plan--cosplay .ticket-plan-tag {
  background: rgba(244, 114, 182, 0.2);
  color: #ffa8d4;
}

.ticket-plan--cosplay .ticket-btn {
  background: #f472b6;
  color: #1a0a12;
}

.ticket-plan--cosplay .ticket-price {
  color: #f472b6;
}

.ticket-plan--cosplay .ticket-include {
  border-color: #f472b6;
}

.ticket-plan--cosplay .ticket-include-panel {
  border-color: #f472b6;
  background: #f06dae;
  color: #1a0a12;
}

.ticket-plan--cosplay .ticket-arrow {
  color: #f472b6;
}

.ticket-note {
  margin-top: 1.7rem;
  text-align: center;
  color: #77796d;
  font-size: 0.82rem;
  max-width: 980px;
  margin-inline: auto;
}

.benefits {
  background: #00ff8b;
  color: #41056f;
}

.benefits h2 {
  color: #41056f;
  text-align: center;
  font-size: clamp(2.3rem, 4.5vw, 4.3rem);
  line-height: 1.05;
}

.benefits .section-subtitle {
  color: #41056f;
  text-align: center;
  margin-inline: auto;
  font-size: clamp(1.15rem, 2vw, 2rem);
  margin-bottom: 2.8rem;
}

.benefits-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.benefits-track-outer {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.benefits-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  transition: transform 0.4s ease;
  will-change: transform;
}

.benefits-track .benefit-item {
  width: var(--benefit-item-w, 300px);
  flex-shrink: 0;
  min-width: 0;
}

.benefits-nav {
  flex-shrink: 0;
  border: 0;
  background: transparent;
  color: #41056f;
  font-size: 3.2rem;
  line-height: 1;
  cursor: pointer;
  width: 44px;
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #101013;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.benefit-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.benefit-item h3 {
  color: #41056f;
  font-size: 2rem;
  line-height: 1.1;
}

.benefit-eyebrow {
  margin-top: 0.2rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #180d06;
}

.benefit-item p {
  margin-top: 0.8rem;
  color: #1d0e07;
  font-size: 1.15rem;
  line-height: 1.28;
}

.benefit-note {
  margin-top: 2.6rem;
  text-align: center;
  color: #3d1b0d;
  font-size: 0.78rem;
}

.speakers {
  background: linear-gradient(180deg, var(--bg), #22252b);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.speaker-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #1f2227;
  color: var(--text);
  text-align: left;
  padding: 0;
  cursor: default;
  font: inherit;
}

.speaker-card img {
  width: 100%;
  aspect-ratio: 14 / 19;
  object-fit: cover;
}

.speaker-card span {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.75rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.gallery-grid img {
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.faq {
  background: linear-gradient(180deg, #1f2228, #1d2025);
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 0.7rem;
  padding: 1rem;
}

.faq summary {
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 600;
  color: #f0efcf;
}

.faq details p {
  margin-top: 0.6rem;
}

.cta-band {
  padding-top: 4rem;
  padding-bottom: 4.8rem;
}

.cta-band-content {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #2a2d33, #24282e);
  box-shadow: var(--shadow-lg);
  padding: 1.2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.cta-logo {
  width: 130px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #171a1f;
  padding: 1.3rem 0 1.7rem;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo {
  width: 110px;
  height: auto;
  object-fit: contain;
  align-self: center;
}

.footer-inner p {
  font-size: 0.94rem;
}

.footer-inner a {
  color: #f0efcf;
  text-decoration: none;
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.floating-btn {
  border: 0;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0.8rem 1.05rem;
  box-shadow: var(--shadow-lg);
}

.floating-btn--chat {
  background: #26cc5f;
}

.floating-btn--cta {
  background: #00ff8b;
  color: #41056f;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 1.5rem));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #1f232a;
  box-shadow: var(--shadow-lg);
  padding: 1.3rem;
  display: grid;
  gap: 0.85rem;
}

.modal-content--speaker img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 12px;
}

/* Exit popup: prevent image distortion inside grid modal */
#exit-modal .modal-content {
  padding: 0;
  overflow: hidden;
}

#exit-modal .modal-content > a {
  display: block;
}

#exit-modal .modal-content img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .speakers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    background: rgba(24, 26, 30, 0.9);
    border-color: var(--line);
  }

  .hero {
    min-height: 82vh;
    padding-top: 7.2rem;
    padding-bottom: 6rem;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 10vw, 4.2rem);
  }

  .hero p {
    font-size: 1.3rem;
  }

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

  .tickets-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .ticket-plan-body {
    min-height: 0;
    align-items: center;
    text-align: center;
  }

  .ticket-features li {
    text-align: left;
  }

  .cta-band-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-logo {
    margin: 0 auto;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .nav-event-meta,
  .nav-link,
  .nav-divider {
    display: none;
  }

  .hero .btn-primary {
    min-width: 0;
  }

  .benefits-track .benefit-item {
    flex: 0 0 calc(50% - 0.5rem);
  }
}

@media (max-width: 580px) {
  .section {
    padding: 3.8rem 0;
  }

  .speakers-grid,
  .gallery-grid,
  .tickets-grid {
    grid-template-columns: 1fr;
  }

  .benefits-track .benefit-item {
    flex: 0 0 100%;
  }

  .video-wrapper {
    margin-top: 1.2rem;
  }

  .benefit-note {
    margin-top: 1.2rem;
  }

  .benefits-carousel-wrap {
    gap: 0.3rem;
  }

  .benefits-nav {
    font-size: 2rem;
    width: 36px;
  }

  .hero {
    min-height: 76vh;
  }
}

/* ─── Pilares ─── */
.pillars {
  background: #dcdbba;
}
.pillars-title {
  color: #04050a;
  text-align: center;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  margin-bottom: 0.5rem;
}
.pillars-subtitle {
  color: #3c3c3c;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 2.6rem;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
.pillar-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.pillar-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.2rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 74, 16, 0.15);
}
.pillar-icon svg {
  width: 44px;
  height: 44px;
}
.pillar-item h3 {
  color: #04050a;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.pillar-item p {
  color: #3c3c3c;
  font-size: 1rem;
  line-height: 1.55;
}

/* ─── Estatísticas ─── */
.stats {
  background: #dcdbba;
}
.stats-eyebrow {
  display: block;
  text-align: center;
  color: #41056f;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.stats-title {
  color: #04050a;
  text-align: center;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  margin-bottom: 2.4rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
.stat-item {
  text-align: center;
  padding: 1.8rem 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #41056f;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  color: #3c3c3c;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ─── Vídeo ─── */
.video-section {
  background: linear-gradient(180deg, #1d2025, #22252b);
}
.video-title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.video-section .section-subtitle {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 2.4rem;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── Mapa ─── */
.map-section {
  background: #00ff8b;
}
.map-eyebrow {
  display: block;
  text-align: center;
  color: #41056f;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.map-title {
  text-align: center;
  margin-bottom: 0.4rem;
  color: #41056f;
}
.map-section .section-subtitle {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 2.4rem;
  color: #2a0047;
}
.map-wrapper {
  position: relative;
  padding-bottom: 45%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── Speakers toggle ─── */
.speakers-more {
  margin-top: 1.2rem;
}
.speakers-toggle-wrap {
  text-align: center;
  margin-top: 2.5rem;
}
#btn-speakers-toggle {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 8px;
  letter-spacing: 0.05em;
  transition: border-color 0.2s;
}
#btn-speakers-toggle:hover {
  border-color: #fff;
}

/* ─── Footer laranja ─── */
.site-footer {
  border-top: none;
  background: transparent;
  padding: 0;
}
.footer-cta {
  background: linear-gradient(120deg, #2a2d33, #24282e);
  border-top: 1px solid var(--line);
  padding: 3.5rem 0;
}
.footer-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.footer-cta-logo {
  width: 130px;
  height: auto;
  object-fit: contain;
  align-self: center;
}
.footer-cta-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 0.3rem;
}
.btn-footer-cta {
  background: #00ff8b;
  color: #41056f;
  border-radius: 8px;
  padding: 1rem 1.8rem;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(0, 255, 139, 0.35);
  white-space: nowrap;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.footer-orange {
  background: #41056f;
  padding: 2rem 0 1rem;
}
.footer-orange-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: #edd5ff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}
.footer-links a:hover {
  opacity: 0.8;
}
.footer-sep {
  color: rgba(255, 255, 255, 0.5);
}
.btn-sponsor {
  background: #0d0d0d;
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
}
.footer-copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  margin-top: 1.5rem;
  padding-bottom: 1rem;
}

@media (max-width: 860px) {
  .footer-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-cta-logo {
    margin: 0 auto;
  }
  .footer-orange-inner {
    flex-direction: column;
    text-align: center;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .map-wrapper {
    padding-bottom: 65%;
  }
}

/* ─── Speaker cards redesign ─── */
.speaker-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.speaker-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.3s ease;
}
.speaker-card:hover .speaker-img-wrap img {
  transform: scale(1.04);
}
.speaker-flag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  line-height: 1;
}
.speaker-flag img {
  width: 24px;
  height: auto !important;
  object-fit: contain;
  display: block;
}
.speaker-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.75) 40%,
    transparent 100%
  );
  padding: 3rem 0.9rem 0.9rem;
  z-index: 2;
}
.speaker-name-big {
  font-size: clamp(0.88rem, 1.3vw, 1.05rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}
.speaker-bio-small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.speaker-card.is-expanded .speaker-bio-small {
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
}
.speaker-readmore {
  background: none;
  border: 0;
  padding: 0.25rem 0 0;
  margin-top: 0.25rem;
  color: #00ff8b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.speaker-readmore:hover {
  text-decoration: underline;
}
.speaker-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #00ff8b;
  color: #41056f;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.55rem 0.9rem;
  gap: 0.5rem;
  text-align: left;
  letter-spacing: 0.02em;
}
.speaker-tag span:first-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.speaker-plus {
  flex-shrink: 0;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}
.speakers-toggle-wrap {
  text-align: center;
  margin-top: 2.5rem;
}
#btn-speakers-toggle {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 8px;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s;
}
#btn-speakers-toggle:hover {
  border-color: #fff;
}
@media (max-width: 860px) {
  .speakers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .speakers-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Gallery / Motivos redesign ─── */
.gallery {
  background: #f5f0d8;
  padding-left: 0;
  padding-right: 0;
}
.gallery > .container {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}
.gallery-title {
  color: #41056f;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0 var(--container-px, 1.5rem);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  align-self: stretch;
  image-rendering: auto;
}
.gallery-label {
  color: #41056f;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin: 0.7rem 1rem 0.25rem;
  line-height: 1.2;
}
.gallery-desc {
  color: #3c3c3c;
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0 1rem 1.2rem;
}
.gallery-cta-text {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #41056f;
  margin: 2.5rem 0 1.2rem;
}
.gallery-cta-wrap {
  text-align: center;
  margin-bottom: 1rem;
}

/* ─── Stats redesign (cream, 3 numbers) ─── */
.stats {
  background: #f5f0d8;
}
.stats-container {
  text-align: center;
}
.stats-headline {
  color: #41056f;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 2rem;
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.stat-col {
  flex: 1;
  padding: 0.5rem 1.5rem;
}
.stat-col .stat-number {
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 900;
  color: #41056f;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.stat-col .stat-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #41056f;
}
.stat-divider {
  width: 1px;
  height: 90px;
  background: rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}
.stats-bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 520px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.stats-bullets li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
}

/* ─── Video section ─── */
.video-section {
  background: #f5f0d8;
}
.video-title {
  color: #41056f;
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
}
.video-section .section-subtitle {
  display: none;
}

@media (max-width: 760px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .stat-divider {
    width: 80px;
    height: 1px;
  }
}
