/* ============================================================
   LISBON BY ROLLER — styles.css
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --black: #000000;
  --white: #FFFFFF;
  --blue: #00ffff;
  --blue-light: #00ffff;
  --purple: #00ffff;
  --purple-light: #00ffff;
  --cream: #1A1A1A;
  --dark-surface: #000000;
  --mid-surface: #111111;
  --border: rgba(255,255,255,0.14);
  --text-muted: #FFFFFF;
  /* light section tokens (now also dark) */
  --light-bg: #000000;
  --light-surface: #111111;
  --light-border: rgba(255,255,255,0.12);
  --light-text: #FFFFFF;
  --light-muted: #FFFFFF;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-h: 68px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 20px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
p { font-size: 20px; line-height: 1.75; }

/* ---------- UTILITIES ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.accent { color: var(--blue); }
.link-inline {
  color: var(--blue);
  text-decoration: underline;
  transition: opacity var(--transition);
}
.link-inline:hover { opacity: 0.7; }
.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  margin: 0 8px;
  vertical-align: middle;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}
.btn--primary:hover {
  background: #00ffff;
  color: #000000;
  border-color: #00ffff;
}
.btn--outline {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn--outline:hover {
  background: #00ffff;
  color: #000000;
  border-color: #00ffff;
}
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--social { padding: 10px 18px; font-size: 15px; }
.btn--instagram { background: #E1306C; color: #ffffff; border-color: #E1306C; }
.btn--instagram:hover { background: #00ffff; color: #000000; border-color: #00ffff; }
.btn--whatsapp { background: #25D366; color: #ffffff; border-color: #25D366; }
.btn--whatsapp:hover { background: #00ffff; color: #000000; border-color: #00ffff; }
.btn--tiktok { background: #010101; color: #ffffff; border-color: rgba(255,255,255,0.3); }
.btn--tiktok:hover { background: #00ffff; color: #000000; border-color: #00ffff; }
.btn--facebook { background: #1877F2; color: #ffffff; border-color: #1877F2; }
.btn--facebook:hover { background: #00ffff; color: #000000; border-color: #00ffff; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: #000000;
  box-shadow: 0 2px 24px rgba(255,255,255,0.05);
}
.nav--transparent:not(.scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
.nav__inner {
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { text-decoration: none; display: flex; align-items: center; }
.nav__logo-img {
  height: 54px;
  width: 54px;
  display: block;
  border-radius: 50%;
  object-fit: contain;
  background: #ffffff;
  padding: 8px;
  transition: opacity var(--transition);
}
.nav__logo:hover .nav__logo-img { opacity: 0.75; }
.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__link {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: #00ffff;
  transition: width var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- PAGE HEADER ---------- */
.page-header {
  padding: calc(var(--nav-h) + 64px) 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 80px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
}

