/* ═══════════════════════════════════════════
   JAZIEL CÁRDENAS — PERSONAL BRAND
   XEVRA Identity · v20260517b
═══════════════════════════════════════════ */

/* ── Variables — XEVRA palette ──────────── */
:root {
  --black:      #0a0f1a;
  --dark:       #0d1420;
  --dark-2:     #111827;
  --dark-3:     #1a2235;
  --border:     rgba(72,124,255,0.12);
  --border-2:   rgba(72,124,255,0.2);
  --orange:     #487CFF;
  --orange-2:   #7BAFFF;
  --orange-dim: rgba(72,124,255,0.12);
  --white:      #F2F5FA;
  --gray-1:     #AABBD4;
  --gray-2:     #6B82A8;
  --gray-3:     #3D506E;
  --font:       'Geist', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --nav-h:      72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── Container ──────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Section base ───────────────────────── */
.section {
  padding: 120px 0;
}

.section__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.section__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.section__sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-1);
  max-width: 640px;
}

.section__header {
  margin-bottom: 72px;
}

/* ── Accent ─────────────────────────────── */
.accent { color: var(--orange); }

/* ── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 4px;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border: 1.5px solid var(--orange);
}
.btn--primary:hover {
  background: var(--orange-2);
  border-color: var(--orange-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,77,0,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--gray-1);
  border: 1.5px solid var(--border-2);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.btn--outline:hover {
  background: var(--orange-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,77,0,0.2);
}

.btn--full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s ease, border-bottom 0.4s ease;
  height: var(--nav-h);
}

.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-1);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav__link:hover { color: var(--white); }

.nav__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  padding: 9px 20px;
  border: 1.5px solid var(--orange);
  border-radius: 4px;
  transition: all 0.2s;
}
.nav__cta:hover {
  background: var(--orange-dim);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.25s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;
  background: rgba(8,8,8,0.98);
  border-top: 1px solid var(--border);
  gap: 0;
}
.nav__mobile.open { display: flex; }

.nav__mobile-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-1);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile-cta {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-align: center;
  padding: 14px;
  border: 1.5px solid var(--orange);
  border-radius: 4px;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
  opacity: 0.4;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}

.hero__name {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--gray-2);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.hero__title .accent { color: var(--orange); }

.hero__sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-1);
  max-width: 520px;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Photo */
.hero__photo-wrap {
  position: relative;
}

.hero__photo-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark-3);
  aspect-ratio: 3/4;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(8,8,8,0.6) 100%
  );
  pointer-events: none;
}

/* Corner accent lines */
.hero__photo-frame::before,
.hero__photo-frame::after {
  content: '';
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
}
.hero__photo-frame::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  border-radius: 8px 0 0 0;
}
.hero__photo-frame::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  border-radius: 0 0 8px 0;
}

/* Placeholder when photo missing */
.hero__photo-frame--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__photo-frame--placeholder::before,
.hero__photo-frame--placeholder::after {
  content: '';
  /* keep corner accents */
}
.hero__photo-frame--placeholder img {
  display: none;
}
.hero__photo-frame--placeholder .hero__photo-overlay {
  display: none;
}

/* Status tag */
.hero__photo-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-2);
  border-radius: 4px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-1);
  z-index: 3;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px rgba(34,197,94,0.6); }
  50% { box-shadow: 0 0 16px rgba(34,197,94,0.9); }
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-3);
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-3), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════════════
   SECCIÓN 2 — RESUELVE
══════════════════════════════════════════ */
.resuelve {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.card:hover {
  border-color: rgba(255,77,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.card:hover::before {
  transform: scaleX(1);
}

.card__icon {
  color: var(--orange);
  margin-bottom: 24px;
  width: 52px;
  height: 52px;
  background: var(--orange-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,77,0,0.2);
}

.card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.card__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-1);
  margin-bottom: 28px;
}

.card__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card__platforms span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 4px 10px;
  border: 1px solid rgba(255,77,0,0.25);
  border-radius: 2px;
  background: var(--orange-dim);
}

/* ══════════════════════════════════════════
   SECCIÓN 3 — CREDENCIALES
══════════════════════════════════════════ */
.credenciales {
  background: var(--black);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 72px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.stat {
  padding: 48px 36px;
  position: relative;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--dark-2); }

.stat__line {
  position: absolute;
  bottom: 0;
  left: 36px;
  right: 36px;
  height: 2px;
  background: transparent;
  transition: background 0.3s;
}
.stat:hover .stat__line {
  background: var(--orange);
}

.stat__number {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
}

