 :root{

  /* =========================
     BASE OSCURA
  ========================= */

  --bg-dark: #05070d;
  --bg-soft: #0c111b;
  --bg-warm: #1a1408;

  /* =========================
     DORADOS (JERARQUÍA)
  ========================= */

  --gold-main: #d4af37;   /* títulos */
  --gold-soft: #e6c76a;   /* hover / acentos */
  --gold-light: #f1e6c8;  /* texto principal */

  /* =========================
     TEXTOS
  ========================= */

  --text: #ffffff; /* fallback / contraste */
  --text-muted: rgba(255,255,255,.65);
  --text-gold: #e6c76a;

  /* =========================
     EFECTOS
  ========================= */

  --glow-gold: 0 0 20px rgba(212,175,55,.25);
  --shadow-deep: 0 25px 80px rgba(0,0,0,.8);

  /* =========================
     BORDES / CAPAS
  ========================= */

  --border-soft: rgba(255,255,255,.08);
  --layer-soft: rgba(255,255,255,.02);

  /* =========================
     UI
  ========================= */

  --radius: 14px;
  --radius-full: 50px;

  --font-main: 'Inter', sans-serif;
}
body{
  margin:0;

  font-family: var(--font-main);

  background:
  radial-gradient(
    circle at top,
    var(--bg-warm),
    var(--bg-dark)
  );

  color: var(--gold-light);

  line-height:1.6;

  font-size:17px;
}

.h1{
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.2;
  color: var(--gold-main);
  text-shadow: var(--glow-gold);
}

.sub{
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-gold);
}


/* =========================
   FAQ HOME PRO
========================= */

.faq-home{
  padding: 90px 20px;
  position: relative;
}

.faq-home .section-head{
  text-align:center;
  margin-bottom:50px;
}

.faq-home .h2{
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  color: var(--gold-main);
  margin-bottom: 18px;
  letter-spacing: -.02em;
}

.faq-home .section-intro{
  max-width: 760px;
  margin: auto;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.8;
}

/* LISTA */

.faq-list{
  max-width: 1100px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* ITEM */

.faq-item{
  position:relative;
  border-radius:22px;
  overflow:hidden;

  background:
    linear-gradient(
      180deg,
      rgba(18,24,38,.96),
      rgba(8,12,20,.98)
    );

  border:1px solid rgba(212,175,55,.14);

  box-shadow:
    0 10px 35px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.03);

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

/* HOVER */

.faq-item:hover{
  transform: translateY(-3px);

  border-color:
    rgba(212,175,55,.35);

  box-shadow:
    0 18px 55px rgba(0,0,0,.45),
    0 0 25px rgba(212,175,55,.08);
}

/* OPEN */

.faq-item[open]{
  border-color:
    rgba(212,175,55,.45);
}

/* QUESTION */

.faq-q{
  position:relative;

  cursor:pointer;

  list-style:none;

  padding:
    28px
    85px
    28px
    30px;

  font-size:20px;
  font-weight:700;
  line-height:1.5;

  color:#fff;

  transition:
    color .25s ease;
}


/* =========================
   MEDIA GALLERY ULTRA PRO
========================= */

.mediaBlock{

  position:relative;

  padding:90px 40px;

}

/* HEAD */

.mediaHead{

  position:relative;

  margin-bottom:42px;

  z-index:2;

}

.mediaHead h2{

  margin:0 0 14px;

  font-size:
    clamp(38px,5vw,72px);

  line-height:.95;

  font-weight:900;

  letter-spacing:-2px;

  color:var(--gold-main);

  text-shadow:
    0 10px 30px rgba(212,175,55,.12);

}

/* INTRO */

.mediaHead .mini{

  max-width:720px;

  margin-top:18px;

  font-size:20px;

  line-height:1.9;

  font-weight:400;

  color:
    rgba(255,255,255,.82);

  letter-spacing:.2px;

}

.mediaHead .mini::after{

  content:'';

  display:block;

  width:90px;

  height:2px;

  margin-top:18px;

  border-radius:999px;

  background:
    linear-gradient(
      90deg,
      #D4AF37,
      transparent
    );

}

/* CARD */

.mediaCard{

  position:relative;

  padding:34px;

  border-radius:34px;

  overflow:hidden;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.03),
      rgba(255,255,255,.015)
    );

  border:
    1px solid rgba(255,255,255,.06);

  box-shadow:
    0 35px 90px rgba(0,0,0,.45);

  backdrop-filter:
    blur(18px);

}