/* ---------- SECTION TITLE ---------- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.section-header { text-align: center; margin-bottom: 48px; }

/* ============================================================
   HOME
   ============================================================ */

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1.0); }
}
.hero__overlay {
  display: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  animation: heroFadeUp 1s 0.4s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  font-family: var(--font-condensed);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.hero__title {
  font-family: 'Bangers', sans-serif;
  font-size: clamp(4.5rem, 14vw, 11rem);
  line-height: 0.85;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.hero__title-line { display: block; -webkit-text-stroke: 3px #000000; paint-order: stroke fill; text-shadow: 0 0 40px rgba(0,0,0,0.8), 0 2px 16px rgba(0,0,0,0.6); }
.hero__title-line--accent {
  color: #00ffff;
  -webkit-text-stroke: 3px #000000;
  paint-order: stroke fill;
}
.hero__sub {
  font-family: var(--font-condensed);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.hero__btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__scroll-hint {
  position: absolute;
  bottom: 28px; right: 32px;
  z-index: 2;
  font-size: 1.4rem;
  color: var(--text-muted);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* INTRO */
.intro {
  padding: 96px 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}
.intro::before {
  content: 'LBR';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 20rem);
  color: rgba(255,255,255,0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.lbr-watermark {
  position: absolute;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 20rem);
  color: rgba(255,255,255,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}
.lbr-watermark--left  { left: -4%; }
.lbr-watermark--right { right: -4%; }

.intro__inner { max-width: 760px; }
.intro__badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  margin-bottom: 24px;
}
.intro__text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--light-text);
}
.intro__body {
  font-size: 20px;
  color: var(--light-muted);
  margin-bottom: 16px;
  max-width: 680px;
}
.intro__cta-text {
  font-size: 20px;
  color: var(--blue);
  margin-top: 24px;
}

/* VIDEO */
.video-section { padding: 80px 0; position: relative; background: var(--dark-surface); }
.video-section__label {
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: -20px;
  user-select: none;
}
.video-wrap {
  position: relative;
  padding-bottom: calc(56.25% * 0.9);
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  width: 90%;
  margin: 0 auto;
}
.video-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* STATS */
.stats {
  background: #000000;
  padding: 64px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.stats__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stats__number {
  font-family: var(--font-body);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.stats__line {
  border: none;
  border-top: 1px solid #ffffff;
  margin: 0;
}
.stats__label {
  font-size: 20px;
  color: #ffffff;
  font-family: var(--font-body);
}
@media (max-width: 600px) {
  .stats__grid { grid-template-columns: 1fr; gap: 32px; }
  .stats__item { text-align: center; }
}

/* LISBOA SOBRE RODAS */
.lisboa-rodas {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.lisboa-rodas__img-wrap { position: absolute; inset: 0; }
.lisboa-rodas__img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.lisboa-rodas__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.1) 100%);
}
.lisboa-rodas__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.lisboa-rodas__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  margin-bottom: 24px;
}
.lisboa-rodas__content p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 16px;
  max-width: 420px;
}
.lisboa-rodas__content .btn { margin-top: 12px; }

/* EVENTS ON HOME */
.eventos-home { padding: 80px 0; background: var(--light-bg); overflow: hidden; position: relative; }
.eventos-home .section-title { color: var(--light-text); }
.eventos-home__title { margin-bottom: 48px; text-align: center; }
.eventos-home-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.evento-card {
  background: #000000;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background var(--transition);
}
.evento-card:hover { background: #000000; }
.evento-card__img-wrap,
.evento-card__content { position: relative; z-index: 1; }
.evento-card__img-wrap { width: 100%; display: flex; justify-content: center; }
.evento-card__img {
  width: 50%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.evento-card:hover .evento-card__img { transform: scale(1.05); }
.evento-card__content {
  padding: 36px 0;
  width: 50%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.evento-card__tag {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  border: 1px solid var(--blue-light);
  padding: 3px 10px;
  border-radius: 2px;
  width: fit-content;
}
.evento-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--light-text);
}
.evento-card__title a { color: var(--light-text); transition: color var(--transition); }
.evento-card__title a:hover { color: var(--blue); }
.evento-card p { color: var(--light-muted); font-size: 20px; }
.evento-card__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.price-list { list-style: none; padding: 0; }
.price-list li {
  font-size: 20px;
  color: var(--light-muted);
  padding: 4px 0;
  border-bottom: 1px solid var(--light-border);
}
.price-list li:last-child { border-bottom: none; }

/* TESTIMONIALS */
.testimonials { padding: 80px 0; background: var(--dark-surface); overflow: hidden; }
.testimonials__slider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials__overflow {
  flex: 1;
  overflow: hidden;
}
.testimonials__track {
  display: flex;
  gap: 16px;
}
.testimonial-card {
  flex: 0 0 calc((100% - 32px) / 3);
  background: #000000;
  border: 1px solid #ffffff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  font-family: var(--font-body);
  letter-spacing: 0;
  text-transform: none;
}
.testimonial-card__stars {
  font-size: 14px;
  color: #FBBC04;
  letter-spacing: 2px;
  margin-top: 2px;
}
.star-empty { color: #ccc; }
.testimonial-card__text {
  font-size: 20px !important;
  color: #ffffff;
  line-height: 1.6;
  font-style: normal;
}
.testimonials__dots-row {
  display: flex;
  justify-content: center;
  padding: 24px 0 0;
}
.t-btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border: 2px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.t-btn:hover { border-color: var(--white); color: var(--white); }
.testimonials__dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  transition: all var(--transition);
  cursor: pointer;
}
.t-dot.active { background: #00ffff; width: 24px; border-radius: 4px; }

/* COMMUNITY HOME */
.community-home { padding: 80px 0; background: var(--light-bg); }
.community-home__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.community-home__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.community-home__img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid var(--white);
  border-radius: 4px;
  transform: translate(12px, 12px);
  pointer-events: none;
  z-index: -1;
}
.community-home__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
}
.community-home__img-wrap:hover .community-home__img { transform: scale(1.02); }
.community-home__content .section-title { margin-top: 12px; color: var(--light-text); }
.community-home__content p { color: var(--light-muted); margin-bottom: 32px; font-size: 20px; }
.social-btns { display: flex; flex-wrap: wrap; gap: 10px; }

/* ============================================================
   MISSÃO
   ============================================================ */

/* Opening hero section with alternating photos */
.missao-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  margin-top: 0;
  padding-top: var(--nav-h);
}
.missao-intro__photos {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.missao-intro__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.missao-intro__photo.active { opacity: 1; }
.missao-intro__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  background: var(--dark-surface);
}
.missao-intro__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}
.missao-intro__title span { color: var(--white); }
.missao-intro__content p {
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 540px;
}

