/* ================== RESET / BASE ================== */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html { scroll-padding-top: 80px; }

body {
  background: #0B1020;
  background-image:
    radial-gradient(at 20% 0%, rgba(11, 105, 255, 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 100%, rgba(255, 122, 0, 0.06) 0px, transparent 50%);
}

/* ================== SCROLLBAR ================== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0B1020; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FF7A00 0%, #0B69FF 100%);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #FF7A00 0%, #1AB9FF 100%); }

/* ================== SELECTION ================== */
::selection {
  background: rgba(255, 122, 0, 0.3);
  color: #fff;
}

/* ================== SECTION COMMON ================== */
.section-label {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #1AB9FF;
  background: rgba(26, 185, 255, 0.08);
  border: 1px solid rgba(26, 185, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}

.section-subtitle {
  max-width: 42rem;
  margin: 0 auto;
  color: #98A2B3;
  font-size: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .section-subtitle { font-size: 1.125rem; }
}

/* ================== LINKTREE BUTTONS ================== */
.link-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  background: rgba(16, 23, 53, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.link-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(11, 105, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s;
}

.link-btn:hover {
  border-color: rgba(255, 122, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(255, 122, 0, 0.2);
}

.link-btn:hover::before { opacity: 1; }

.link-btn > * { position: relative; z-index: 1; }

/* ================== LINK BTN FEATURED (destaque marketingcloudBR) ================== */
.link-btn-featured {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.15) 0%, rgba(11, 105, 255, 0.15) 100%);
  border: 1.5px solid rgba(255, 122, 0, 0.5);
  border-radius: 1.25rem;
  text-decoration: none;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  isolation: isolate;
}

.link-btn-featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, #FF7A00, #1AB9FF, #0B69FF, #FF7A00);
  background-size: 300% 300%;
  border-radius: 1.25rem;
  z-index: -2;
  animation: gradient-spin 4s linear infinite;
}

.link-btn-featured::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  background: linear-gradient(135deg, rgba(11, 16, 32, 0.9) 0%, rgba(16, 23, 53, 0.95) 100%);
  border-radius: 1.15rem;
  z-index: -1;
}

@keyframes gradient-spin {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.link-btn-featured:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 25px 50px -12px rgba(255, 122, 0, 0.4),
    0 0 60px -10px rgba(26, 185, 255, 0.3);
}

.link-btn-featured-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.4) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  animation: pulse-slow 3s ease-in-out infinite;
  z-index: 0;
}

.link-btn-featured-badge {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  background: linear-gradient(135deg, #FF7A00, #FFB75D);
  color: #0B1020;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 9999px;
  z-index: 2;
  box-shadow: 0 4px 12px -2px rgba(255, 122, 0, 0.5);
}

.link-btn-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  animation: pulse-slow 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.link-btn-featured-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #FF7A00 0%, #1AB9FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 20px -5px rgba(255, 122, 0, 0.4);
  font-size: 1.5rem;
  color: #fff;
}

.link-btn-featured-icon-overlay {
  position: absolute;
  bottom: -4px;
  right: -4px;
  font-size: 0.85rem !important;
  background: #FFB75D;
  color: #0B1020;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0B1020;
}

.link-btn-featured-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.link-btn-featured-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .link-btn-featured-title { font-size: 1.25rem; }
}

.link-btn-featured-subtitle {
  font-size: 0.75rem;
  color: #98A2B3;
  line-height: 1.4;
}

.link-btn-featured-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.15);
  border: 1px solid rgba(255, 122, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF7A00;
  flex-shrink: 0;
  transition: all 0.3s;
}

.link-btn-featured:hover .link-btn-featured-arrow {
  background: #FF7A00;
  color: #fff;
  transform: translateX(4px);
}

@media (max-width: 480px) {
  .link-btn-featured { padding: 1rem; gap: 0.75rem; }
  .link-btn-featured-icon { width: 48px; height: 48px; font-size: 1.25rem; }
  .link-btn-featured-arrow { width: 36px; height: 36px; }
  .link-btn-featured-badge { top: 0.5rem; right: 0.5rem; font-size: 0.55rem; padding: 0.15rem 0.5rem; }
}

/* ================== TRAIL PILLS (Trailhead links) ================== */
.trail-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(3, 45, 96, 0.4), rgba(26, 185, 255, 0.1));
  border: 1px solid rgba(26, 185, 255, 0.3);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s;
}

