/* ============================================================
   Dia de Fazer Musica | Make Music -- Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* -- Reset & Base ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --orange:        #E85A12;
  --orange-dark:   #C44A0A;
  --orange-light:  #FFF0E8;
  --black:         #0E0E0E;
  --dark:          #1A1A1A;
  --ink:           #2C2C2C;
  --mid:           #5A5A5A;
  --muted:         #8A8A8A;
  --rule:          #E0E0E0;
  --bg:            #FAFAF8;
  --white:         #FFFFFF;

  /* Typography */
  --font:          'Plus Jakarta Sans', system-ui, sans-serif;
  --base:          16px;

  /* Spacing */
  --gap:           clamp(1rem, 2.5vw, 2rem);
  --section:       clamp(2.5rem, 5vw, 4rem);
  --max:           1240px;
  --max-wide:      1440px;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);

  /* Nav */
  --nav-h:   72px;
}

html { font-size: var(--base); scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul { list-style: none; }
svg { display: block; }

/* -- Utilities --------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--wide { max-width: var(--max-wide); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* -- Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.5rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn--outline:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.5);
}
/* Azul sólido Make Music — funciona em fundos claros e escuros */
.btn--ghost-blue {
  background: #29ABE2;
  color: #fff;
  border: 1.5px solid #29ABE2;
}
.btn--ghost-blue:hover {
  background: #1a96cc;
  border-color: #1a96cc;
  color: #fff;
}

.btn--lg {
  padding: .9rem 2rem;
  font-size: 1rem;
  border-radius: var(--r-md);
}

/* -- Header / Nav ------------------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}

.nav-logo {
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo img {
  width: 209px;
  height: auto;
  display: block;
}

/* Primary nav */
.nav-primary {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .75rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover,
.nav-item.active > .nav-link {
  color: var(--orange);
  background: var(--orange-light);
}

.nav-link svg { flex-shrink: 0; transition: transform .2s; }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  z-index: 910;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  display: block;
  animation: dropIn .18s ease;
}

@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.nav-dropdown a {
  display: block;
  padding: .55rem .9rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--r-sm);
  transition: background .15s, color .15s;
}
.nav-dropdown a:hover {
  background: var(--orange-light);
  color: var(--orange);
}

.nav-cta { margin-left: .5rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -- Mobile Nav -------------------------------------------------- */
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: var(--white);
  overflow-y: auto;
  z-index: 899;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.nav-mobile.open {
  display: block;
  transform: translateX(0);
}
.nav-mobile a {
  display: block;
  padding: .8rem .5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.nav-mobile a:hover { color: var(--orange); }
.nav-mobile .mobile-group-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 1.25rem 0 .25rem .5rem;
}
.nav-mobile .mobile-sub a {
  padding-left: 1.25rem;
  font-size: .9rem;
  font-weight: 500;
}
.nav-mobile .btn {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

/* -- Page offset ------------------------------------------------- */
.page-body { padding-top: var(--nav-h); }

/* -- Section helpers --------------------------------------------- */
.section { padding-block: var(--section); }
.section--sm { padding-block: clamp(1.5rem, 3vw, 2.5rem); }

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
  display: block;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--mid);
  max-width: 54ch;
  line-height: 1.7;
}

/* -- Hero -------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(85svh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: var(--dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: .75;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14,14,14,.55) 0%,
    rgba(14,14,14,.3) 50%,
    rgba(232,90,18,.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(3rem, 8vw, 5rem);
  min-height: calc(85svh - var(--nav-h));
}

.hero__date-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero__title {
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 18ch;
  letter-spacing: -.02em;
}
.hero__title em {
  font-style: normal;
  color: var(--orange);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,.78);
  max-width: 50ch;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

.hero__stats {
  position: relative;
  z-index: 1;
  background: rgba(14,14,14,.6);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__stats-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
}
.hero__stat {
  padding: 1.5rem var(--gap);
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .25rem;
}
.hero__stat-num span { color: var(--orange); }
.hero__stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  letter-spacing: .04em;
}

/* -- Intro / What is --------------------------------------------- */
.intro {
  background: var(--white);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.intro__visual {
  position: relative;
}
.intro__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.intro__badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--orange);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  line-height: 1.4;
  transform: rotate(6deg);
}
.intro__badge strong {
  display: block;
  font-size: 1.8rem;
  letter-spacing: -.02em;
  text-transform: none;
}
.intro__text { }
.intro__text .section-lead { max-width: 48ch; margin-bottom: 1.5rem; }