/* GLOW */

.mediaCard::before{

  content:'';

  position:absolute;

  inset:0;

  background:
    radial-gradient(
      circle at top right,
      rgba(212,175,55,.10),
      transparent 34%
    );

  pointer-events:none;

}

/* GRID */

.media-grid{

  position:relative;

  z-index:2;

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(340px,1fr));

  gap:30px;

}

/* ITEM */

.mediaItem{

  position:relative;

  display:flex;
  flex-direction:column;

  width:100%;

  overflow:hidden;

  border-radius:28px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.02)
    );

  border:
    1px solid rgba(255,255,255,.06);

  transition:
    transform .38s ease,
    border-color .38s ease,
    box-shadow .38s ease;

}

/* OVERLAY */

.mediaItem::after{

  content:'';

  position:absolute;

  inset:0;

  background:
    linear-gradient(
      180deg,
      transparent 40%,
      rgba(0,0,0,.22)
    );

  pointer-events:none;

}

/* HOVER */

.mediaItem:hover{

  transform:
    translateY(-10px);

  border-color:
    rgba(212,175,55,.35);

  box-shadow:
    0 24px 70px rgba(0,0,0,.48);

}

/* IMAGE */

.mediaItem img{

  border-bottom:
    1px solid rgba(255,255,255,.05);

}

.mediaThumb{

  width:100%;

  height:auto;

  max-height:720px;

  object-fit:contain;

  display:block;

  background:
    linear-gradient(
      180deg,
      #05070d,
      #0c1320
    );

  transition:
    transform .55s ease;

}

/* ZOOM */

.mediaItem:hover .mediaThumb{

  transform:scale(1.03);

}

/* VIDEO */

.mediaVideoThumb{

  position:relative;

  height:340px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  overflow:hidden;

  background:
    linear-gradient(
      135deg,
      rgba(212,175,55,.12),
      rgba(0,0,0,.58)
    );

}

/* VIDEO OVERLAY */

.mediaVideoThumb::before{

  content:'';

  position:absolute;

  inset:0;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,.03),
      transparent 70%
    );

}

/* PLAY */

.playBadge{

  position:relative;

  z-index:2;

  width:86px;
  height:86px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:30px;

  color:#111;

  background:
    linear-gradient(
      135deg,
      #D4AF37,
      #B8860B
    );

  border:
    1px solid rgba(255,255,255,.18);

  box-shadow:
    0 16px 40px rgba(212,175,55,.35);

  margin-bottom:18px;

  transition:
    transform .35s ease;

}

.mediaItem:hover .playBadge{

  transform:scale(1.08);

}

/* VIDEO LABEL */

.videoLabel{

  position:relative;

  z-index:2;

  color:#fff;

  font-size:17px;

  font-weight:700;

  letter-spacing:.3px;

}

/* CAPTION */

.mediaCaption{

  position:relative;

  padding:24px 24px 28px;

  color:#fff;

  font-size:18px;

  font-weight:700;

  line-height:1.7;

  letter-spacing:.2px;

  overflow-wrap:break-word;

  word-break:break-word;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.015),
      rgba(255,255,255,.03)
    );

  border-top:
    1px solid rgba(255,255,255,.05);

  display:-webkit-box;

  -webkit-line-clamp:2;

  -webkit-box-orient:vertical;

  overflow:hidden;

}

/* TEXTO */

.mediaCaption p{

  margin:0;

  color:#F8F4EA;

}

/* EFECTO DORADO */