.trail-pill:hover {
  border-color: rgba(255, 183, 93, 0.5);
  background: linear-gradient(135deg, rgba(3, 45, 96, 0.6), rgba(255, 183, 93, 0.15));
  transform: translateY(-2px);
}

.trail-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 183, 93, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #FFB75D;
}

/* ================== STAT CARD ================== */
.stat-card {
  text-align: center;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(16, 23, 53, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: rgba(255, 122, 0, 0.3);
  background: rgba(16, 23, 53, 0.7);
}

/* ================== T-PROFILE ================== */
.t-pill {
  background: rgba(11, 16, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s;
}

.t-pill:hover {
  border-color: rgba(255, 122, 0, 0.3);
  transform: translateY(-2px);
}

.t-tech-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(11, 16, 32, 0.4);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.t-tech-item:hover {
  border-color: rgba(26, 185, 255, 0.3);
  background: rgba(11, 16, 32, 0.7);
}

.t-tech-item i { font-size: 1.25rem; margin-top: 0.15rem; }

/* ================== TIMELINE ================== */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

@media (min-width: 768px) {
  .timeline-item { padding-left: 0; }
  .timeline-item:nth-child(odd) { padding-right: calc(50% + 2rem); justify-content: flex-end; }
  .timeline-item:nth-child(even) { padding-left: calc(50% + 2rem); justify-content: flex-start; }
}

.timeline-dot {
  position: absolute;
  top: 1.5rem;
  left: 0.75rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(11, 16, 32, 1);
}

@media (min-width: 768px) {
  .timeline-dot {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-card {
  background: rgba(16, 23, 53, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.timeline-card:hover {
  border-color: rgba(255, 122, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.chip {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  font-size: 0.7rem;
  color: #98A2B3;
}

.chip-primary {
  background: rgba(255, 122, 0, 0.1);
  border-color: rgba(255, 122, 0, 0.3);
  color: #FF7A00;
}

/* ================== FRAMEWORK QUADRANTS ================== */
.framework-quadrant {
  background: linear-gradient(135deg, rgba(16, 23, 53, 0.8), rgba(11, 16, 32, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.framework-quadrant::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, #FF7A00, #1AB9FF);
  transition: height 0.4s;
}

.framework-quadrant:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 0, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.framework-quadrant:hover::before { height: 100%; }

/* ================== COMPETENCY ================== */
.competency-block {
  background: rgba(16, 23, 53, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}

.competency-block:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.competency-header {
  padding: 1rem 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid;
  color: #fff;
}

.tech-chip {
  padding: 0.4rem 0.85rem;
  background: rgba(11, 16, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  font-size: 0.8rem;
  color: #E0E0E0;
  font-weight: 500;
  transition: all 0.2s;
}

.tech-chip:hover {
  border-color: rgba(26, 185, 255, 0.4);
  background: rgba(26, 185, 255, 0.1);
  color: #1AB9FF;
}

/* ================== COMMUNITY ================== */
.community-card {
  display: block;
  background: rgba(16, 23, 53, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.4s;
  cursor: pointer;
}

.community-card:hover {
  border-color: rgba(255, 122, 0, 0.4);
  transform: translateY(-4px);
  background: rgba(16, 23, 53, 0.9);
}

.brand-card {
  display: block;
  background: rgba(16, 23, 53, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s;
  cursor: pointer;
}

.brand-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(26, 185, 255, 0.4);
}

.brand-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 10px 30px -5px rgba(255, 122, 0, 0.3);
}

/* ================== CONTACT CARD ================== */
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(16, 23, 53, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  transition: all 0.3s;
  cursor: pointer;
}

.contact-card:hover {
  border-color: rgba(255, 122, 0, 0.3);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s;
  flex-shrink: 0;
}

/* ================== POPUP OVERLAY ================== */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 16, 32, 0.9);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}

.popup-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.popup-content {
  position: relative;
  background: linear-gradient(135deg, #101735 0%, #0B1020 100%);
  border: 1px solid rgba(255, 122, 0, 0.2);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 122, 0, 0.1);
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.25rem;
  cursor: pointer;
  color: #98A2B3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.popup-close:hover {
  background: rgba(255, 122, 0, 0.2);
  color: #FF7A00;
  border-color: rgba(255, 122, 0, 0.3);
  transform: rotate(90deg);
}

/* ================== FOOTER SOCIAL ================== */
.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #98A2B3;
  transition: all 0.2s;
}

.footer-social:hover {
  background: linear-gradient(135deg, #FF7A00, #1AB9FF);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* ================== ANIMATIONS ================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.9) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reveal animations (managed by JS) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ================== UTILITIES ================== */
#bg-canvas {
  z-index: 0;
}

main, header, footer, section { position: relative; z-index: 1; }

/* Smooth scroll behaviour for anchors */
html { scroll-behavior: smooth; }

/* Focus styles */
a:focus-visible, button:focus-visible {
  outline: 2px solid #FF7A00;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .section-title { font-size: 1.75rem; }
  .timeline-card { padding: 1.25rem; }
}

/* ================== T-PILL BADGE (clickable indicator) ================== */
.t-pill { position: relative; }
.t-pill-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.15);
  color: #FF7A00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255, 122, 0, 0.3);
  transition: all 0.3s;
}
.t-pill:hover .t-pill-badge {
  background: #FF7A00;
  color: #fff;
  transform: rotate(90deg) scale(1.1);
}

/* ================== T-TECH-ITEM (now clickable) ================== */
.t-tech-item button,
button.t-tech-item {
  background: rgba(11, 16, 32, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ================== POPUP RICH (expanded popups) ================== */
.popup-content.popup-rich {
  max-width: 850px;
  padding: 0;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Scrollbar custom dentro dos popups ricos */
.popup-content.popup-rich::-webkit-scrollbar { width: 8px; }
.popup-content.popup-rich::-webkit-scrollbar-track { background: rgba(11, 16, 32, 0.5); }
.popup-content.popup-rich::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FF7A00, #1AB9FF);
  border-radius: 8px;
}

.popup-rich .popup-header {
  padding: 2.5rem 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.08) 0%, rgba(11, 105, 255, 0.05) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.popup-date {
  display: inline-block;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.popup-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .popup-title { font-size: 2rem; }
}

.popup-subtitle {
  color: #98A2B3;
  font-size: 0.95rem;
  line-height: 1.6;
}

.popup-section {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.popup-section:last-child { border-bottom: none; }

.popup-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1AB9FF;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.popup-section-title i {
  font-size: 0.9rem;
}

/* Popup companies (timeline detail) */
.popup-companies {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.popup-company {
  background: rgba(11, 16, 32, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  transition: all 0.2s;
}

.popup-company:hover {
  border-color: rgba(26, 185, 255, 0.3);
  background: rgba(11, 16, 32, 0.7);
}

.popup-company-highlight {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.08) 0%, rgba(26, 185, 255, 0.05) 100%);
  border-color: rgba(255, 122, 0, 0.25);
}

.popup-company-period {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.7rem;
  color: #1AB9FF;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.popup-company h5 {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.popup-company-loc {
  font-size: 0.75rem;
  color: #98A2B3;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.popup-company-desc {
  font-size: 0.85rem;
  color: #98A2B3;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.popup-company-tags {
  font-size: 0.7rem;
  color: #FFB75D;
  margin-top: 0.5rem;
  font-family: 'Space Grotesk', monospace;
}

/* Popup stats grid */
.popup-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .popup-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.popup-stat {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.08) 0%, rgba(26, 185, 255, 0.04) 100%);
  border: 1px solid rgba(255, 122, 0, 0.15);
  border-radius: 0.75rem;
  padding: 1rem 0.75rem;
  text-align: center;
}

.popup-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  background: linear-gradient(135deg, #FF7A00, #1AB9FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
}

.popup-stat-label {
  font-size: 0.7rem;
  color: #98A2B3;
  line-height: 1.3;
}

/* Popup funnel */
.popup-funnel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .popup-funnel { flex-direction: row; }
}

.popup-funnel-stage {
  flex: 1;
  background: rgba(11, 16, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  position: relative;
}

.popup-funnel-1 { border-color: rgba(26, 185, 255, 0.3); }
.popup-funnel-2 { border-color: rgba(255, 122, 0, 0.3); }
.popup-funnel-3 { border-color: rgba(255, 183, 93, 0.3); }

.popup-funnel-label {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.popup-funnel-1 .popup-funnel-label { color: #1AB9FF; }
.popup-funnel-2 .popup-funnel-label { color: #FF7A00; }
.popup-funnel-3 .popup-funnel-label { color: #FFB75D; }

.popup-funnel-stage p {
  font-size: 0.75rem;
  color: #98A2B3;
  line-height: 1.5;
}

/* Popup quote */
.popup-quote {
  margin: 1.5rem 2rem 2rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.06) 0%, rgba(26, 185, 255, 0.04) 100%);
  border-left: 3px solid #FF7A00;
  border-radius: 0.5rem;
  position: relative;
}

.popup-quote i {
  color: rgba(255, 122, 0, 0.5);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.popup-quote p {
  color: #E0E0E0;
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}

/* Popup cert (certifications) */
.popup-cert,
.popup-cert-large {
  background: linear-gradient(135deg, rgba(255, 183, 93, 0.08) 0%, transparent 100%);
  border: 1px solid rgba(255, 183, 93, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.popup-cert-large {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
}

.popup-cert-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFB75D, #FF7A00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.popup-cert-large h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.popup-cert-large p {
  font-size: 0.8rem;
  color: #98A2B3;
  line-height: 1.5;
}

/* Popup tech cards */
.popup-tech-card {
  background: rgba(11, 16, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s;
}

.popup-tech-card:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 185, 255, 0.3);
}

.popup-tech-card i {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  display: block;
}

.popup-tech-card h5 {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.popup-tech-card p {
  font-size: 0.75rem;
  color: #98A2B3;
  line-height: 1.4;
}

.popup-tech-card-mini {
  background: rgba(11, 16, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 0.75rem;
  text-align: center;
}

.popup-tech-card-mini i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.popup-tech-card-mini h5 {
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}

.popup-tech-card-mini p {
  font-size: 0.65rem;
  color: #98A2B3;
  line-height: 1.3;
}

/* Popup pillars */
.popup-pillar {
  background: rgba(11, 16, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
}

.popup-pillar i {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.popup-pillar h4 {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.popup-pillar p {
  font-size: 0.8rem;
  color: #98A2B3;
  line-height: 1.5;
}

.popup-pillar-primary { border-color: rgba(255, 122, 0, 0.3); }
.popup-pillar-primary i { color: #FF7A00; }
.popup-pillar-accent { border-color: rgba(26, 185, 255, 0.3); }
.popup-pillar-accent i { color: #1AB9FF; }
.popup-pillar-secondary { border-color: rgba(11, 105, 255, 0.3); }
.popup-pillar-secondary i { color: #0B69FF; }

/* Popup list */
.popup-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.popup-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #98A2B3;
  line-height: 1.5;
}

.popup-list li i { margin-top: 0.25rem; flex-shrink: 0; }

/* Popup CTA */
.popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 2rem 2rem;
  padding: 1rem;
  background: linear-gradient(135deg, #FF7A00, #1AB9FF);
  border-radius: 9999px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s;
}

.popup-cta:hover {
  transform: scale(1.02);
}

/* ================== MOMENTOS CAROUSEL ================== */
.moments-carousel {
  position: relative;
  padding: 0 1rem;
}

.moments-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0 2rem;
  scroll-behavior: smooth;
}

.moments-track::-webkit-scrollbar {
  display: none;
}

.moment-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: rgba(16, 23, 53, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
}

@media (min-width: 768px) {
  .moment-card { flex: 0 0 380px; }
}

.moment-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 0, 0.4);
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.6);
}

.moment-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(11, 105, 255, 0.2), rgba(255, 122, 0, 0.1));
}

.moment-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.moment-card:hover .moment-image {
  transform: scale(1.08);
}

.moment-year-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 16, 32, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 122, 0, 0.4);
  color: #FF7A00;
  font-family: 'Space Grotesk', monospace;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  z-index: 2;
}

.moment-fallback {
  background: linear-gradient(135deg, #032D60, #0B69FF);
  display: flex;
  align-items: center;
  justify-content: center;
}

.moment-empty-state {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  pointer-events: none;
}

.moment-empty-state i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.moment-content {
  padding: 1.25rem;
}

.moment-tag {
  display: inline-block;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1AB9FF;
  background: rgba(26, 185, 255, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  margin-bottom: 0.6rem;
}

.moment-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.moment-content p {
  font-size: 0.8rem;
  color: #98A2B3;
  line-height: 1.5;
}

.moment-content code {
  background: rgba(255, 122, 0, 0.15);
  padding: 0.1rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.7rem;
  font-family: 'Space Grotesk', monospace;
}

/* Carousel nav buttons */
.moments-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(11, 16, 32, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 122, 0, 0.3);
  color: #FF7A00;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.moments-nav:hover {
  background: #FF7A00;
  color: #fff;
  border-color: #FF7A00;
  transform: translateY(-50%) scale(1.1);
}

.moments-prev { left: -8px; }
.moments-next { right: -8px; }

@media (min-width: 768px) {
  .moments-prev { left: -24px; }
  .moments-next { right: -24px; }
}

/* Indicators */
.moments-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.moments-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.moments-indicator.active {
  background: #FF7A00;
  width: 24px;
  border-radius: 4px;
}

/* ================== TILT EFFECT (3D) ================== */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
}

/* ================== WORLD TOUR CHAPTERS ================== */
.wt-hero {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.wt-hero-image {
  position: relative;
  height: 320px;
}

@media (min-width: 768px) {
  .wt-hero-image { height: 480px; }
}

.wt-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 16, 32, 0.4) 50%, rgba(11, 16, 32, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.wt-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 183, 93, 0.2);
  border: 1px solid rgba(255, 183, 93, 0.4);
  color: #FFB75D;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  width: fit-content;
}

.wt-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .wt-hero-title { font-size: 3rem; }
}

.wt-hero-subtitle {
  color: rgba(224, 224, 224, 0.85);
  font-size: 1rem;
}

/* WT Chapters timeline */
.wt-chapters {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}

.wt-chapter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 1024px) {
  .wt-chapter {
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
  }
}

.wt-chapter-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}

@media (min-width: 1024px) {
  .wt-chapter-meta {
    position: sticky;
    top: 100px;
    align-self: start;
    text-align: right;
    padding-right: 1.5rem;
    border-right: 2px solid rgba(255, 122, 0, 0.2);
  }
}

.wt-year-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  line-height: 0.9;
  background: linear-gradient(135deg, #FF7A00, #1AB9FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}

@media (min-width: 1024px) {
  .wt-year-mark { font-size: 5.5rem; }
}

.wt-year-future {
  background: linear-gradient(135deg, #FFB75D, #FF7A00);
  -webkit-background-clip: text;
  background-clip: text;
}

.wt-edition {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #1AB9FF;
}

.wt-date {
  font-size: 0.75rem;
  color: #98A2B3;
  font-style: italic;
}

.wt-chapter-card {
  background: rgba(16, 23, 53, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.4s;
}

.wt-chapter-card:hover {
  border-color: rgba(255, 122, 0, 0.3);
  transform: translateY(-4px);
}

.wt-chapter-highlight-card {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.08) 0%, rgba(26, 185, 255, 0.05) 100%);
  border-color: rgba(255, 183, 93, 0.3);
}

.wt-chapter-future-card {
  background: linear-gradient(135deg, rgba(255, 183, 93, 0.05) 0%, rgba(255, 122, 0, 0.03) 100%);
  border: 1px dashed rgba(255, 183, 93, 0.4);
}

.wt-chapter-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.wt-tag-primary {
  background: rgba(255, 122, 0, 0.12);
  color: #FF7A00;
  border: 1px solid rgba(255, 122, 0, 0.3);
}

.wt-tag-accent {
  background: rgba(26, 185, 255, 0.12);
  color: #1AB9FF;
  border: 1px solid rgba(26, 185, 255, 0.3);
}

.wt-tag-trail {
  background: rgba(255, 183, 93, 0.15);
  color: #FFB75D;
  border: 1px solid rgba(255, 183, 93, 0.4);
}

.wt-tag-future {
  background: rgba(255, 183, 93, 0.08);
  color: #FFB75D;
  border: 1px dashed rgba(255, 183, 93, 0.4);
}

.wt-chapter-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .wt-chapter-card h3 { font-size: 1.75rem; }
}

.wt-chapter-card p {
  color: #98A2B3;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.wt-chapter-highlight {
  border-left: 3px solid #FF7A00;
  padding: 0.5rem 0 0.5rem 1rem;
  font-style: italic;
  color: #E0E0E0 !important;
  background: rgba(255, 122, 0, 0.03);
  margin: 1rem 0;
}

.wt-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.wt-skill {
  background: rgba(11, 16, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #E0E0E0;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
}

.wt-skill-gold {
  background: rgba(255, 183, 93, 0.1);
  border-color: rgba(255, 183, 93, 0.3);
  color: #FFB75D;
}

/* WT Gallery — uniform aspect ratio for ANY photo dimension */
.wt-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .wt-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .wt-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.wt-gallery-item {
  position: relative;
  /* Aspect-ratio FIXO normaliza qualquer dimensão de foto */
  aspect-ratio: 1 / 1;
  border-radius: 0.85rem;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, #032D60 0%, #0B1020 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  isolation: isolate;
}

.wt-gallery-item::after {
  content: '\f00e'; /* magnifying glass icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 16, 32, 0.6);
  backdrop-filter: blur(2px);
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
  pointer-events: none;
}

.wt-gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 0, 0.5);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6), 0 0 30px -8px rgba(255, 122, 0, 0.3);
  z-index: 1;
}

.wt-gallery-item:hover::after {
  opacity: 1;
}

.wt-gallery-item img {
  width: 100%;
  height: 100%;
  /* object-fit: cover garante que TODAS as fotos preencham o quadrado igualmente */
  object-fit: cover;
  /* object-position center centraliza o foco da imagem */
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wt-gallery-item:hover img {
  transform: scale(1.08);
}

/* Featured first item (maior em telas grandes pra balancear) */
@media (min-width: 1024px) {
  .wt-gallery-grid .wt-gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1 / 1;
  }
}

.wt-gallery-item.wt-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  cursor: default;
}

.wt-gallery-item.wt-placeholder i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 122, 0, 0.4);
}

.wt-gallery-item.wt-placeholder code {
  background: rgba(255, 122, 0, 0.1);
  padding: 0.1rem 0.3rem;
  border-radius: 0.25rem;
  color: #FF7A00;
  font-size: 0.65rem;
}

.wt-instructions {
  margin-top: 1rem !important;
  font-size: 0.75rem !important;
  background: rgba(26, 185, 255, 0.05);
  border: 1px dashed rgba(26, 185, 255, 0.3);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem !important;
  color: #98A2B3 !important;
}

.wt-instructions code {
  background: rgba(255, 122, 0, 0.15);
  padding: 0.1rem 0.4rem;
  border-radius: 0.25rem;
  color: #FF7A00;
  font-size: 0.7rem;
  font-family: 'Space Grotesk', monospace;
}

.wt-instructions i { margin-right: 0.4rem; color: #1AB9FF; }

/* WT Stats mini */
.wt-stats-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.wt-stat-mini {
  background: rgba(11, 16, 32, 0.6);
  border: 1px solid rgba(255, 183, 93, 0.2);
  border-radius: 0.75rem;
  padding: 1rem 0.5rem;
  text-align: center;
}

.wt-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #FFB75D;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.wt-stat-label {
  font-size: 0.65rem;
  color: #98A2B3;
}

/* WT Future CTA */
.wt-future-cta {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 183, 93, 0.08);
  border: 1px solid rgba(255, 183, 93, 0.3);
  border-radius: 0.75rem;
  flex-wrap: wrap;
}

.wt-future-cta > i { color: #FFB75D; font-size: 1.25rem; }
.wt-future-cta > span { color: #E0E0E0; font-weight: 600; flex: 1; }

.wt-future-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #FFB75D, #FF7A00);
  color: #0B1020;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.2s;
}

.wt-future-btn:hover { transform: scale(1.05); }

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

.lightbox.active { display: flex; animation: fadeIn 0.3s ease; }

.lightbox-image {
  max-width: 95%;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.8);
  animation: popIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 122, 0, 0.3);
  border-color: #FF7A00;
  transform: rotate(90deg);
}

/* ================== VIBES VIDEO ================== */
.vibes-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.vibes-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.2) 0%, rgba(26, 185, 255, 0.1) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: pulse-slow 4s ease-in-out infinite;
  z-index: 0;
}

.vibes-video-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 9/16;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #101735, #0B1020);
  box-shadow:
    0 0 0 1px rgba(255, 122, 0, 0.3),
    0 25px 60px -12px rgba(255, 122, 0, 0.4),
    0 25px 80px -20px rgba(0, 0, 0, 0.8);
  z-index: 1;
}