.intro__checks {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.75rem;
}
.intro__checks li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
}
.intro__checks li svg {
  flex-shrink: 0;
}

.intro__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--orange);
}
.intro__link:hover { text-decoration: underline; }

/* -- Steps / Como funciona --------------------------------------- */
.steps {
  background: var(--bg);
}
.steps__header {
  max-width: 52ch;
  margin-bottom: 2rem;
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.step-card {
  position: relative;
  padding-top: 1rem;
}
.step-card__num {
  display: block;
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--rule);
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -.04em;
}
.step-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .4rem;
}
.step-card__text {
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.65;
}

/* -- Metrics dark band ------------------------------------------- */
.metrics {
  background: var(--dark);
  padding-block: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.metrics__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.metrics__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.metrics__sub {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.metrics__num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .35rem;
}
.metrics__label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255,255,255,.45);
}

/* -- Pillars / Como funciona (legacy) ---------------------------- */
.pillars {
  background: var(--bg);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: box-shadow .25s, transform .25s;
}
.pillar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pillar-card__icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.pillar-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .5rem;
}
.pillar-card__text {
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.65;
}

/* -- Audience paths ---------------------------------------------- */
.paths {
  background: var(--white);
}
.paths__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.path-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .3s;
}
.path-card:hover { transform: scale(1.02); }
.path-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.path-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.path-card:hover .path-card__bg img { transform: scale(1.05); }
.path-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
}
.path-card__content {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
}
.path-card__tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,90,18,.15);
  border: 1px solid var(--orange);
  padding: .25rem .6rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: .75rem;
  backdrop-filter: blur(4px);
}
.path-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: .5rem;
}
.path-card__desc {
  font-size: .85rem;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.path-card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1.5px solid rgba(255,255,255,.4);
  padding-bottom: 1px;
  transition: border-color .2s, gap .2s;
}
.path-card__link:hover { border-color: var(--white); gap: .55rem; }

/* -- Inclusion banner -------------------------------------------- */
.inclusion {
  background: var(--bg);
}
.inclusion__card {
  background: #0053db;
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  overflow: hidden;
  position: relative;
}
.inclusion__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.inclusion__lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  max-width: 46ch;
  margin-bottom: 2rem;
}
.inclusion__card .btn--primary {
  background: var(--white);
  color: #0053db;
}
.inclusion__card .btn--primary:hover {
  background: rgba(255,255,255,.9);
}
.inclusion__image img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* -- Global presence --------------------------------------------- */
.global {
  background: var(--dark);
  color: var(--white);
}
.global .section-title { color: var(--white); }
.global__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.global__text .section-lead {
  color: rgba(255,255,255,.65);
  max-width: 44ch;
  margin-bottom: 1.75rem;
}
.global__flags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.global__flag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: .35rem .85rem;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}
.global__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: .75rem;
}
.global__img {
  border-radius: var(--r-md);
  object-fit: cover;
  width: 100%;
}
.global__img:first-child {
  grid-row: 1 / 3;
  aspect-ratio: 3/4;
}
.global__img:not(:first-child) { aspect-ratio: 1; }

/* -- Press / Media ----------------------------------------------- */
.press {
  background: var(--bg);
}

.press__clips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.press__clip {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s;
}
.press__clip:hover {
  box-shadow: var(--shadow-md);
}
.press__clip-source {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .5rem;
}
.press__clip-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.45;
}

.press__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0 0;
  padding: 1.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
}
.press__logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  opacity: .45;
  transition: opacity .2s;
  font-style: italic;
  letter-spacing: -.01em;
}
.press__logo:hover { opacity: .8; }

.press__quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.press__quote {
  background: var(--white);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--orange);
  border-radius: var(--r-md);
  padding: 1.5rem;
}
.press__quote p {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 1rem;
}
.press__quote cite {
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  font-style: normal;
}