.mediaCaption::before{

  content:'';

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:2px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(212,175,55,.75),
      transparent
    );

}

/* MOBILE */

@media(max-width:980px){

  .mediaBlock{

    padding:60px 18px;

  }

  .mediaCard{

    padding:22px;

    border-radius:26px;

  }

  .media-grid{

    grid-template-columns:1fr;

    gap:22px;

  }

}

@media(max-width:640px){

  .mediaHead{

    margin-bottom:28px;

  }

  .mediaHead h2{

    font-size:46px;

    letter-spacing:-1px;

  }

  .mediaHead .mini{

    font-size:16px;

    line-height:1.75;

  }

  .mediaCaption{

    padding:18px 18px 22px;

    font-size:15px;

    line-height:1.7;

  }

  .mediaVideoThumb{

    height:260px;

  }

  .playBadge{

    width:72px;
    height:72px;

    font-size:26px;

  }

}

/* remove marker */

.faq-q::-webkit-details-marker{
  display:none;
}

/* plus */

.faq-q::after{

  content:"+";

  position:absolute;

  right:28px;
  top:50%;

  transform:
    translateY(-50%);

  width:42px;
  height:42px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:28px;
  font-weight:300;

  color: var(--gold-main);

  border:
    1px solid rgba(212,175,55,.28);

  background:
    rgba(212,175,55,.05);

  transition:
    all .25s ease;
}

/* open state */

.faq-item[open] .faq-q{
  color: var(--gold-main);
}

.faq-item[open] .faq-q::after{

  content:"−";

  background:
    rgba(212,175,55,.14);

  border-color:
    rgba(212,175,55,.45);

  transform:
    translateY(-50%)
    rotate(180deg);
}


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

img{
  max-width:100%;
  display:block;
}

button{
  font-family: inherit;
  cursor:pointer;
  border:none;
}
.wrap{
  width:100%;
  min-height:100vh;
  padding:0 16px;
}

.sheet{
  width:100%;
  background: linear-gradient(180deg, var(--bg-soft), var(--bg-dark));
  border-radius:22px;
  border:1px solid var(--border-soft);
  box-shadow: var(--shadow-deep);
  overflow:hidden;
}

.rule{
  width: 100%;
  height: 2px;
  margin: 20px auto;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(212,175,55,.4),
    rgba(212,175,55,.8),
    rgba(212,175,55,.4),
    transparent
  );
}
.top{
  display:flex;
  justify-content:space-between;
  padding:14px 18px;
  background: var(--layer-soft);
  border-bottom:1px solid var(--border-soft);
}

.brand{
  color: var(--gold-main);
  font-weight:700;
  text-shadow: var(--glow-gold);
}

.back{
  color: var(--text-muted);
}

.back:hover{
  color: var(--gold-soft);
}
.hero{
  padding:70px 60px 90px;
}
.hero-copy{
  max-width:720px;
}
.hero-img{
  max-height:760px;
  object-fit:cover;
}
.hero-card{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  background: var(--layer-soft);
  border:1px solid var(--border-soft);
  border-radius:18px;
  gap:64px;
}
.hero-extra{

  margin-top:20px;

  padding-top:15px;

  border-top:
  1px solid var(--border-soft);

  color: var(--gold-light);

  font-size:17px;

  line-height:1.8;
}

.card{
  background: var(--layer-soft);
  border:1px solid var(--border-soft);
  border-radius:16px;
  padding:18px;
}
#faq-servicio .faq-q{
  color: var(--gold-main);
}