/* Page header for missão (after opening) */
.page-header--inner {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 80px;
}

/* Porquê */
.missao-porque {
  background: #000000;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.missao-porque__body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: stretch;
}
.missao-porque__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 0;
}
.missao-porque__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 24px;
}
.missao-porque__text {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.75;
}
.missao-porque__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 420px;
}
.porque-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.porque-photo.active { opacity: 1; }

/* Valores */
.valores { padding: 80px 0 96px; background: var(--light-bg); }
.valores .section-title { color: var(--light-text); }
.valores__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 8px;
}
.valor-card {
  background: #000000;
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.valor-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: #00ffff;
  transition: width 0.5s ease;
}
.valor-card:hover { background: #000000; }
.valor-card:hover::before { width: 100%; }
.valor-card__icon {
  width: 40px; height: 40px;
  color: var(--blue);
  margin-bottom: 10px;
}
.valor-card__icon svg { width: 100%; height: 100%; }
.valor-card__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--light-text);
}
.valor-card p { color: var(--light-muted); font-size: 20px; }

/* Origem americana */
.missao-origem {
  padding: 96px 0;
  background: var(--dark-surface);
}
.missao-origem .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.missao-origem__img-wrap { position: relative; }
.missao-origem__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}
.missao-origem__img-label {
  position: absolute;
  top: 20px; left: -12px;
  background: var(--white);
  color: #000000;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.missao-origem__content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.75;
}

/* CEO */
.ceo {
  padding-bottom: 96px;
  background: var(--light-bg);
}
.ceo .container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}
.ceo__img-wrap { position: relative; }
.ceo__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(15%);
}
.ceo__img-tag {
  position: absolute;
  bottom: 24px; right: -12px;
  background: var(--white);
  color: #000000;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.12em;
  padding: 6px 16px;
}
.ceo__content .section-title { color: var(--light-text); }
.ceo__content p { color: var(--light-muted); margin-bottom: 28px; }

/* ============================================================
   COMUNIDADE
   ============================================================ */
