/* ============================================================
   DARA — style.css
   Ordem: tokens → base → componentes (ordem do HTML) → utilitários
   Sem !important exceto em overlays absolutos onde especificidade
   não resolve de outra forma.
   ============================================================ */


/* ============================================================
   1. RESET & BOX MODEL
   ============================================================ */

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


/* ============================================================
   2. DESIGN TOKENS
   ============================================================ */

:root {
  /* Cores */
  --bordo:  #3B0017;
  --red:    #E8230A;
  --yellow: #EEE100;
  --cream:  #F0EEEA;
  --pill:   #DDD5D5;
  --white:  #F2F2F4;
  --black:  #0D0D0D;
  --dark:   #0D0B1E;

  /* Tipografia */
  --f: 'General Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Escala de texto */
  --text-xs:   clamp(.62rem,  .92vw,  .72rem);
  --text-sm:   clamp(.78rem, 1.15vw,  .88rem);
  --text-base: clamp(.88rem, 1.30vw,  .98rem);
  --text-md:   clamp(.95rem, 1.50vw, 1.10rem);
  --text-lg:   clamp(1.5rem, 3.20vw, 2.60rem);
  --text-xl:   clamp(2.0rem, 5.50vw, 4.50rem);
  --text-2xl:  clamp(2.7rem, 4.20vw, 4.80rem);
  --text-hero: clamp(3.0rem, 7.00vw, 6.20rem);

  /* Layout */
  --pad: clamp(1.5rem, 5vw, 5rem);
  --max: 1280px;
  --radius-sm: .75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
}


/* ============================================================
   3. BASE
   ============================================================ */

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bordo);
  color: var(--white);
  font-family: var(--f);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}


/* ============================================================
   4. TIPOGRAFIA GLOBAL
   ============================================================ */

p {
  line-height: 1.75;
}

/* Restaura pointer-events e seleção em elementos interativos */
a,
button,
input,
textarea,
label {
  pointer-events: auto;
  user-select: auto;
}


/* ============================================================
   5. NAV DESKTOP
   ============================================================ */

.nav-wrap {
  position: fixed;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  align-items: center;
  gap: .75rem;
  width: calc(100% - 3rem);
  max-width: 860px;
}

.nav-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(59, 0, 23, 0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}

.nav-pill {
  flex: 1;
  height: 56px;
  border-radius: 100px;
  background: rgba(86, 0, 33, 0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .3);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  padding: 0 1.5rem;
}

.nav-pill a {
  width: 100%;
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 500;
  color: var(--red);
  transition: opacity .2s;
}

.nav-pill a:hover {
  opacity: .7;
}

.nav-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1px;
  color: rgba(232, 35, 10, .35);
  font-size: .85rem;
}

@media (max-width: 680px) {
  .nav-wrap {
    display: none;
  }
}


/* ============================================================
   6. NAV MOBILE
   ============================================================ */

.nav-mobile {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
}

.nav-mobile-bubble {
  background: rgba(59, 0, 23, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .75rem 1.4rem;
  cursor: pointer;
  transition: border-radius .3s;
}

.nav-mobile-bubble.open {
  border-radius: 20px;
  flex-direction: column;
  padding: 1.2rem 2rem;
}

.nav-mobile-top {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.nav-mobile-links {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: .5rem;
}

.nav-mobile-bubble.open .nav-mobile-links {
  display: flex;
}

.nav-mobile-links a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--red);
  transition: color .2s, opacity .2s, transform .2s;
}

.nav-mobile-links a.active {
  opacity: 1;
  text-shadow:
    0 0 6px  rgba(232, 35, 10, .55),
    0 0 14px rgba(232, 35, 10, .32),
    0 0 24px rgba(232, 35, 10, .18);
  transform: scale(1.04);
}

@media (max-width: 680px) {
  .nav-mobile {
    display: flex;
  }
}


/* ============================================================
   7. HERO
   ============================================================ */