.stat__number--text {
  font-size: clamp(32px, 4vw, 48px);
  font-style: italic;
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-1);
  font-weight: 400;
}

/* Industries strip */
.industries {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.industries span {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-2);
  padding: 6px 0;
  letter-spacing: 0.03em;
}

.industries .sep {
  color: var(--gray-3);
  margin: 0 16px;
}

/* ══════════════════════════════════════════
   SECCIÓN 4 — XEVRA
══════════════════════════════════════════ */
.xevra-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.xevra-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.xevra-block__text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-1);
  margin-bottom: 40px;
  max-width: 480px;
}

.xevra-logo-large {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,77,0,0.4);
  line-height: 1;
  margin-bottom: 40px;
  transition: -webkit-text-stroke 0.3s;
}

.xevra-block__right:hover .xevra-logo-large {
  -webkit-text-stroke: 1.5px var(--orange);
}

.xevra-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.xevra-service {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-2);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: all 0.2s;
}

.xevra-service:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-dim);
}

/* ══════════════════════════════════════════
   SECCIÓN 5 — CONTACTO
══════════════════════════════════════════ */
.contacto {
  background: var(--black);
}

.contacto__header {
  text-align: center;
  margin-bottom: 64px;
}
.contacto__header .section__sub {
  margin: 0 auto;
}
.contacto__header .section__label {
  text-align: center;
}

.form-wrap {
  max-width: 700px;
  margin: 0 auto;
}

/* Tally placeholder */
.tally-placeholder {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px 48px 40px;
  margin-bottom: 20px;
}

/* Temp form */
.temp-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-2);
}

.form-group input,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid var(--border-2);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-dim);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-3);
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 10px;
}

.footer__tagline {
  font-size: 14px;
  font-style: italic;
  color: var(--gray-2);
  max-width: 360px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-2);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.footer__link:hover { color: var(--orange); }

.footer__bottom p {
  font-size: 12px;
  color: var(--gray-3);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Photo reveal */
.reveal-photo {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.9s var(--ease-out) 0.2s, transform 0.9s var(--ease-out) 0.2s;
}
.reveal-photo.visible {
  opacity: 1;
  transform: none;
}

/* Safety net — never hide content if JS fails */
.reveal[data-split] { opacity: 1; transform: none; }

/* Stagger children */
.cards .card:nth-child(1) .reveal,
.stats .stat:nth-child(1) { transition-delay: 0s; }
.cards .card:nth-child(2) .reveal,
.stats .stat:nth-child(2) { transition-delay: 0.1s; }
.cards .card:nth-child(3) .reveal,
.stats .stat:nth-child(3) { transition-delay: 0.2s; }
.stats .stat:nth-child(4) { transition-delay: 0.3s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 380px;
    gap: 60px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--border); }

  .xevra-block {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .container { padding: 0 20px; }
  .section { padding: 80px 0; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 20px 60px;
  }

  .hero__name { font-size: clamp(44px, 12vw, 64px); }

  .hero__photo-wrap {
    order: -1;
  }

  .hero__photo-frame {
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 3/4;
  }

  .hero__scroll-hint { display: none; }

  .cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tally-placeholder { padding: 28px 24px; }

  .form-row { grid-template-columns: 1fr; gap: 16px; }

  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    padding: 32px 24px;
  }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--border); }
  .stat:nth-child(4) {
    border-top: 1px solid var(--border);
    grid-column: 1 / -1;
  }

  .xevra-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 24px;
  }
  .footer__links {
    align-items: flex-start;
  }

  .industries {
    gap: 0;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    justify-content: center;
  }

  .section__title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .stats {
    grid-template-columns: 1fr;
  }
  .stat { border-right: none !important; border-top: 1px solid var(--border); }
  .stat:first-child { border-top: none; }
}

/* ── Dot pulse ───────────────────────────── */
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(72,255,120,0.6); }
  50%       { opacity: 0.7; transform: scale(1.3); box-shadow: 0 0 0 6px rgba(72,255,120,0); }
}
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #48ff78;
  animation: dotPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Marcas / Marquee ────────────────────── */
.marcas-section {
  padding: 5rem 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marcas-header {
  text-align: center;
  margin-bottom: 3rem;
}

.marquee-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marca-logo {
  height: 50px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.45;
  flex-shrink: 0;
  margin: 0 3rem;
  transition: opacity 0.2s ease;
}

.marca-logo--xl {
  height: 80px;
  max-width: 200px;
}

.marca-logo:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .marca-logo { height: 36px; margin: 0 2rem; }
  .marca-logo--xl { height: 56px; max-width: 150px; }
}