#faq-servicio .faq-a{
  color: var(--gold-light);
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
}
.btn{
  background: linear-gradient(135deg,#ff4c29,#ff7a18);
  color:#fff;
   min-height:52px;
  padding:14px 26px;
}

.btn-ghost{
  border:1px solid var(--border-soft);
  color: var(--text);
   min-height:52px;
  padding:14px 26px;
}
  /* =========================
   FOOTER PREMIUM
========================= */

.footer{

  position:relative;

  padding-top:90px;

  background:
  linear-gradient(
    180deg,
    #050505,
    #020202
  );

  overflow:hidden;
}

.footer::before{

  content:'';

  position:absolute;

  inset:0;

  background:
  radial-gradient(
    circle at top right,
    rgba(212,175,55,.06),
    transparent 30%
  );

  pointer-events:none;
}

/* WRAP */

.footer-wrap{

  max-width:1280px;

  margin:auto;

  padding:0 24px 70px;

  display:grid;

  grid-template-columns:
  1.5fr
  1fr
  1fr
  1fr;

  gap:60px;
}

/* BRAND */
.footer-brand-top{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:32px;
  align-items:start;
  margin-top:24px;
}
.footer-brand{

  max-width:430px;
}

.footer-badge{

  display:inline-flex;

  padding:9px 16px;

  border-radius:999px;

  margin-bottom:24px;

  background:rgba(212,175,55,.08);

  border:1px solid rgba(212,175,55,.14);

  color:var(--gold-main);

  font-size:.78rem;

  font-weight:700;

  letter-spacing:.08em;

  text-transform:uppercase;
}

.footer-logo{

  color:#fff;

  font-size:2rem;

  line-height:1.2;

  margin:0;

  font-weight:800;
}

.footer-desc{

  color:var(--text-muted);

  line-height:1.9;

  font-size:1rem;

   margin:0;
  max-width:320px;
}

/* SOCIAL */

.footer-social{

  display:flex;

  gap:14px;
}

.footer-social a{

  width:48px;

  height:48px;

  border-radius:16px;

  display:flex;

  align-items:center;

  justify-content:center;

  background:rgba(255,255,255,.03);

  border:1px solid rgba(255,255,255,.06);

  color:#fff;

  text-decoration:none;

  transition:.30s ease;
}

.footer-social a:hover{

  transform:translateY(-4px);

  border-color:rgba(212,175,55,.28);

  color:var(--gold-main);

  background:rgba(212,175,55,.08);
}

/* COLS */

.footer-col h4{

  color:#fff;

  margin:0 0 26px;

  font-size:1rem;

  font-weight:700;
}

.footer-col ul{

  list-style:none;

  padding:0;

  margin:0;

  display:flex;

  flex-direction:column;

  gap:16px;
}

.footer-col ul li{

  color:var(--text-muted);

  font-size:.96rem;
}

.footer-col ul li a{

  color:var(--text-muted);

  text-decoration:none;

  transition:.25s ease;
}

.footer-col ul li a:hover{

  color:var(--gold-main);

  padding-left:6px;
}

/* CONTACT */

.footer-contact li{

  display:flex;

  align-items:flex-start;

  gap:12px;

  line-height:1.7;
}

.footer-contact i{

  color:var(--gold-main);

  margin-top:3px;
}

/* BUTTON */

.footer-btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  margin-top:30px;

  min-width:220px;

  height:56px;

  border-radius:18px;

  background:var(--gold-main);

  color:#111;

  text-decoration:none;

  font-weight:700;

  transition:.30s ease;

  box-shadow:
  0 14px 40px rgba(212,175,55,.22);
}

.footer-btn:hover{

  transform:translateY(-4px);

  box-shadow:
  0 20px 50px rgba(212,175,55,.30);
}

/* BOTTOM */

.footer-bottom{

  border-top:1px solid rgba(255,255,255,.05);

  padding:24px 0;
}

.footer-bottom-wrap{

  max-width:1280px;

  margin:auto;

  padding:0 24px;

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:20px;

  flex-wrap:wrap;
}

.footer-bottom p{

  color:rgba(255,255,255,.45);

  font-size:.9rem;

  margin:0;
}

.footer-legal{

  display:flex;

  align-items:center;

  gap:20px;
}

.footer-legal a{

  color:rgba(255,255,255,.45);

  text-decoration:none;

  font-size:.9rem;

  transition:.25s ease;
}

.footer-legal a:hover{

  color:var(--gold-main);
}

/* RESPONSIVE */
/* MOBILE */