.hero {
  background: var(--bordo);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad) clamp(2rem, 5vw, 4rem);
}

.hero-logo-wrap {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: clamp(.5rem, 1.5vw, .8rem);
}

.dara-logo-svg-hero {
  flex: 1;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    align-items: center;
    justify-content: center;
  }

  .hero-logo-wrap {
    margin: 0 auto;
  }
}


/* ============================================================
   8. SOBRE
   ============================================================ */

.sobre {
  background: var(--cream);
  color: var(--bordo);
  /* padding: clamp(5rem, 10vw, 9rem) var(--pad); */
  padding: clamp(3rem, 7vw, 6rem) var(--pad);
}

.sobre-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.sobre-label {
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 2rem;
}

.sobre-icon {
  margin-bottom: 2.5rem;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.sobre-big {
  font-size: clamp(.95rem, 1.5vw, 1.35rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--bordo);
}

.sobre-body p {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.8;
  color: var(--bordo);
  opacity: .8;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .sobre-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   9. MANIFESTO
   ============================================================ */

.manifesto {
  background: var(--black);
}

/* Strip / faixa de imagem */
.manifesto-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: clamp(200px, 28vw, 340px);
}

.manifesto-strip-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  min-height: clamp(200px, 28vw, 340px);
}

.manifesto-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem var(--pad);
}

.strip-text {
  font-size: clamp(.9rem, 2vw, 1.3rem);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  line-height: 1.5;
  max-width: 40ch;
}

/* Body do manifesto */
.manifesto-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(3rem, 7vw, 6rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.manifesto-label {
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--white);
}

.manifesto-text p {
  /* font-size: clamp(1rem, 1.3vw, 1.1rem); */
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 1rem;
}

.manifesto-img {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
}

@media (max-width: 768px) {
  .manifesto-body {
    grid-template-columns: 1fr;
    padding: clamp(2rem, 5vw, 3rem) var(--pad);
  }

  .manifesto-img-col {
    display: none;
  }
}

@media (max-width: 768px) {
  .manifesto-strip {
    min-height: clamp(280px, 60vw, 400px);
  }

  .manifesto-strip-bg {
    object-position: 20% 20%;
    min-height: clamp(280px, 60vw, 400px);
  }
}

/* ============================================================
   10. APOSTA
   ============================================================ */

.aposta-red {
  background: var(--red);
  padding: clamp(2rem, 4vw, 3.5rem) var(--pad);
  display: flex;
  justify-content: center;
  align-items: center;
}

.aposta-red-inner {
  width: 100%;
  max-width: 980px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aposta-red p {
  font-size: clamp(2.9rem, 4.2vw, 4.8rem);
  font-weight: 500;
  color: var(--black);
  line-height: .9;
  letter-spacing: -.05em;
  max-width: 24ch;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .aposta-red p {
    font-size: clamp(1.9rem, 8vw, 3.2rem);
    line-height: .92;
  }
}


/* ============================================================
   11. ACREDITAMOS
   ============================================================ */

.acreditamos {
  background: var(--black);
  padding: clamp(3rem, 7vw, 6rem) var(--pad) clamp(3.5rem, 7vw, 6.5rem);
}

.acreditamos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.acreditamos-img-wrap {
  position: relative;
  padding-bottom: clamp(45px, 5vw, 80px);
}

.acreditamos-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-lg);
  display: block;
}

.acreditamos-logo-overlay {
  position: absolute;
  bottom: clamp(14px, 2vw, 24px);
  left: clamp(18px, 2.5vw, 32px);
  width: clamp(120px, 34%, 190px);
  height: auto;
  z-index: 3;
}

.acreditamos-small {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--yellow);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 400;
}

.acreditamos-big {
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 500;
  color: var(--yellow);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.acreditamos-list {
  list-style: none;
}

.acreditamos-list li {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--yellow);
  opacity: .8;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .acreditamos-grid {
    grid-template-columns: 1fr;
  }

  .acreditamos-img-wrap {
    padding-bottom: 70px;
  }

  .acreditamos-logo-overlay {
    bottom: 18px;
    left: 18px;
    width: min(42vw, 160px);
  }
}