@media (min-width: 640px) {
  .vibes-video-wrap { max-width: 380px; }
}

.vibes-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vibes-control {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 16, 32, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 122, 0, 0.4);
  color: #FF7A00;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}

.vibes-control:hover {
  background: #FF7A00;
  color: #fff;
  transform: scale(1.1);
}

.vibes-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(11, 16, 32, 0.85);
  backdrop-filter: blur(10px);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  z-index: 2;
}

.vibes-badge i {
  color: #FF3B30;
  font-size: 0.5rem;
  animation: pulse-slow 1.5s ease-in-out infinite;
}

.vibes-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 600px;
  z-index: 1;
}

.vibes-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(16, 23, 53, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  transition: all 0.3s;
}

.vibes-meta-item:hover {
  border-color: rgba(255, 122, 0, 0.3);
  transform: translateY(-2px);
}

.vibes-meta-item > i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.vibes-meta-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1;
}

.vibes-meta-label {
  font-size: 0.7rem;
  color: #98A2B3;
  margin-top: 0.15rem;
}

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

/* ================== COMMUNITY BANNER WITH VIDEO ================== */
.community-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(3, 45, 96, 0.4) 0%, rgba(11, 16, 32, 0.7) 100%);
  border: 1px solid rgba(255, 183, 93, 0.2);
  border-radius: 1.5rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .community-banner {
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

.community-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(255, 122, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.community-video-wrap {
  position: relative;
  aspect-ratio: 9/16;
  max-width: 240px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #101735, #0B1020);
  border: 2px solid rgba(255, 183, 93, 0.3);
  box-shadow:
    0 0 0 1px rgba(255, 122, 0, 0.2),
    0 20px 40px -10px rgba(255, 122, 0, 0.3),
    0 25px 60px -20px rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.community-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.community-video-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(11, 16, 32, 0.85);
  backdrop-filter: blur(10px);
  padding: 0.3rem 0.6rem;
  border-radius: 9999px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}

.community-video-badge i {
  color: #FF3B30;
  font-size: 0.45rem;
  animation: pulse-slow 1.5s ease-in-out infinite;
}

.community-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.community-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  background: rgba(255, 183, 93, 0.15);
  border: 1px solid rgba(255, 183, 93, 0.4);
  color: #FFB75D;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.community-banner-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .community-banner-title { font-size: 2.25rem; }
}

.community-banner-desc {
  color: #98A2B3;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.community-banner-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.community-banner-stat {
  background: rgba(11, 16, 32, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  padding: 0.75rem 0.5rem;
  text-align: center;
}

.community-banner-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #FFB75D, #FF7A00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.community-banner-stat-label {
  font-size: 0.65rem;
  color: #98A2B3;
  margin-top: 0.25rem;
}

/* ================== WT CAROUSEL — REAL HORIZONTAL CAROUSEL ================== */
.wt-carousel {
  position: relative;
  margin-top: 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #0B1020;
}

.wt-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
}