@media(max-width:768px){

  .mediaBlock{
    padding:40px 20px;
  }

  .mediaCard{
    padding:18px;
  }

  .media-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .mediaThumb,
  .mediaVideoThumb{
    height:240px;
  }

}
@media(max-width:1100px){

  .footer-wrap{

    grid-template-columns:
    1fr
    1fr;

    gap:50px;
  }
}
@media(max-width:900px){

  .footer-brand-top{
    grid-template-columns:1fr;
    gap:18px;
  }

}
@media(max-width:700px){

  .footer{

    padding-top:70px;
  }

  .footer-wrap{

    grid-template-columns:1fr;

    gap:50px;
  }

  .footer-logo{

    font-size:1.7rem;
  }

  .footer-bottom-wrap{

    flex-direction:column;

    text-align:center;
  }

  .footer-legal{

    justify-content:center;
  }
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom:12px;
}

.footer-links a{
  color:var(--text-muted);
  text-decoration:none;
  transition:.3s;
}

.footer-links a:hover{
  color:var(--gold-main);
}

.footer-empty{
  color:var(--text-muted);
  font-size:15px;
}


.top,
.hero-card,
.mediaBlock,
.faq,
.agenda,
.footer-wrap,
.footer-bottom-wrap{
  max-width:1400px;
  margin-inline:auto;
}

@media(max-width:768px){

  .hero{
    padding:32px 20px;
  }

  .hero-card{
    grid-template-columns:1fr;
    gap:32px;
  }

  .hero-copy{
    max-width:100%;
  }

  .hero-img-wrap{
    order:-1;
    justify-content:center;
    margin-bottom:24px;
  }

  .hero-img{
    width:100%;
    max-width:320px;
    height:auto;
    margin:auto;
  }

  .h1{
    font-size:clamp(32px, 9vw, 54px);
    line-height:1.02;
     word-break:normal;
  overflow-wrap:break-word;
  }

  .sub{
    font-size:20px;
    line-height:1.6;
  }

  .btnrow{
    .btnrow{
  flex-direction:column;
  align-items:stretch;
  margin-bottom:20px;
}

.btn{
  width:100%;
  text-align:center;
  justify-content:center;
  margin-bottom:20px;
}
    gap:14px;
  }

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

}

/* =========================
   FULLSCREEN MEDIA MODAL
========================= */

.fbModal{
  position:fixed;
  inset:0;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:40px;

  z-index:999999;

  opacity:0;
  visibility:hidden;

  transition:
    opacity .35s ease,
    visibility .35s ease;
}

/* OPEN */

.fbModal.isOpen{
  opacity:1;
  visibility:visible;
}

/* BACKDROP */

.fbBackdrop{
  position:absolute;
  inset:0;

  background:
    rgba(3,6,12,.88);

  backdrop-filter:
    blur(18px)
    saturate(140%);
}

/* SHELL */

.fbShell{
  position:relative;

  width:min(1600px,100%);
  height:min(92vh,1200px);

  border-radius:34px;

  overflow:hidden;

  background:
    linear-gradient(
      180deg,
      rgba(12,18,30,.96),
      rgba(5,8,15,.98)
    );

  border:
    1px solid rgba(255,255,255,.08);

  box-shadow:
    0 40px 120px rgba(0,0,0,.65),
    0 0 60px rgba(212,175,55,.06);

  display:flex;
  flex-direction:column;

  transform:
    scale(.96)
    translateY(10px);

  transition:
    transform .35s ease;
}

.fbModal.isOpen .fbShell{
  transform:
    scale(1)
    translateY(0);
}

/* BODY */

.fbBody{
  flex:1;

  display:grid;

  grid-template-columns:
    minmax(0,1fr)
    380px;

  min-height:0;
}

/* STAGE */

.fbStage{
  position:relative;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:40px;

  overflow:hidden;

  background:
    radial-gradient(
      circle at center,
      rgba(255,255,255,.02),
      transparent 60%
    );
}

/* IMAGE */