/* -- CTA Banner -------------------------------------------------- */
.cta-banner {
  background: var(--orange);
  padding-block: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.cta-banner .section-label { color: rgba(255,255,255,.6); }
.cta-banner .section-title { color: var(--white); margin-bottom: .75rem; }
.cta-banner .section-lead { color: rgba(255,255,255,.8); margin: 0 auto 2rem; }
.cta-banner .btn--primary {
  background: var(--white);
  color: var(--orange);
}
.cta-banner .btn--primary:hover { background: var(--orange-light); }
.cta-banner .btn--ghost { border-color: rgba(255,255,255,.4); }

/* -- Footer ------------------------------------------------------ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.6);
  padding-block: clamp(3rem, 5vw, 4.5rem);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand .footer-logo { margin-bottom: 1rem; }
.footer__brand .footer-logo img { width: 180px; height: auto; opacity: .9; }
.footer__brand p {
  font-size: .85rem;
  line-height: 1.7;
  max-width: 28ch;
  margin-bottom: 1rem;
}
.footer__col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer__col a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer__col a:hover { color: var(--orange); }
.footer__bottom {
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  padding-top: 1.5rem;
  margin-top: 1rem;
}
.footer__anafima-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: .5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__anafima-block img {
  width: 130px;
  height: auto;
  opacity: .85;
}
.footer__anafima-block p {
  font-size: .9rem;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  max-width: 44ch;
}
.footer__bottom .anafima {
  display: none;
}

/* -- Animations -------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }

/* -- Subpage Hero (shorter) -------------------------------------- */
.hero--sub {
  min-height: auto;
  padding-block: clamp(3.5rem, 8vw, 5.5rem) clamp(2rem, 5vw, 3.5rem);
}
.hero--sub .hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 18ch;
}
.hero--sub .hero__subtitle {
  max-width: 54ch;
}

/* -- Page intro strip -------------------------------------------- */
.page-intro {
  padding-block: var(--section);
}
.page-intro .section-label { margin-bottom: .5rem; }
.page-intro .section-title { margin-bottom: 1rem; }
.page-intro .section-lead { max-width: 62ch; }

/* -- Feature grid (2 col text+image) ----------------------------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }
.feature-row__text { }
.feature-row__text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: var(--black);
}
.feature-row__text p {
  color: var(--mid);
  line-height: 1.7;
  max-width: 48ch;
}
.feature-row__img img {
  width: 100%;
  border-radius: var(--r-md);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* -- Case card --------------------------------------------------- */
.case-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.case-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-card__text {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-card__text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.case-card__text ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--mid);
  line-height: 1.8;
}

/* -- FAQ Accordion ----------------------------------------------- */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-question::after {
  content: '-';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}
.faq-answer p {
  color: var(--mid);
  line-height: 1.7;
}

/* -- Contact form ------------------------------------------------ */
.contact-form {
  max-width: 640px;
  margin-inline: auto;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .4rem;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,90,18,.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* -- Materials grid ----------------------------------------------- */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.material-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: box-shadow .2s, transform .15s;
}
.material-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.material-card__icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.material-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
}
.material-card p {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.6;
}

/* -- Country grid (Presenca Global) ------------------------------ */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.country-card {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
}
.country-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.country-card:hover img { transform: scale(1.05); }
.country-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
}

/* -- Leader/ambassador cards ------------------------------------- */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.leader-card {
  text-align: center;
  padding: 2rem;
}
.leader-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-inline: auto;
  margin-bottom: 1rem;
}
.leader-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
.leader-card p {
  font-size: .85rem;
  color: var(--muted);
}

/* -- Date badge (large) ------------------------------------------ */
.date-display {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: 2rem;
}
.date-display__day {
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  color: var(--orange);
}
.date-display__rest {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--ink);
}

/* -- Responsive -------------------------------------------------- */
@media (max-width: 1024px) {
  .intro__grid,
  .global__grid { grid-template-columns: 1fr; }
  .intro__visual { display: none; }
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .inclusion__card { grid-template-columns: 1fr; }
  .inclusion__image { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row--reverse { direction: ltr; }
  .case-card { grid-template-columns: 1fr; }
  .case-card__img { max-height: 300px; }
}

@media (max-width: 768px) {
  .nav-primary, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .paths__grid { grid-template-columns: 1fr 1fr; }
  .global__images { grid-template-columns: 1fr; }
  .global__img:first-child { grid-row: auto; aspect-ratio: 16/9; }
  .metrics__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .nav-logo img { width: 160px; }
  .hero__stats-inner { grid-template-columns: 1fr 1fr; }
  .paths__grid { grid-template-columns: 1fr; }
  .pillars__grid { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.2rem; }
  .press__clips { grid-template-columns: 1fr; }
}