.comunidade-hero { width: 100%; background: #000; overflow: hidden; }
.comunidade-hero__img { width: 100%; height: auto; display: block; margin-top: calc(var(--nav-h) * -1.5); }
.comunidade-intro { padding: calc(var(--nav-h) + 40px) 0 80px; background: var(--light-bg); }
.comunidade-intro .section-title { color: var(--light-text); }
.comunidade-intro__text {
  font-size: 20px;
  color: var(--light-muted);
  max-width: 680px;
  line-height: 1.75;
  text-align: center;
  margin: 0 auto;
}

.comunidade-intro { text-align: center; }
.apoio .section-title { text-align: center; }

/* Apoio */
.apoio { padding-bottom: 96px; background: var(--light-bg); overflow: hidden; position: relative; }
.apoio .section-title { color: var(--light-text); }
.apoio__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
}
.apoio-card {
  background: #000000;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background var(--transition);
}
.apoio-card:hover { background: #000000; }
.apoio-card__img-wrap,
.apoio-card__content { position: relative; z-index: 1; }
.apoio-card__img-wrap { width: 100%; display: flex; justify-content: center; }
.apoio-card__img {
  width: 50%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.apoio-card:hover .apoio-card__img { transform: scale(1.05); }
.apoio-card__content {
  padding: 36px 0;
  width: 50%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}
.apoio-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--light-text);
}
.apoio-card p { color: var(--light-muted); font-size: 20px; line-height: 1.65; }
.apoio-card__btns { display: flex; gap: 10px; flex-wrap: wrap; }

.iban-box {
  background: var(--mid-surface);
  border: 1px solid var(--blue);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-top: 12px;
  position: relative;
}
.iban-box strong { font-size: 20px; display: block; margin-bottom: 8px; }
.iban-box p { color: var(--text-muted); font-family: monospace; font-size: 20px; }
.iban-box__close {
  position: absolute;
  top: 12px; right: 16px;
  color: var(--text-muted);
  font-size: 20px;
  transition: color var(--transition);
}
.iban-box__close:hover { color: var(--white); }

.vagas-list { list-style: disc; padding-left: 20px; }
.vagas-list li { color: var(--text-muted); font-size: 20px; padding: 4px 0; }
.vagas-sign { font-size: 20px; color: var(--text-muted); font-style: italic; margin-top: 8px; }