.wt-carousel-track::-webkit-scrollbar { display: none; }

.wt-carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  position: relative;
  /* Slide retrato 4/5 (encaixa portraits sem cortar e landscapes com bordas elegantes) */
  aspect-ratio: 4 / 5;
  background: #0B1020;
  cursor: zoom-in;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .wt-carousel-slide { aspect-ratio: 1 / 1; max-height: 75vh; }
}

@media (min-width: 1280px) {
  .wt-carousel-slide { aspect-ratio: 4 / 3; max-height: 80vh; }
}

/* Fundo blurred com a própria foto — preenche bordas elegantemente, nunca corta a foto principal */
.wt-carousel-slide::before {
  content: '';
  position: absolute;
  inset: -8%;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  filter: blur(35px) brightness(0.4) saturate(1.4);
  z-index: 0;
}

/* Overlay sutil pra dar profundidade */
.wt-carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(11, 16, 32, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

/* FOTO PRINCIPAL: 100% INTEIRA, nunca corta nada, sempre centralizada */
.wt-carousel-slide img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 0.5rem;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.7);
}

.wt-carousel-slide:hover img {
  transform: scale(1.02);
}

.wt-carousel-counter {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(11, 16, 32, 0.85);
  backdrop-filter: blur(10px);
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  color: #fff;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255, 122, 0, 0.3);
  z-index: 3;
}

.wt-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(11, 16, 32, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 122, 0, 0.4);
  color: #FF7A00;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  opacity: 0.85;
}

.wt-carousel-nav:hover {
  background: #FF7A00;
  color: #fff;
  border-color: #FF7A00;
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

.wt-carousel-prev { left: 0.75rem; }
.wt-carousel-next { right: 0.75rem; }

.wt-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
  background: rgba(11, 16, 32, 0.5);
}

.wt-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.wt-carousel-dot.active {
  background: #FF7A00;
  width: 28px;
  border-radius: 4px;
}