.fbStage img{
  max-width:100%;
  max-height:100%;

  object-fit:contain;

  border-radius:24px;

  box-shadow:
    0 30px 90px rgba(0,0,0,.55);

  animation:
    fbFade .35s ease;
}

/* VIDEO */

.fbStage video,
.fbStage iframe{
  width:100%;
  height:100%;

  border:none;

  border-radius:24px;

  background:#000;

  animation:
    fbFade .35s ease;
}

/* SIDE PANEL */

.fbMeta{
  display:flex;
  flex-direction:column;

  padding:34px 30px;

  border-left:
    1px solid rgba(255,255,255,.06);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.02),
      rgba(255,255,255,.01)
    );
}

.fbMetaTop{
  margin-bottom:24px;
}

.fbMetaTitle{
  font-size:28px;
  font-weight:800;

  color:var(--gold-main);

  line-height:1.2;

  margin-bottom:10px;
}

.fbMetaCount{
  color:var(--text-muted);
  font-size:14px;
}

.fbMetaText{
  color:var(--gold-light);

  font-size:16px;
  line-height:1.9;

  overflow:auto;

  padding-right:8px;
}

/* CLOSE */

.fbClose{
  position:absolute;

  top:22px;
  right:22px;

  width:52px;
  height:52px;

  border-radius:18px;

  z-index:30;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
    rgba(255,255,255,.05);

  border:
    1px solid rgba(255,255,255,.08);

  color:#fff;

  font-size:22px;

  transition:.25s ease;
}

.fbClose:hover{
  transform:scale(1.06);

  background:
    rgba(212,175,55,.12);

  border-color:
    rgba(212,175,55,.35);

  color:var(--gold-main);
}

/* NAV */

.fbNav{
  position:absolute;

  top:50%;

  transform:translateY(-50%);

  width:72px;
  height:72px;

  border-radius:22px;

  z-index:25;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
    rgba(255,255,255,.05);

  border:
    1px solid rgba(255,255,255,.08);

  color:#fff;

  font-size:42px;

  transition:.25s ease;
}

.fbPrev{
  left:26px;
}

.fbNext{
  right:26px;
}

.fbNav:hover{
  transform:
    translateY(-50%)
    scale(1.05);

  background:
    rgba(212,175,55,.10);

  border-color:
    rgba(212,175,55,.35);

  color:var(--gold-main);
}

/* ANIMATION */

@keyframes fbFade{
  from{
    opacity:0;
    transform:scale(.96);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}
/* MOBILE */

@media(max-width:980px){

  .fbModal{

    padding:0;

    display:flex;
    align-items:center;
    justify-content:center;
  }

  .fbShell{

    width:100%;
    max-width:100%;

    height:100dvh;

    margin:0;

    border-radius:0;

    overflow:hidden;

    position:relative;
  }

  .fbBody{

    display:flex;
    flex-direction:column;

    width:100%;
    height:100%;
  }

  .fbStage{

    flex:1;

    width:98%;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:28px;

    overflow:hidden;

    min-height:0;

    box-sizing:border-box;

    position:relative;
  }

  .fbStage img{

    display:block;
    padding:22px;
    width:auto;
    height:auto;

    max-width:98%;
    max-height:72vh;

    object-fit:contain;

    margin:0 auto;

    box-sizing:border-box;
  }

  .fbStage video,
  .fbStage iframe{

    width:100%;

    max-width:100%;

    max-height:72vh;

    border-radius:18px;
  }

  .fbMeta{

    width:100%;

    border-left:none;

    border-top:
      1px solid rgba(255,255,255,.06);

    padding:22px;

    flex-shrink:0;
  }

  .fbMetaTitle{
    font-size:22px;
  }

  .fbNav{

    width:58px;
    height:58px;

    font-size:32px;

    z-index:40;
  }

  .fbPrev{
    left:6px;
  }

  .fbNext{
    right:6px;
  }

  .fbClose{

    top:10px;
    right:10px;

    z-index:50;
  }

}