.cta-equipa { background: #000000; padding: 80px 0; text-align: center; }
.cta-equipa__inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cta-equipa__text { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 700; color: #ffffff; line-height: 1.2; margin: 0; }
.cta-equipa__sub { font-size: 20px; color: #ffffff; font-style: italic; margin: 0; }

/* Parceiro */
.parceiro {
  background: var(--dark-surface);
  padding: 96px 0;
}
.parceiro__inner { max-width: 720px; }
.parceiro__text p { color: var(--text-muted); margin-bottom: 32px; font-size: 20px; line-height: 1.75; }
.parceiro__commission {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
}
.parceiro__commission-label {
  font-family: var(--font-condensed);
  font-size: 20px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.parceiro__commission-value {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--blue);
  line-height: 1;
}

/* Mais info */
.mais-info { padding: 80px 0 96px; background: var(--light-bg); }
.mais-info .section-title { color: var(--light-text); }
.mais-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}
.mais-info__grid p { color: var(--light-muted); font-size: 20px; line-height: 1.75; }
.mais-info__grid p:last-child { grid-column: 1 / -1; }

/* ============================================================
   MERCH
   ============================================================ */
.page-header--merch { border-bottom: none; margin-bottom: 40px; }
.page-header--no-border { border-bottom: none; }
.merch-title { font-size: clamp(2.8rem, 8vw, 6.5rem); }
.merch-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  margin-top: 24px;
  max-width: 500px;
  line-height: 1.65;
}
.merch-section {
  position: relative;
  overflow: hidden;
}
.merch-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 80px;
}
.merch-card {
  display: flex;
  flex-direction: column;
  background: #000000;
  position: relative;
  transition: background var(--transition);
  text-decoration: none;
  color: inherit;
}
.merch-card__img-wrap,
.merch-card__info { position: relative; z-index: 1; }
.merch-card:hover { background: #000000; }
.merch-card__img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.merch-card__img {
  width: 50%;
  height: auto;
  display: block;
  transition: opacity 0.4s ease;
}
.merch-card__img--main { opacity: 1; }
.merch-card__img--hover { display: none; }
.merch-card:hover .merch-card__img--main { opacity: 0.85; }
.merch-card__info {
  padding: 36px 0;
  width: 50%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.merch-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.merch-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
.merch-card__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}
.merch-card__cta-arrow { width: 16px; height: 16px; flex-shrink: 0; }
.merch-card:hover .merch-card__cta { color: var(--blue-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); border-top: 1px solid var(--border); }
.footer__marquee-wrap {
  overflow: hidden;
  background: #00ffff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0;
  white-space: nowrap;
}
.footer__marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 28s linear infinite;
}
.footer__marquee-track span {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #000000;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.footer__marquee-wrap:hover .footer__marquee-track { animation-play-state: paused; }

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px;
  border-bottom: 1px solid var(--border);
}
.footer__logo-img {
  height: 74px;
  width: 74px;
  display: block;
  border-radius: 50%;
  object-fit: contain;
  background: #ffffff;
  padding: 11px;
  margin-bottom: 16px;
}
.footer__tagline { font-size: 20px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.footer__email {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: underline;
  transition: color var(--transition);
}
.footer__email:hover { color: var(--blue-light); }
.footer__nav-title {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer__nav ul li { padding: 5px 0; }
.footer__nav ul li a { font-size: 20px; color: var(--text-muted); transition: color var(--transition); }
.footer__nav ul li a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}
.footer__bottom p { font-size: 0.9rem; color: var(--text-muted); }
.footer__legal-links { display: flex; gap: 24px; }
.footer__legal-links a {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__legal-links a:hover { color: var(--white); }

/* ============================================================
   MODALS
   ============================================================ */
.modal {
  position: fixed; inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal.open { opacity: 1; pointer-events: all; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}
.modal__box {
  position: relative;
  z-index: 1;
  background: var(--mid-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal.open .modal__box { transform: translateY(0) scale(1); }
.modal__box--large { max-width: 880px; }
.modal__close {
  position: sticky;
  float: right;
  top: 0;
  color: var(--text-muted);
  font-size: 20px;
  transition: color var(--transition);
  background: var(--mid-surface);
  z-index: 1;
}
.modal__close:hover { color: var(--blue-light); }
.modal__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 24px;
  margin-top: 8px;
}
.modal__box p { color: var(--text-muted); font-size: 20px; line-height: 1.75; margin-bottom: 16px; }

.faqs { margin-top: 16px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__q {
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  color: var(--white);
  transition: color var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item__q::after { content: '+'; font-size: 1.3rem; color: var(--white); transition: transform var(--transition); }
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }
.faq-item__q:hover { color: var(--white); }
.faq-item::-webkit-details-marker { display: none; }
.faq-item__a { padding: 4px 0 20px; }
.faq-item__a p, .faq-item__a li { color: var(--text-muted); font-size: 20px; line-height: 1.7; }
.faq-item__a ul { list-style: disc; padding-left: 20px; margin-top: 8px; }
.faq-item__a li { padding: 3px 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .community-home__inner { grid-template-columns: 1fr; gap: 40px; }
  .missao-origem .container { grid-template-columns: 1fr; gap: 40px; }
  .ceo .container { grid-template-columns: 1fr; gap: 40px; }
  .ceo__img { max-height: 400px; object-position: top; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .mais-info__grid { grid-template-columns: 1fr; }
  .mais-info__grid p:last-child { grid-column: 1; }
  .missao-intro { grid-template-columns: 1fr; }
  .missao-intro__photos { min-height: 360px; }
  .missao-intro__content { padding: 64px 40px; }
  .missao-porque__body { grid-template-columns: 1fr; gap: 40px; }
  .missao-porque__img-wrap { min-height: 300px; }
  .valores__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.99);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(255,255,255,0.04);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  }
  .nav__links.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
  }
  .nav__link {
    padding: 14px 28px;
    font-size: 17px;
    width: 100%;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav__link:hover, .nav__link.active { color: var(--white); }
  .nav__link:last-child { border-bottom: none; }
  .nav__link::after { display: none; }
  .nav__burger { display: flex; }

  .hero { height: 100svh; }
  .hero__img { object-position: 30% bottom; }
  .lisboa-rodas__img { object-position: 80% bottom; }
  .footer__nav ul li a { font-size: 16px; }
  .hero__title { font-size: clamp(3.5rem, 16vw, 6rem); }
  .hero__content { padding: 0 24px 60px; }
  .hero__title-line { text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
  .intro { padding: 64px 0; }
  .video-section { padding: 48px 0; }
  .video-section__label { font-size: 4rem; }
  .testimonial-card { flex: 0 0 100%; }
  .community-home { padding: 64px 0; }

  .page-header { padding: calc(var(--nav-h) + 40px) 0 32px; margin-bottom: 48px; }
  .page-title { font-size: clamp(3rem, 12vw, 5rem); }


  .missao-intro { grid-template-columns: 1fr; padding-top: var(--nav-h); }
  .missao-intro__photos { min-height: 300px; }
  .missao-intro__content { padding: 48px 24px; }
  .missao-porque__body { grid-template-columns: 1fr; gap: 32px; }
  .missao-porque__img-wrap { min-height: unset; height: auto; overflow: visible; }
  .missao-porque__img-wrap .porque-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: none;
    opacity: 1;
    transition: none;
  }
  .missao-porque__img-wrap .porque-photo.active { display: block; }
  .valores__grid { grid-template-columns: 1fr; }
  .comunidade-hero__img { margin-top: 0; }
  .ceo { padding-bottom: 64px; }

  .parceiro { padding: 64px 0; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 24px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .modal__box { padding: 28px 24px; }
  .lisboa-rodas__content { padding: 48px 24px; }
  .comunidade-intro { padding: 48px 0; }
  .apoio { padding-bottom: 64px; }
  .mais-info { padding: 48px 0 64px; }
  .valores { padding: 48px 0 64px; }
  .missao-origem { padding: 64px 0; }

  .evento-card__img,
  .apoio-card__img,
  .merch-card__img { width: 80%; }

  .evento-card__content,
  .apoio-card__content,
  .merch-card__info { width: 80%; }
  .testimonials { padding-top: 40px; }
  .eventos-home-list .evento-card:last-child { margin-bottom: 0; }
  .eventos-home { padding-bottom: 40px; }

  /* Hero buttons on same row */
  .hero__btns { flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: center; }
  .hero__btns .btn { width: auto; }

  /* Reviews — hide arrows, cards use full width */
  .t-btn { display: none; }
  .testimonials__overflow { margin: 0; }

  /* Footer — nav + social side by side, legal hidden */
  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; text-align: center; align-items: center; }
  .footer__nav:last-child { display: none; }

  /* Global centering */
  .hero__content { text-align: center; }
  .intro__inner { text-align: center; }
  .lisboa-rodas__content { text-align: center; }
  .lisboa-rodas__content p { max-width: 100%; }
  .community-home__content { text-align: center; align-items: center; }
  .social-btns { justify-content: center; }

  /* Missão */
  .missao-intro__content { text-align: center; align-items: center; }
  .missao-porque__left { text-align: center; }
  .missao-origem__content { text-align: center; }
  .missao-origem__content p { text-align: center; }
  .ceo__content { text-align: center; }
  .ceo__content p { text-align: center; }
  .valores .section-title { text-align: center; }

  /* Comunidade */
  .mais-info__grid { text-align: center; }
  .mais-info .section-title { text-align: center; }
  .valor-card { text-align: center; align-items: center; }
  .valor-card__icon { margin-left: auto; margin-right: auto; }
  .parceiro__text { text-align: center; align-items: center; }
  .parceiro__commission { justify-content: center; }

  /* Merch */
  .page-header { text-align: center; }
  .merch-subtitle { text-align: center; }
  .merch-card__info { padding: 24px 24px 8px; text-align: center; align-items: center; }
  .merch-card__cta { padding: 0 24px 24px; justify-content: center; }

  /* Cards — center all content */
  .evento-card__content { text-align: center; align-items: center; }
  .apoio-card__content { text-align: center; align-items: center; }

  /* Global paragraph size — override all specific rules */
  p { font-size: 18px !important; }
  .lisboa-rodas__content p { font-size: 16px !important; }
  .section-title { font-size: clamp(2rem, 9vw, 3rem); }
  .social-btns .btn { flex: 1 1 calc(50% - 5px); justify-content: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(3rem, 18vw, 5rem); }
}

/* ============================================================
   SCROLLBAR & SELECTION
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
::selection { background: var(--blue); color: var(--white); }