/* ============================================================
   12. NOME DARA
   ============================================================ */

.nome-dara {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  background: var(--yellow);
}

.nome-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.nome-bg-mob {
  display: none;
}

.nome-card {
  position: relative;
  z-index: 1;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 560px;
  margin: 0 auto;
}

.nome-card p {
  font-size: var(--text-base);
  color: var(--bordo);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-weight: 400;
}

.nome-card p strong {
  font-weight: 600;
}

.nome-card .nome-big {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 500;
  color: var(--bordo);
  line-height: 1.25;
  margin-top: 1rem;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .nome-bg-desk {
    display: none;
  }

  .nome-bg-mob {
    display: block;
  }

  .nome-big {
    font-size: clamp(1.15rem, 5vw, 1.7rem);
  }
}


/* ============================================================
   13. FAIXA — NÃO EXISTE / VALORES BG
   ============================================================ */

.nao-existe {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  background: var(--dark);
  line-height: 0;
}

/* A imagem define a altura — sem crop */
.nao-bg {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.nao-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(.9rem, 2vw, 1.3rem);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.5;
  text-align: center;
  pointer-events: none;
}


/* ============================================================
   14. VALORES
   ============================================================ */

.valores {
  background: var(--bordo);
  padding: clamp(3rem, 7vw, 6rem) var(--pad);
}

.valores-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--red);
  line-height: 1;
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

/* Grid desktop */
.vgrid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
}

.vgrid-bot {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: calc(var(--max) * 2 / 3 + .66rem);
  margin: 1rem auto 0;
}

/* Carrossel mobile */
.vcarousel {
  display: none;
  overflow-x: auto;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .5rem;
}

.vcarousel::-webkit-scrollbar {
  display: none;
}

/* Card de valor */
.vcard {
  background: var(--red);
  border-radius: var(--radius-md);
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.vcarousel .vcard {
  width: clamp(260px, 75vw, 320px);
  flex-shrink: 0;
  scroll-snap-align: start;
}

.vcard-name {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  font-weight: 500;
  color: var(--bordo);
  margin-bottom: .5rem;
}

.vcard-desc {
  font-size: var(--text-sm);
  color: var(--bordo);
  line-height: 1.6;
  opacity: .85;
}

.vcard-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 1rem;
}

.vcard-num {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--bordo);
  opacity: .25;
}

@media (max-width: 768px) {
  .vgrid-top,
  .vgrid-bot {
    display: none;
  }

  .vcarousel {
    display: flex;
  }
}


/* ============================================================
   15. ABORDAGEM
   ============================================================ */

.abordagem {
  background: var(--black);
  padding: clamp(3rem, 7vw, 6rem) var(--pad);
}

.abordagem-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 1.2rem;
  max-width: var(--max);
  margin: 0 auto;
  align-items: stretch;
}

.abordagem-card {
  background: var(--white);
  border: 1.5px solid #ddd;
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  color: var(--black);
}

.abordagem-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 2rem 0 1rem;
}

.abordagem-card h3:first-child {
  margin-top: 0;
}

.abordagem-card p {
  font-size: var(--text-base);
  line-height: 1.55;
  color: #333;
  flex: 1;
}

.abordagem-btn {
  display: block;
  margin-top: 2rem;
  background: var(--black);
  color: var(--white);
  border-radius: 100px;
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: var(--text-base);
  font-weight: 500;
  transition: opacity .2s;
}

.abordagem-btn:hover {
  opacity: .8;
}

.abordagem-grafo {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 300px;
}

.abordagem-grafo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .abordagem-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   16. IMPRENSA  (oculta por ora)
   ============================================================ */

#imprensa,
.imprensa {
  display: none;
}


/* ============================================================
   17. EQUIPE
   ============================================================ */

