/* ============================================================
   SUMMIT IGUASSU VALLEY 2026 — B2C / INGRESSOS
   Extends styles.css (FAVO edition). Attendee-facing layer.
   ============================================================ */

/* ---------- hero background video (YouTube cover) ---------- */
.hero-video { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; opacity: 0; transition: opacity .8s ease; }
.hero-video.on { opacity: 1; }
.hero-video iframe, .hero-video video {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh;
  border: 0; object-fit: cover;
}

/* ---------- hero legibility over ANY video (light or dark) ---------- */
.hero .hero-photo::after {
  background:
    linear-gradient(101deg, rgba(6,9,15,.95) 0%, rgba(6,9,15,.82) 30%, rgba(6,9,15,.52) 60%, rgba(6,9,15,.34) 100%),
    linear-gradient(0deg, rgba(6,9,15,.95) 2%, rgba(6,9,15,.40) 28%, transparent 52%),
    linear-gradient(180deg, rgba(6,9,15,.55) 0%, transparent 16%);
}
.hero-inner h1 { text-shadow: 0 2px 26px rgba(0,0,0,.42); }
.hero-sub { color: #ffffff; font-weight: 500; text-shadow: 0 1px 2px rgba(0,0,0,.92), 0 2px 18px rgba(0,0,0,.72); }
.hero-meta-item { color: #eef2f8; text-shadow: 0 1px 2px rgba(0,0,0,.9), 0 1px 12px rgba(0,0,0,.6); }
.hero-meta-item strong { color: #fff; }
.hero-meta-item svg { filter: drop-shadow(0 1px 6px rgba(0,0,0,.6)); }
.hero-price-note { color: #ffffff; font-weight: 700; text-shadow: 0 1px 2px rgba(0,0,0,.92), 0 1px 12px rgba(0,0,0,.6); }
.hero-price-note b { color: var(--accent); text-shadow: 0 1px 2px rgba(0,0,0,.85); }
.cd-num { text-shadow: 0 2px 18px rgba(0,0,0,.55); }
.cd-lbl { color: #b2bcd0; text-shadow: 0 1px 10px rgba(0,0,0,.55); }
.cd-sep { text-shadow: 0 2px 18px rgba(0,0,0,.55); }
.hero-foot { border-top-color: rgba(255,255,255,.2); }
.hero-ctas .btn-ghost {
  background: rgba(6,9,15,.45); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); text-shadow: 0 1px 10px rgba(0,0,0,.5);
}
.hero-ctas .btn-ghost:hover { background: rgba(6,9,15,.6); box-shadow: inset 0 0 0 1.5px var(--accent); }
.hero-tag { background: rgba(6,9,15,.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }

/* ---------- hero badges row (B2C public framing) ---------- */
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 0; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); background: rgba(255,255,255,.05); border: 1px solid var(--hair);
  padding: 8px 14px;
  clip-path: polygon(9px 0,100% 0,100% calc(100% - 9px),calc(100% - 9px) 100%,0 100%,0 9px);
}
.hero-chip b { color: var(--accent); font-weight: 700; }

/* price flash in hero CTA */
.hero-price-note { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .08em; color: var(--muted); margin-top: 14px; }
.hero-price-note b { color: var(--accent); }

/* ============================================================
   PALESTRANTES — "quem já passou pelo Summit"
   ============================================================ */
.speakers { background: var(--ink-2); border-block: 1px solid var(--hair-2); }
.speaker-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.speaker {
  position: relative; aspect-ratio: 1 / 1.16; overflow: hidden;
  border: 1px solid var(--hair-2); background: linear-gradient(158deg, #15203a, #0b1120);
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .3s, border-color .3s;
}
.speaker::before {
  content:""; position:absolute; right:-22px; top:-22px; width:76px; height:66px; z-index:1;
  background: rgba(157,92,255,.14); clip-path: polygon(25% 0,75% 0,100% 50%,75% 100%,25% 100%,0 50%); transition: background .3s;
}
.speaker:hover { transform: translateY(-5px); border-color: var(--accent); }
.speaker:hover::before { background: rgba(98,242,164,.22); }
.speaker-mono {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 800; font-size: clamp(2.6rem,4vw,3.6rem);
  color: rgba(244,247,248,.13); letter-spacing: -.02em;
  background: radial-gradient(circle at 50% 36%, rgba(98,242,164,.13), transparent 62%);
  transition: color .3s;
}
.speaker:hover .speaker-mono { color: rgba(98,242,164,.24); }
.speaker-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; z-index: 1; transition: transform .4s; }
.speaker:hover .speaker-photo { transform: scale(1.04); }
.speaker-info {
  position: relative; z-index: 2; padding: 30px 18px 18px;
  background: linear-gradient(0deg, rgba(6,9,15,.94) 28%, rgba(6,9,15,.55) 70%, transparent);
}
.speaker-name { font-family: var(--f-display); font-weight: 800; font-size: 1.06rem; letter-spacing: -.01em; line-height: 1.08; }
.speaker-role { font-size: .74rem; color: var(--muted); margin-top: 5px; line-height: 1.4; }
.speakers-note {
  margin-top: 30px; font-family: var(--f-mono); font-size: .74rem; letter-spacing: .06em;
  color: var(--muted-2); text-align: center; line-height: 1.6;
}
.speakers-note b { color: var(--accent); }

/* ============================================================
   INGRESSOS — light "bone" spotlight (the buy zone)
   ============================================================ */
.ingressos { background: var(--bone); color: var(--bone-ink); border-block: 1px solid rgba(0,0,0,.08); }
.ingressos .eyebrow { color: #1f7a4d; }
.ingressos .eyebrow::before { background: #1f7a4d; }
.ingressos h2 { color: var(--bone-ink); }
.ingressos .lead, .ingressos .shead p { color: #4a5160; }
.ingressos-honey {
  position: absolute; inset: 0; z-index: 0; opacity: .5; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'><g fill='none' stroke='rgba(12,16,25,0.06)' stroke-width='1.2'><path d='M28 0 L56 16 L56 50 L28 66 L0 50 L0 16 Z'/><path d='M28 66 L56 82 L56 116 L28 132 L0 116 L0 82 Z'/></g></svg>");
  background-size: 56px 100px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
}

/* type toggle */
.tkt-types { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 760px; margin: 0 auto 22px; }
.tkt-type {
  cursor: pointer; text-align: left; background: #fff; border: 1.5px solid rgba(12,16,25,.12);
  padding: 22px 24px; position: relative; transition: border-color .25s, transform .25s, box-shadow .25s;
  clip-path: polygon(0 0,100% 0,100% calc(100% - 14px),calc(100% - 14px) 100%,0 100%);
}
.tkt-type:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(12,16,25,.12); }
.tkt-type .tk-kicker { font-family: var(--f-mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: #1f7a4d; }
.tkt-type .tk-name { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; color: var(--bone-ink); margin: 7px 0 4px; letter-spacing: -.02em; }
.tkt-type .tk-sub { font-size: .82rem; color: #5a6170; line-height: 1.45; }
.tkt-type .tk-from { margin-top: 14px; font-family: var(--f-mono); font-size: .76rem; color: #6a7080; }
.tkt-type .tk-from b { font-family: var(--f-display); font-size: 1.15rem; color: var(--bone-ink); letter-spacing: -.02em; }
.tkt-type[aria-pressed="true"] { border-color: var(--bone-ink); box-shadow: 0 22px 50px rgba(12,16,25,.18); }
.tkt-type[aria-pressed="true"]::before {
  content:""; position:absolute; left:0; top:0; bottom:0; width:4px; background: var(--accent);
}
.tkt-type[aria-pressed="true"] .tk-name { color: var(--bone-ink); }

/* main stage: includes (left) + buy (right) */
.tkt-stage { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; align-items: stretch; max-width: 980px; margin-inline: auto; }
.tkt-includes { background: #fff; border: 1.5px solid rgba(12,16,25,.1); padding: 32px 34px; display: flex; flex-direction: column; }
.tkt-includes .ti-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.tkt-includes .ti-name { font-family: var(--f-display); font-weight: 800; font-size: 1.7rem; color: var(--bone-ink); letter-spacing: -.02em; }
.tkt-includes .ti-sub { font-size: .85rem; color: #5a6170; margin-top: 6px; }
.tkt-includes .ti-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-top: 26px; flex: 1; }
.tkt-includes .ti-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: #3a4150; line-height: 1.45; }
.tkt-includes .ti-list li::before { content:""; width: 13px; height: 12px; margin-top: 4px; flex-shrink: 0; background: var(--accent); clip-path: polygon(25% 0,75% 0,100% 50%,75% 100%,25% 100%,0 50%); }
.tkt-includes .ti-list li.off { color: #9aa0ad; }
.tkt-includes .ti-list li.off::before { background: rgba(12,16,25,.16); }

/* buy panel (dark inset) */
.tkt-buy { background: var(--bone-ink); color: var(--bone); padding: 30px 30px 32px; display: flex; flex-direction: column; }
.tkt-buy .tb-label { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--lime-bright); }
.lotes { display: flex; flex-direction: column; gap: 8px; margin: 14px 0 22px; }
.lote {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.12);
  padding: 13px 16px; cursor: pointer; transition: border-color .2s, background .2s;
  clip-path: polygon(0 0,100% 0,100% calc(100% - 9px),calc(100% - 9px) 100%,0 100%);
}
.lote:hover:not(.locked) { border-color: rgba(255,255,255,.32); }
.lote[aria-pressed="true"] { border-color: var(--accent); background: rgba(98,242,164,.1); }
.lote .lt-name { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--bone); display: flex; align-items: center; gap: 9px; }
.lote .lt-tag { font-family: var(--f-mono); font-size: .56rem; letter-spacing: .12em; padding: 3px 8px; background: var(--accent); color: var(--accent-ink); font-weight: 700; }
.lote .lt-tag.soon { background: rgba(255,255,255,.12); color: #aeb6c8; }
.lote .lt-price { font-family: var(--f-display); font-weight: 800; font-size: 1.2rem; color: var(--bone); letter-spacing: -.02em; }
.lote.locked { opacity: .5; cursor: not-allowed; }
.lote.locked .lt-price { color: #8089a0; }

/* qty + half + total */
.tkt-controls { border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; display: flex; flex-direction: column; gap: 16px; margin-top: auto; }
.qty-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.qty-row .qr-label { font-size: .86rem; color: #c5cbdb; }
.stepper { display: flex; align-items: center; gap: 0; border: 1.5px solid rgba(255,255,255,.16); }
.stepper button {
  width: 38px; height: 38px; background: rgba(255,255,255,.04); color: var(--bone); border: none; cursor: pointer;
  font-size: 1.3rem; line-height: 1; display: grid; place-items: center; transition: background .2s;
}
.stepper button:hover { background: rgba(255,255,255,.12); }
.stepper .qty-val { min-width: 44px; text-align: center; font-family: var(--f-display); font-weight: 800; font-size: 1.1rem; font-variant-numeric: tabular-nums; }
.half-row { display: flex; align-items: center; gap: 11px; cursor: pointer; user-select: none; }
.half-row input { width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; flex-shrink: 0; }
.half-row span { font-size: .8rem; color: #aeb6c8; line-height: 1.4; }
.total-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; }
.total-row .tr-label { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: #aeb6c8; }
.total-row .tr-calc { font-size: .74rem; color: #8089a0; margin-top: 4px; font-family: var(--f-mono); }
.total-row .tr-amount { font-family: var(--f-display); font-weight: 800; font-size: 2rem; color: var(--bone); letter-spacing: -.03em; line-height: 1; }
.total-row .tr-amount .cents { font-size: .9rem; color: #aeb6c8; }
.tkt-buy .btn-buy { margin-top: 18px; width: 100%; background: var(--accent); color: var(--accent-ink); }
.tkt-fine { font-size: .72rem; color: #8089a0; margin-top: 12px; line-height: 1.5; text-align: center; }

/* savings hook (reference-inspired) */
.tkt-save { display: none; align-items: center; gap: 10px; margin-top: 16px; padding: 11px 14px;
  background: rgba(98,242,164,.12); border: 1px solid rgba(98,242,164,.34); color: var(--lime-bright);
  font-size: .82rem; line-height: 1.4; }
.tkt-save svg { width: 18px; height: 18px; flex-shrink: 0; }
.tkt-save b { font-family: var(--f-display); font-weight: 800; color: var(--bone); }

/* buy feedback */
.tkt-feedback {
  display: none; max-width: 980px; margin: 16px auto 0; padding: 16px 20px; text-align: center;
  font-weight: 600; font-size: .9rem; color: #1f7a4d;
  background: rgba(31,122,77,.1); border: 1.5px solid rgba(31,122,77,.32);
}
.tkt-feedback.show { display: block; }

/* helper note under stage */
.tkt-foot { max-width: 980px; margin: 18px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tkt-foot .tf-card { background: #fff; border: 1.5px solid rgba(12,16,25,.1); padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; }
.tkt-foot .tf-ic { width: 38px; height: 38px; flex-shrink: 0; display: grid; place-items: center; background: var(--bone-ink); color: var(--bone); clip-path: polygon(25% 0,75% 0,100% 50%,75% 100%,25% 100%,0 50%); }
.tkt-foot .tf-ic svg { width: 17px; height: 17px; }
.tkt-foot .tf-card strong { display: block; font-family: var(--f-display); font-weight: 800; font-size: .95rem; color: var(--bone-ink); margin-bottom: 4px; }
.tkt-foot .tf-card p { font-size: .78rem; color: #5a6170; line-height: 1.5; }

/* ============================================================
   GALERIA — carrossel + CTA Flickr
   ============================================================ */
.galeria .gal-layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.gal-carousel { position: relative; min-width: 0; }
.gal-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 4px; scrollbar-width: none; -ms-overflow-style: none; }
.gal-track::-webkit-scrollbar { display: none; }
.gal-card {
  flex: 0 0 clamp(210px,25vw,290px); height: clamp(360px,44vw,500px);
  scroll-snap-align: start; overflow: hidden; position: relative; border: 1px solid var(--hair-2);
  clip-path: polygon(0 0,100% 0,100% 92%,90% 100%,0 100%); background: var(--panel);
}
.gal-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gal-card::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(6,9,15,.5), transparent 45%); opacity:0; transition: opacity .3s; }
.gal-card:hover img { transform: scale(1.05); }
.gal-card:hover::after { opacity: 1; }
.gal-nav { display: flex; gap: 10px; margin-top: 26px; }
.gal-arrow {
  width: 52px; height: 52px; display: grid; place-items: center; cursor: pointer;
  background: rgba(255,255,255,.05); border: 1px solid var(--hair); color: var(--white);
  transition: border-color .2s, background .2s, color .2s, transform .2s;
  clip-path: polygon(11px 0,100% 0,100% calc(100% - 11px),calc(100% - 11px) 100%,0 100%,0 11px);
}
.gal-arrow:hover { border-color: var(--accent); color: var(--accent); background: rgba(98,242,164,.06); transform: translateY(-2px); }
.gal-arrow svg { width: 20px; height: 20px; }
.gal-text h2 { font-size: clamp(2rem,3.6vw,3.2rem); margin: 18px 0 0; }
.gal-text h2 em { font-style: normal; color: var(--accent); }
.gal-text .lead { margin-top: 20px; }
.btn-flickr { margin-top: 30px; background: rgba(255,255,255,.04); color: var(--white); box-shadow: inset 0 0 0 1.5px var(--hair); gap: 13px; }
.btn-flickr:hover { box-shadow: inset 0 0 0 1.5px var(--accent); color: var(--accent); }
.flickr-dots { display: inline-flex; gap: 6px; align-items: center; }
.flickr-dots span { width: 11px; height: 11px; border-radius: 50%; }
.flickr-dots span:first-child { background: #0063dc; }
.flickr-dots span:last-child { background: #ff0084; }

/* ============================================================
   VENUE — mapa incorporado
   ============================================================ */
.venue h2 em { font-style: normal; color: var(--accent); }
.venue-map {
  position: relative; overflow: hidden; border: 1px solid var(--hair);
  box-shadow: var(--shadow); background: var(--panel);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 88% 100%, 0 100%);
}
.venue-map iframe { width: 100%; height: clamp(380px, 46vw, 520px); display: block; }

/* ============================================================
   FAQ — accordion
   ============================================================ */
.faq-grid { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--panel); border: 1px solid var(--hair-2); overflow: hidden; transition: border-color .25s; }
.faq-item[open] { border-color: var(--hair); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .fq-plus { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-item summary .fq-plus::before, .faq-item summary .fq-plus::after { content:""; position:absolute; background: var(--accent); transition: transform .3s; }
.faq-item summary .fq-plus::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq-item summary .fq-plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item[open] summary .fq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item .fq-body { padding: 0 24px 24px; color: var(--muted); font-size: .92rem; line-height: 1.7; }
.faq-item .fq-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   INGRESSOS — DARK VARIANT (tweak)
   ============================================================ */
body[data-ingressos="dark"] .ingressos { background: var(--ink-2); color: var(--white); border-block-color: var(--hair-2); }
body[data-ingressos="dark"] .ingressos .eyebrow { color: var(--accent); }
body[data-ingressos="dark"] .ingressos .eyebrow::before { background: var(--accent); }
body[data-ingressos="dark"] .ingressos h2 { color: var(--white); }
body[data-ingressos="dark"] .ingressos .lead { color: var(--muted); }
body[data-ingressos="dark"] .ingressos-honey { display: none; }
body[data-ingressos="dark"] .tkt-type { background: var(--panel); border-color: var(--hair); }
body[data-ingressos="dark"] .tkt-type .tk-kicker { color: var(--accent); }
body[data-ingressos="dark"] .tkt-type .tk-name { color: var(--white); }
body[data-ingressos="dark"] .tkt-type .tk-sub { color: var(--muted); }
body[data-ingressos="dark"] .tkt-type .tk-from { color: var(--muted); }
body[data-ingressos="dark"] .tkt-type .tk-from b { color: var(--white); }
body[data-ingressos="dark"] .tkt-type[aria-pressed="true"] { border-color: var(--accent); box-shadow: 0 0 50px rgba(98,242,164,.14); }
body[data-ingressos="dark"] .tkt-includes { background: var(--panel); border-color: var(--hair); }
body[data-ingressos="dark"] .tkt-includes .ti-name { color: var(--white); }
body[data-ingressos="dark"] .tkt-includes .ti-sub { color: var(--muted); }
body[data-ingressos="dark"] .tkt-includes .ti-list li { color: var(--muted); }
body[data-ingressos="dark"] .tkt-includes .ti-list li.off { color: var(--muted-2); }
body[data-ingressos="dark"] .tkt-buy { background: #060a12; box-shadow: inset 0 0 0 1px var(--hair); }
body[data-ingressos="dark"] .tkt-foot .tf-card { background: var(--panel); border-color: var(--hair); }
body[data-ingressos="dark"] .tkt-foot .tf-ic { background: var(--accent); color: var(--accent-ink); }
body[data-ingressos="dark"] .tkt-foot .tf-card strong { color: var(--white); }
body[data-ingressos="dark"] .tkt-foot .tf-card p { color: var(--muted); }
body[data-ingressos="dark"] .tkt-feedback { color: var(--accent); background: rgba(98,242,164,.1); border-color: rgba(98,242,164,.3); }

/* ============================================================
   PARCEIROS / PATROCINADORES — mural de logos (placeholders)
   ============================================================ */
.brands { background: var(--ink-2); border-top: 1px solid var(--hair-2); }
.brand-tiers { margin-top: clamp(40px,6vw,64px); display: flex; flex-direction: column; gap: clamp(34px,4.5vw,52px); }
.brand-tier-label {
  text-align: center; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.brand-tier-label::before, .brand-tier-label::after { content:""; height: 1px; width: clamp(28px,8vw,90px); background: var(--hair-2); }
.brand-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.logo-slot {
  flex: 0 0 auto; width: clamp(148px,17vw,196px); height: 96px;
  display: grid; place-items: center; background: #fff; border: 1px solid var(--hair);
  overflow: hidden; transition: transform .25s, box-shadow .25s;
  clip-path: polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px);
}
.logo-slot:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,.34); }
.logo-slot img { max-width: 78%; max-height: 60%; width: auto; height: auto; object-fit: contain; }
.logo-slot .ph { font-family: var(--f-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: #b9c0cf; }
.logo-slot.lg { width: clamp(200px,24vw,280px); height: 128px; }
.logo-slot.sm { width: clamp(120px,14vw,164px); height: 84px; }
.brands-cta { text-align: center; margin-top: clamp(44px,6vw,64px); }
.brands-cta p { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .speaker-grid { grid-template-columns: repeat(2,1fr); }
  .tkt-stage { grid-template-columns: 1fr; max-width: 560px; }
  .galeria .gal-layout { grid-template-columns: 1fr; }
  .gal-text { order: -1; }
}
@media (max-width: 760px) {
  .speaker-grid { grid-template-columns: repeat(2,1fr); }
  .tkt-types { grid-template-columns: 1fr; }
  .tkt-foot { grid-template-columns: 1fr; }
}