.equipe {
  background: var(--cream);
  padding: clamp(3rem, 7vw, 6rem) var(--pad);
  color: var(--bordo);
}

.equipe-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.equipe-title {
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--bordo);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.equipe-sep {
  border: none;
  border-top: 1px solid rgba(59, 0, 23, .2);
  margin-bottom: 2.5rem;
}

.equipe-grupo {
  width: 100%;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

/* Grid uniforme de 4 colunas */
.erow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

/* Cards — mesma proporção */
.cat-card,
.member-card {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

/* Cat card (label de categoria) */
.cat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
}

.cat-card.red    { background: var(--red); }
.cat-card.bordo  { background: var(--bordo); border: 1px solid rgba(255,255,255,.1); }
.cat-card.yellow { background: var(--yellow); }
.cat-card.cyan   { background: #7ED9D9; }
.cat-card.blk    { background: var(--black); }

.cat-name {
  font-size: clamp(1.15rem, 1.85vw, 1.4rem);
  font-weight: 500;
  line-height: 1.3;
}

/* Cores de texto por variante */
.cat-card.red    .cat-name,
.cat-card.red    .cat-icon { color: var(--bordo); }

.cat-card.bordo  .cat-name,
.cat-card.bordo  .cat-icon { color: var(--red); }

.cat-card.yellow .cat-name,
.cat-card.yellow .cat-icon,
.cat-card.cyan   .cat-name,
.cat-card.cyan   .cat-icon { color: var(--bordo); }

.cat-card.blk    .cat-name,
.cat-card.blk    .cat-icon { color: var(--white); }

.cat-icon {
  margin-top: auto;
  width: clamp(34px, 4vw, 48px);
  height: auto;
}

.cat-icon svg {
  width: 100%;
  height: auto;
  display: block;
}

.cat-icon svg path {
  fill: currentColor;
}

/* Member card */
.member-card {
  background: #111;
}

.member-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.member-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.95) 0%,
    rgba(0,0,0,.65) 50%,
    transparent    100%
  );
  padding: clamp(.8rem, 1.5vw, 1rem);
}

.member-name {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: .25rem;
}

.member-bio {
  font-size: clamp(.9rem, 1.2vw, 1rem);
  color: rgba(255, 255, 255, .65);
  line-height: 1.5;
  margin-bottom: .5rem;
}

.member-links {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

.member-links a {
  font-size: .75rem;
  font-weight: 500;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 100px;
  padding: .15rem .5rem;
  transition: background .2s;
}

.member-links a:hover {
  background: rgba(255, 255, 255, .15);
}

/* Placeholder invisível para alinhar grid */
.invisible {
  aspect-ratio: 3 / 4;
}

@media (max-width: 900px) {
  .erow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .erow {
    grid-template-columns: 1fr;
  }

  .equipe-grupo {
    margin-bottom: 2rem;
  }

  .invisible {
    display: none;
  }
}


/* ============================================================
   18. PARCEIROS
   ============================================================ */

.parceiros {
  background: var(--black);
  padding: clamp(3.5rem, 7vw, 6rem) var(--pad);
  text-align: center;
}

.parceiros-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--white);
  opacity: .85;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.parceiros-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: clamp(3.5rem, 6vw, 6rem);
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* Separadores verticais entre logos */
.parceiros-logos > *:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(clamp(3.5rem, 6vw, 6rem) / -2);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, .15);
}

.parceiros-logos > * {
  position: relative;
}

.partner-logo {
  width: auto;
  height: auto;
  max-width:  clamp(130px, 13vw, 185px);
  max-height: clamp(48px, 5vw, 78px);
  object-fit: contain;
}

.partner-logo-wide {
  max-width:  clamp(170px, 18vw, 245px);
  max-height: clamp(46px, 5vw, 72px);
}

@media (max-width: 900px) {
  .parceiros-logos {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    max-width: 680px;
    gap: clamp(2rem, 4.5vw, 4.5rem);
  }

  .parceiros-logos > *:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .parceiros-logos {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .partner-logo,
  .partner-logo-wide {
    max-width: min(78vw, 300px);
    max-height: 92px;
  }
}


/* ============================================================
   19. FOOTER RED
   ============================================================ */

.footer-red {
  background: var(--red);
  padding: clamp(4rem, 7vw, 6rem) var(--pad);
  position: relative;
  overflow: hidden;
}

.footer-red-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(3rem, 7vw, 5rem);
}

.footer-red-text {
  font-size: clamp(3.2rem, 14vw, 5.6rem);
  font-weight: 500;
  color: var(--black);
  line-height: .92;
  text-transform: uppercase;
  max-width: 10.8ch;
  letter-spacing: -.04em;
}

.footer-red-brand {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.6vw, 2.4rem);
}

.footer-red-brand img {
  display: block;
  height: auto;
  mix-blend-mode: multiply;
}

.footer-red-brand-mark {
  width: clamp(80px, 8vw, 120px);
}

.footer-red-brand-text {
  width: clamp(280px, 31vw, 520px);
}

@media (max-width: 640px) {
  .footer-red {
    padding: 4rem var(--pad) 5rem;
  }

  .footer-red-inner {
    gap: 4rem;
  }

  .footer-red-text {
    font-size: clamp(3.2rem, 14vw, 5.6rem);
    max-width: 8.5ch;
  }

  .footer-red-brand {
    gap: 1.25rem;
    align-items: center;
  }

  .footer-red-brand-mark {
    width: clamp(82px, 23vw, 115px);
  }

  .footer-red-brand-text {
    width: clamp(260px, 62vw, 420px);
  }
}


/* ============================================================
   20. FOOTER BOTTOM
   ============================================================ */

.footer-bottom {
  background: var(--bordo);
  padding: clamp(4.5rem, 7vw, 7rem) var(--pad) clamp(4rem, 6vw, 6rem);
  min-height: clamp(520px, 40vw, 620px);
  display: flex;
  align-items: center;
}

.footer-bottom-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.footer-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(2rem, 8vw, 8rem);
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.footer-tagline {
  font-size: clamp(2.7rem, 4.2vw, 4.8rem);
  font-weight: 500;
  color: var(--red);
  line-height: .96;
  text-transform: uppercase;
  letter-spacing: -.04em;
  max-width: 13ch;
}

.footer-social {
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: .45rem;
}

.footer-social a {
  font-size: clamp(1.25rem, 1.55vw, 1.7rem);
  font-weight: 500;
  color: var(--red);
  transition: opacity .2s;
}

.footer-social a:hover {
  opacity: .75;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(232, 35, 10, .28);
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.footer-logo-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.dara-logo-svg-footer {
  display: block;
  width: min(82vw, 1150px);
  height: auto;
}

@media (max-width: 768px) {
  .footer-bottom {
    min-height: auto;
    padding: 4rem var(--pad) 4.5rem;
  }

  .footer-top-row {
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 3.8rem;
  }

  .footer-tagline {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
    max-width: 10.5ch;
  }

  .footer-social {
    gap: 1.8rem;
  }

  .footer-social a {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
  }

  .footer-divider {
    margin-bottom: 3.2rem;
  }

  .dara-logo-svg-footer {
    width: 92vw;
  }
}


/* ============================================================
   21. ANIMAÇÃO DE ENTRADA (.fi)
   ============================================================ */

.fi {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.fi.on {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }


/* ============================================================
   22. PROTEÇÃO DE ASSETS
   ============================================================ */

img,
svg,
picture,
video,
canvas {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
  pointer-events: none;
}

/* Restaura interatividade nos elementos de navegação e links */
a,
button,
.nav-wrap,
.nav-wrap *,
.nav-mobile,
.nav-mobile *,
.member-links,
.member-links *,
.footer-social,
.footer-social * {
  pointer-events: auto;
}
