/**
 * Confut USA refactor — layout mobile-first, seções da homepage e páginas internas.
 *
 * Folha carregada apenas no shell USA (events/usa/includes/head.php).
 */

/* =============================================================================
 * Confut USA — cor de marca do evento (acento vermelho)
 *
 * O body traz: class="dark-scheme event-usa confut-usa-refactor"
 * ============================================================================= */
body.confut-usa-refactor.event-usa {
  --usa-event-accent: #e32131;
  --usa-event-accent-hover: #c41a28;
}

/* ---------- Base / tokens (conteúdo .usa-refactor; herdam acento do body acima) ---------- */
.usa-refactor {
  --usa-red: var(--usa-event-accent, #e32131);
  --usa-red-hover: var(--usa-event-accent-hover, #c41a28);
  --usa-navy: #0b2345;
  --usa-white: #fff;
  --usa-radius: 14px;
  overflow-x: hidden;
}

/* Reduz ajustes de scroll anchoring do browser quando o layout muda ao aproximar do fim da home (newsletter → patrocinadores → footer). */
body.confut-usa-refactor #content {
  overflow-anchor: none;
}

.usa-refactor img {
  max-width: 100%;
  height: auto;
}

/* Barra lateral redes + CTA — tema usa position:absolute (rola com o conteúdo); no Euro fica fixa ao viewport */
body.confut-usa-refactor .float-text {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 999;
}

/* Transição entre páginas do Euro (Chrome 126+ com meta view-transition same-origin). */
@view-transition {
  navigation: auto;
}

/* Preloader fullscreen do tema (designesia) some só no window.load — sensação de “reload”. */
body.confut-usa-refactor #de-loader {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}

/* ---------- Hero 100vh ---------- */
/* Hero refactor: desliga pseudo-elementos do template antigo no #section-hero */
body.confut-usa-refactor .confut-usa-theme #section-hero.usa-hero::before {
  content: none !important;
  display: none !important;
}

/* Sobrescreve padding global do tema em `section` — espaço real abaixo do header absoluto */
body.confut-usa-refactor #content .usa-refactor > section.usa-hero {
  position: relative;
  z-index: 1;
  padding-top: max(6.5rem, calc(env(safe-area-inset-top, 0px) + 5.5rem));
  padding-bottom: clamp(3.75rem, 9vw, 5.5rem);
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 768px) {
  body.confut-usa-refactor #content .usa-refactor > section.usa-hero {
    padding-top: max(7rem, calc(env(safe-area-inset-top, 0px) + 6rem));
    padding-bottom: clamp(3.5rem, 9vh, 5.5rem);
  }
}

@media (min-width: 1200px) {
  body.confut-usa-refactor #content .usa-refactor > section.usa-hero {
    /* Mais respiro inferior “cinematográfico” sem subir o conteúdo para colidir com o header */
    padding-top: max(7.25rem, calc(env(safe-area-inset-top, 0px) + 6.25rem));
    padding-bottom: clamp(4.5rem, 11vh, 8rem);
  }
}

.usa-hero {
  position: relative;
  /* Base: uma altura de viewport; desktop/tablet aumentam abaixo */
  min-height: 100vh;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  overflow: hidden;
  isolation: isolate;
}

.usa-hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #030814;
}

.usa-hero__backdrop > .usa-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.usa-hero__video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.05) contrast(1.04);
}

@media (max-width: 767.98px) {
  .usa-hero__video {
    min-width: 118%;
    min-height: 100%;
    object-position: center 42%;
  }
}

/* Tablet: hero um pouco mais alta que 100vh — mais área útil e proporção menos “comprimida” */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .usa-hero {
    min-height: min(108dvh, 920px);
  }
}

/* Desktop: hero claramente mais alta + teto em ecrãs muito grandes */
@media (min-width: 1200px) {
  .usa-hero {
    min-height: min(115dvh, 1080px);
  }
}

.usa-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.usa-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 6, 16, 0.45) 0%, rgba(6, 14, 32, 0.62) 42%, rgba(8, 18, 42, 0.82) 100%),
    radial-gradient(ellipse 90% 70% at 50% 18%, rgba(0, 0, 0, 0.2) 0%, transparent 52%);
}

.usa-hero.usa-hero--video .usa-hero__overlay {
  background:
    linear-gradient(180deg, rgba(2, 6, 18, 0.58) 0%, rgba(6, 14, 34, 0.72) 48%, rgba(8, 18, 44, 0.88) 100%),
    radial-gradient(ellipse 95% 65% at 50% 22%, rgba(0, 0, 0, 0.35) 0%, transparent 55%);
}

.usa-hero__content {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  width: 100%;
  /* Garante que o stack interno possa usar gap sem depender só de margin colapsada */
  padding-top: clamp(0.25rem, 1.5vh, 1.25rem);
  padding-bottom: clamp(0.25rem, 1.5vh, 1.25rem);
}

/* Stack vertical: meta → título → tagline → CTAs (espaçamento uniforme, sem “apertar”) */
body.confut-usa-refactor .usa-hero .row.justify-content-center > [class*='col-'] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.2vh, 1.5rem);
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  body.confut-usa-refactor .usa-hero .row.justify-content-center > [class*='col-'] {
    gap: clamp(1.25rem, 2.8vh, 2rem);
    max-width: 52rem;
  }
}

@media (min-width: 1200px) {
  body.confut-usa-refactor .usa-hero .row.justify-content-center > [class*='col-'] {
    gap: clamp(1.5rem, 3.2vh, 2.5rem);
    max-width: 54rem;
  }
}

.usa-hero__meta--single {
  justify-content: center;
}

.usa-hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.usa-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

@media (max-width: 420px) {
  .usa-hero__meta-item {
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
}

.usa-hero__meta-item i {
  color: var(--usa-red);
}

.usa-hero.usa-hero--video .usa-hero__meta-item,
.usa-hero.usa-hero--video .usa-hero__title,
.usa-hero.usa-hero--video .usa-hero__tagline {
  text-shadow:
    0 2px 22px rgba(0, 0, 0, 0.55),
    0 1px 3px rgba(0, 0, 0, 0.45);
}

.usa-hero__title {
  font-size: clamp(1.6rem, 8.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff !important;
  margin: 0;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
  text-shadow:
    0 2px 32px rgba(0, 0, 0, 0.85),
    0 1px 8px rgba(0, 0, 0, 0.9);
}

/* Tema: `.confut-usa-theme h1.text-uppercase` usa cor escura — forçar branco só no hero */
body.confut-usa-refactor .confut-usa-theme .usa-hero .usa-hero__title.text-uppercase,
body.confut-usa-refactor .confut-usa-theme .usa-hero .usa-hero__title.text-uppercase span {
  color: #ffffff !important;
}

@media (min-width: 768px) {
  .usa-hero__title {
    font-size: clamp(2.1rem, 5.5vw, 3.35rem);
  }
}

.usa-hero__tagline {
  font-size: clamp(0.94rem, 3.8vw, 1.28rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 clamp(0.35rem, 3vw, 1rem);
}

@media (min-width: 1200px) {
  .usa-hero__tagline {
    max-width: 44rem;
  }
}

.usa-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(0.85rem, 1.8vh, 1.15rem);
  width: 100%;
  max-width: 22rem;
  margin: 0;
  padding: 0 clamp(0.25rem, 2vw, 0);
}

@media (min-width: 576px) {
  .usa-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
    width: auto;
    padding: 0;
    gap: clamp(0.9rem, 1.5vw, 1.25rem);
  }
}

/* Hero: mais respiro, CTAs centralizados, fundo melhor enquadrado — só ≤767px (tablet/desktop intactos) */
@media (max-width: 767.98px) {
  body.confut-usa-refactor #content .usa-refactor > section.usa-hero {
    padding-top: max(5.85rem, calc(env(safe-area-inset-top, 0px) + 5rem));
    padding-bottom: clamp(3.35rem, 11vw, 4.5rem);
  }

  .usa-hero__bg {
    background-position: center 24%;
  }

  .usa-hero .container.usa-hero__content {
    padding-left: max(1.2rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.2rem, env(safe-area-inset-right, 0px));
  }

  .usa-hero__content {
    padding-top: clamp(0.85rem, 4vw, 1.5rem);
    padding-bottom: clamp(1.1rem, 4.5vw, 1.85rem);
  }

  body.confut-usa-refactor .usa-hero .row.justify-content-center > [class*='col-'] {
    gap: clamp(1.2rem, 3.8vw, 1.75rem);
    max-width: 40rem;
  }

  .usa-hero__tagline {
    padding: 0 clamp(0.55rem, 4.5vw, 1.1rem);
    line-height: 1.72;
  }

  .usa-hero__actions {
    align-items: center;
    align-self: center;
    width: 100%;
    max-width: min(20.5rem, calc(100% - 1.75rem));
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    gap: clamp(1rem, 3vw, 1.35rem);
  }
}

/* ---------- Buttons ---------- */
.usa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  font-size: clamp(0.9rem, 3.5vw, 0.98rem);
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-align: center;
  min-height: 48px;
  width: 100%;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 576px) {
  .usa-btn {
    width: auto;
    min-width: 10.5rem;
  }
}

.usa-btn:active {
  transform: scale(0.98);
}

.usa-btn--primary {
  background: var(--usa-red);
  color: var(--usa-white) !important;
  border-color: var(--usa-red);
}

.usa-btn--primary:hover {
  background: var(--usa-red-hover);
  border-color: var(--usa-red-hover);
  color: var(--usa-white) !important;
}

.usa-btn--outline {
  background: transparent;
  color: var(--usa-white) !important;
  border-color: rgba(255, 255, 255, 0.65);
}

.usa-btn--outline:hover {
  border-color: var(--usa-white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--usa-white) !important;
}

.usa-btn--lg {
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

/* ---------- Métricas (dobra, acima do marquee) ---------- */
.usa-metrics {
  background: #000;
  color: #fff;
  padding: 1.85rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Garantir visibilidade sobre regras do tema (.wow, section, etc.) na integração macro */
body.confut-usa-refactor .usa-refactor .usa-metrics,
body.confut-usa-refactor .usa-refactor .usa-metrics .usa-metrics__item,
body.confut-usa-refactor .usa-refactor .usa-metrics .usa-metrics__value,
body.confut-usa-refactor .usa-refactor .usa-metrics .usa-metrics__label {
  visibility: visible !important;
}

body.confut-usa-refactor .usa-refactor .usa-metrics {
  position: relative;
  z-index: 2;
}

/**
 * Homepage Euro — faixa full-width: métricas + divisória laranja + marquee.
 * Estrutural (sem cartão flutuante, sombras ou largura inset).
 */
body.confut-usa-refactor .usa-metrics-band {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

body.confut-usa-refactor .usa-metrics-band > section {
  padding: 0 !important;
  margin: 0 !important;
}

/* Transição hero → faixa: fluxo normal (sem margens negativas). */
body.confut-usa-refactor .usa-metrics-band + .usa-venue-showcase {
  padding-top: clamp(3.5rem, 9vw, 6.75rem);
}

body.confut-usa-refactor .usa-metrics-band .usa-metrics.usa-metrics--home-band {
  background: transparent;
  border: none;
  position: relative;
  z-index: 1;
  overflow: visible;
  padding: clamp(1.5rem, 3.5vw, 2.25rem) 0 clamp(1.15rem, 2.5vw, 1.6rem);
}

body.confut-usa-refactor .usa-metrics-band .usa-metrics-band__container {
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

/* Grelha dedicada à homepage: 2 → 3 → 6 colunas, conteúdo centrado. */
body.confut-usa-refactor .usa-metrics-band .usa-metrics-band__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.15rem, 2.8vw, 1.65rem) clamp(0.65rem, 2vw, 1.1rem);
  text-align: center;
  align-items: start;
  justify-items: center;
}

@media (min-width: 768px) {
  body.confut-usa-refactor .usa-metrics-band .usa-metrics-band__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem 1rem;
  }
}

@media (min-width: 992px) {
  body.confut-usa-refactor .usa-metrics-band .usa-metrics-band__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.75rem 0.65rem;
  }
}

body.confut-usa-refactor .usa-metrics-band .usa-metrics-band__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.22rem, 0.65vw, 0.38rem);
  min-width: 0;
  width: 100%;
  max-width: 11.5rem;
}

@media (min-width: 992px) {
  body.confut-usa-refactor .usa-metrics-band .usa-metrics-band__cell {
    max-width: none;
  }
}

/* Número em cima, label branca logo abaixo (hierarquia institucional). */
body.confut-usa-refactor .usa-metrics-band .usa-metrics__value {
  font-size: clamp(1.65rem, 3.2vw + 0.5rem, 2.65rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--usa-red);
  letter-spacing: -0.02em;
}

body.confut-usa-refactor .usa-metrics-band .usa-metrics__label {
  margin: 0;
  font-size: clamp(0.72rem, 1.5vw, 0.875rem);
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.94);
  opacity: 1;
  text-wrap: balance;
  max-width: 13rem;
}

/* Divisória laranja premium entre contagens e palavras-chave */
body.confut-usa-refactor .usa-metrics-band__divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0;
  border: 0;
  flex-shrink: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--usa-red) 45%, transparent) 18%,
    color-mix(in srgb, var(--usa-red) 85%, transparent) 50%,
    color-mix(in srgb, var(--usa-red) 45%, transparent) 82%,
    transparent 100%
  );
}

@supports not (background: color-mix(in srgb, red 50%, blue)) {
  body.confut-usa-refactor .usa-metrics-band__divider {
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(226, 123, 12, 0.35) 20%,
      rgba(226, 123, 12, 0.72) 50%,
      rgba(226, 123, 12, 0.35) 80%,
      transparent 100%
    );
  }
}

/* Marquee: mesma faixa preta (sem gradiente “premium” nem segunda caixa). */
body.confut-usa-refactor .usa-metrics-band .usa-keywords-marquee.usa-keywords-marquee--in-metrics-band {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  min-height: 0;
  overflow: hidden;
  --usa-kw-h: auto;
}

body.confut-usa-refactor .usa-metrics-band .usa-keywords-marquee__track {
  display: flex;
  width: 100%;
  padding-inline: clamp(0.75rem, 2.2vw, 1.25rem);
  box-sizing: border-box;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

body.confut-usa-refactor .usa-metrics-band .usa-keywords-marquee__row {
  padding-top: clamp(0.85rem, 2.2vw, 1.2rem);
  padding-bottom: clamp(1rem, 2.5vw, 1.35rem);
}

.usa-metrics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
  align-items: start;
}

@media (min-width: 576px) {
  .usa-metrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .usa-metrics__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1.25rem;
  }
}

@media (min-width: 1200px) {
  .usa-metrics__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.65rem 1rem;
  }
}

.usa-metrics__value {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  color: var(--usa-red);
  line-height: 1.1;
}

.usa-metrics__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  opacity: 0.95;
}

/* ---------- Faixa palavras-chave (marquee horizontal premium) ---------- */
.usa-keywords-marquee {
  --usa-kw-h: 3.65rem;
  position: relative;
  overflow: hidden;
  background: #040814;
  color: rgba(255, 255, 255, 0.92);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  min-height: var(--usa-kw-h);
  padding-block: 0;
}

.usa-keywords-marquee--premium {
  --usa-kw-h: 3.75rem;
  background: linear-gradient(180deg, #050a16 0%, #020612 45%, #010409 100%);
  border-block-color: rgba(255, 107, 53, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.usa-keywords-marquee__track {
  display: flex;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.usa-keywords-marquee__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  padding: 0.95rem 0;
  width: max-content;
  animation: usaKwMarqueeX 58s linear infinite;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .usa-keywords-marquee__row {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding: 0.75rem 1rem;
    row-gap: 0.35rem;
  }
}

.usa-keywords-marquee__item {
  flex: 0 0 auto;
  font-size: clamp(0.9rem, 1.25vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
}

/* Separador: traço em (—), cor laranja do projeto (sem bullet/ponto) */
.usa-keywords-marquee__item::after {
  content: "\2014";
  display: inline;
  margin-left: clamp(1rem, 2.8vw, 2.5rem);
  margin-right: clamp(1rem, 2.8vw, 2.5rem);
  color: var(--usa-red);
  font-weight: 800;
  font-size: 1.05em;
  letter-spacing: 0;
  vertical-align: 0.05em;
  opacity: 1;
}

.usa-keywords-marquee__item:last-child::after {
  display: none;
}

@keyframes usaKwMarqueeX {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 575.98px) {
  .usa-keywords-marquee {
    --usa-kw-h: 3.35rem;
  }

  .usa-keywords-marquee--premium {
    --usa-kw-h: 3.45rem;
  }

  .usa-keywords-marquee__row {
    padding: 0.8rem 0;
    animation-duration: 42s;
  }

  .usa-keywords-marquee__item {
    font-size: clamp(0.82rem, 3.2vw, 0.95rem);
    letter-spacing: 0.16em;
  }

  .usa-keywords-marquee__item::after {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    font-size: 1em;
  }

  body.confut-usa-refactor .usa-metrics-band .usa-keywords-marquee__row {
    animation-duration: 42s;
  }

  body.confut-usa-refactor .usa-metrics-band .usa-keywords-marquee__item {
    font-size: clamp(0.78rem, 3vw, 0.9rem);
    letter-spacing: 0.14em;
  }

  body.confut-usa-refactor .usa-metrics-band .usa-keywords-marquee__item::after {
    margin-left: 0.65rem;
    margin-right: 0.65rem;
  }
}

/* ---------- Destaque do local (full-bleed + parallax no desktop) ---------- */
/* Sobrescreve .confut-usa-theme h2.text-uppercase (azul) — título sem classe Bootstrap text-uppercase */
body.confut-usa-refactor .usa-venue-showcase h2.usa-venue-showcase__title {
  color: #fff;
  font-family: var(--event-font, system-ui, -apple-system, sans-serif);
}

.usa-venue-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-height: clamp(28rem, 78vh, 46rem);
  display: flex;
  align-items: center;
  padding: clamp(3.5rem, 9vw, 6.75rem) 0;
  color: #f8fafc;
}

.usa-venue-showcase__parallax {
  position: absolute;
  left: 0;
  width: 100%;
  height: 152%;
  top: -26%;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

@media (min-width: 992px) {
  .usa-venue-showcase__parallax {
    background-position: 32% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .usa-venue-showcase__parallax {
    height: 100%;
    top: 0;
    background-position: center center;
  }
}

.usa-venue-showcase__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(3, 10, 26, 0.5) 0%,
      rgba(5, 14, 32, 0.35) 42%,
      rgba(8, 18, 42, 0.82) 68%,
      rgba(10, 22, 48, 0.88) 100%
    ),
    linear-gradient(180deg, rgba(2, 6, 18, 0.25) 0%, rgba(2, 6, 18, 0.55) 100%);
  pointer-events: none;
}

/* Hotel photo: leve escurecimento — contraste sem “apagar” a imagem */
.usa-venue-showcase--hotel-2026 .usa-venue-showcase__overlay {
  background:
    linear-gradient(
      100deg,
      rgba(3, 10, 26, 0.28) 0%,
      rgba(5, 14, 32, 0.22) 40%,
      rgba(8, 18, 42, 0.5) 72%,
      rgba(10, 22, 48, 0.58) 100%
    ),
    linear-gradient(180deg, rgba(2, 6, 18, 0.12) 0%, rgba(2, 6, 18, 0.38) 100%);
}

.usa-venue-showcase__decor {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.usa-venue-showcase__dots {
  position: absolute;
  top: clamp(1.25rem, 4.5vw, 2.75rem);
  left: clamp(1rem, 4vw, 2.75rem);
  width: min(6.5rem, 32vw);
  height: min(7rem, 36vw);
  opacity: 0.42;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.6) 1px, transparent 1.5px);
  background-size: 11px 11px;
}

.usa-venue-showcase__frame {
  position: absolute;
  top: clamp(1.5rem, 5vw, 3.25rem);
  left: clamp(0.65rem, 2.5vw, 1.75rem);
  width: min(38%, 15rem);
  height: min(48%, 18rem);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 3px;
  opacity: 0.55;
  box-shadow: 0 0 0 1px rgba(226, 123, 12, 0.08);
}

.usa-venue-showcase__accent-square {
  position: absolute;
  bottom: clamp(1.75rem, 5.5vw, 3.5rem);
  left: clamp(1rem, 4vw, 2.75rem);
  width: clamp(2.5rem, 6.5vw, 3.35rem);
  height: clamp(2.5rem, 6.5vw, 3.35rem);
  background: var(--usa-red);
  opacity: 0.95;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.usa-venue-showcase__glow {
  position: absolute;
  top: 48%;
  right: clamp(0.5rem, 4vw, 3rem);
  width: min(26rem, 72vw);
  height: min(26rem, 72vw);
  transform: translate(15%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(56, 130, 210, 0.22) 0%,
    rgba(19, 41, 75, 0.18) 38%,
    rgba(226, 123, 12, 0.06) 62%,
    transparent 72%
  );
}

.usa-venue-showcase__inner {
  z-index: 3;
}

.usa-venue-showcase__content {
  max-width: 38rem;
  margin-left: auto;
  margin-right: 0;
  padding: clamp(1.5rem, 3.2vw, 2.35rem) clamp(1.35rem, 2.8vw, 2rem);
  border-radius: calc(var(--usa-radius) + 2px);
  background: rgba(19, 41, 75, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.usa-venue-showcase__eyebrow {
  font-size: clamp(0.72rem, 1.65vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.85rem;
  padding-left: 0.85rem;
  border-left: 3px solid var(--usa-red);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.usa-venue-showcase__title {
  font-size: clamp(1.35rem, 3.4vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.065em;
  line-height: 1.18;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.35rem;
  margin-top: 0;
  text-wrap: balance;
  text-shadow:
    0 2px 28px rgba(0, 0, 0, 0.65),
    0 1px 2px rgba(0, 0, 0, 0.35);
}

.usa-venue-showcase__title::before {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--usa-red), rgba(226, 123, 12, 0.35));
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(226, 123, 12, 0.35);
}

.usa-venue-showcase__lead {
  font-size: clamp(0.98rem, 2.05vw, 1.12rem);
  line-height: 1.82;
  letter-spacing: 0.01em;
  color: rgba(248, 250, 252, 0.96);
  margin-bottom: 0;
  max-width: 36rem;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991.98px) {
  .usa-venue-showcase {
    min-height: clamp(26rem, 72vh, 40rem);
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .usa-venue-showcase__content {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.15rem, 2.5vw, 1.65rem);
  }

  .usa-venue-showcase__frame {
    width: min(50%, 13rem);
    height: min(36%, 11rem);
  }

  .usa-venue-showcase__glow {
    right: -2rem;
    opacity: 0.75;
    transform: translate(8%, -50%);
  }
}

/* Venue “hub estratégico”: leitura e card mais confortáveis; decoração reduzida — só ≤767px */
@media (max-width: 767.98px) {
  .usa-venue-showcase {
    /* Mais altura útil para a foto de fundo aparecer (antes min-height:0 só seguia o card) */
    min-height: clamp(24rem, 62vh, 40rem);
    padding: clamp(2.65rem, 9vw, 3.5rem) 0 clamp(3rem, 10vw, 4rem);
  }

  /* Camada da foto maior que a secção: cover “enche” melhor o ecrã em portrait */
  .usa-venue-showcase__parallax {
    height: 122%;
    top: -11%;
    background-size: cover;
    background-position: center 38%;
  }

  @media (prefers-reduced-motion: reduce) {
    .usa-venue-showcase__parallax {
      height: 100%;
      top: 0;
      background-position: center center;
    }
  }

  .usa-venue-showcase__inner.container {
    padding-left: max(1.05rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.05rem, env(safe-area-inset-right, 0px));
  }

  .usa-venue-showcase__dots,
  .usa-venue-showcase__frame {
    display: none !important;
  }

  .usa-venue-showcase__accent-square {
    width: 1.65rem;
    height: 1.65rem;
    top: 0.85rem;
    bottom: auto;
    left: auto;
    right: max(0.85rem, env(safe-area-inset-right, 0px));
    opacity: 0.48;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  }

  .usa-venue-showcase__glow {
    right: -1.25rem;
    opacity: 0.38;
    transform: translate(18%, -42%) scale(0.78);
  }

  .usa-venue-showcase__content {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    padding: clamp(1.5rem, 5vw, 1.9rem) clamp(1.3rem, 5vw, 1.65rem);
    background: rgba(19, 41, 75, 0.56);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .usa-venue-showcase__eyebrow {
    margin-bottom: 1.05rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    padding-left: 0.72rem;
    border-left-width: 3px;
  }

  .usa-venue-showcase__title {
    font-size: clamp(1.12rem, 4.6vw, 1.42rem);
    line-height: 1.28;
    letter-spacing: 0.052em;
    margin-bottom: 1.2rem;
  }

  .usa-venue-showcase__title::before {
    width: 2.35rem;
    margin-bottom: 0.95rem;
  }

  .usa-venue-showcase__lead {
    font-size: clamp(0.98rem, 3.5vw, 1.06rem);
    line-height: 1.74;
    max-width: none;
    letter-spacing: 0.008em;
  }
}

@media (max-width: 575.98px) {
  .usa-venue-showcase {
    padding: 2.5rem 0 2.85rem;
  }

  .usa-venue-showcase__content {
    padding: 1.4rem 1.15rem 1.5rem;
  }

  .usa-venue-showcase__accent-square {
    width: 1.45rem;
    height: 1.45rem;
    top: 0.65rem;
    right: max(0.65rem, env(safe-area-inset-right, 0px));
    opacity: 0.42;
  }

  .usa-venue-showcase__title::before {
    width: 2.15rem;
    margin-bottom: 0.88rem;
  }
}

/* Venue: telemóveis ~521px–430px — card mais leve, menos “bloco” */
@media (max-width: 599.98px) {
  .usa-venue-showcase {
    padding: 2.25rem 0 2.55rem;
    align-items: flex-start;
  }

  .usa-venue-showcase__content {
    padding: 1.2rem 1rem 1.3rem;
    border-radius: var(--usa-radius);
    max-width: 100%;
  }

  .usa-venue-showcase__eyebrow {
    margin-bottom: 0.95rem;
  }

  .usa-venue-showcase__title {
    font-size: clamp(1.02rem, 5.1vw, 1.26rem);
    line-height: 1.24;
    letter-spacing: 0.048em;
    margin-bottom: 1rem;
  }

  .usa-venue-showcase__title::before {
    margin-bottom: 0.82rem;
  }

  .usa-venue-showcase__lead {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .usa-venue-showcase__glow {
    opacity: 0.26;
    transform: translate(24%, -36%) scale(0.62);
  }

  .usa-venue-showcase__accent-square {
    width: 1.25rem;
    height: 1.25rem;
    top: 0.55rem;
    opacity: 0.35;
  }
}

@media (max-width: 399.98px) {
  .usa-venue-showcase__inner.container {
    padding-left: max(0.8rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.8rem, env(safe-area-inset-right, 0px));
  }

  .usa-venue-showcase__content {
    padding: 1.05rem 0.9rem 1.15rem;
  }

  .usa-venue-showcase__accent-square {
    display: none !important;
  }

  .usa-venue-showcase__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    padding-left: 0.58rem;
    margin-bottom: 0.8rem;
  }

  .usa-venue-showcase__title {
    font-size: clamp(0.98rem, 5.4vw, 1.12rem);
    margin-bottom: 0.9rem;
  }

  .usa-venue-showcase__lead {
    font-size: 0.93rem;
    line-height: 1.66;
  }
}

/* ---------- Local ---------- */
.usa-location {
  padding: 4rem 0;
  background: var(--usa-white);
  color: var(--usa-navy);
}

.usa-location__kicker {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--usa-red);
  margin-bottom: 0.75rem;
}

.usa-location__title {
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
  line-height: 1.25;
  color: var(--usa-navy);
}

.usa-location__tagline {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #2d3a4f;
  margin-bottom: 0;
  max-width: 36rem;
}

.usa-location__body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2d3a4f;
}

.usa-location__visual {
  position: relative;
  border-radius: var(--usa-radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(19, 41, 75, 0.12);
}

.usa-location__img--main {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.usa-location__img--secondary {
  display: none;
}

@media (min-width: 992px) {
  .usa-location__img--secondary {
    display: block;
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    width: 42%;
    max-width: 260px;
    border-radius: 12px;
    border: 4px solid #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    aspect-ratio: 4/3;
  }
}

/* ---------- Sections ---------- */
.usa-section {
  padding: 4rem 0;
}

.usa-section--light {
  background: var(--usa-white);
}

.usa-section__title {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: var(--usa-navy);
}

.usa-section--speakers {
  position: relative;
  overflow: hidden;
}

/* Homepage speakers: título fora do overflow do fundo */
.usa-section--speakers.usa-home-speakers {
  overflow: visible;
}

.usa-section--speakers .usa-section__title {
  color: var(--usa-white) !important;
}

.usa-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1a33 0%, #0b2345 45%, #1a3a66 100%);
  z-index: 0;
}

.usa-section--speakers .container {
  z-index: 1;
}

/* ---------- Credenciais (home + página) ---------- */
section.usa-credentials {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(4.75rem, 11vw, 6.25rem);
  margin-top: 0;
  margin-bottom: 0;
  background: linear-gradient(180deg, #e8edf4 0%, #f4f6fa 38%, #fafbfd 100%);
}

.usa-credentials__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #e8edf4 0%, #f4f6fa 38%, #fafbfd 100%);
  pointer-events: none;
}

.usa-credentials__bg::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--usa-red), transparent);
  opacity: 0.65;
}

.usa-credentials .container {
  position: relative;
  z-index: 1;
}

.usa-credentials__head {
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.usa-credentials__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--usa-red);
  margin-bottom: 0.65rem;
}

.usa-credentials__title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--usa-navy);
  margin: 0 0 1rem;
  line-height: 1.15;
}

body.confut-usa-refactor .usa-credentials__title {
  color: var(--usa-navy);
}

.usa-credentials__title--page {
  font-size: clamp(1.85rem, 4.2vw, 2.5rem);
}

.usa-credentials__rule {
  display: block;
  width: 3.5rem;
  height: 3px;
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
  background: linear-gradient(90deg, var(--usa-red), rgba(226, 123, 12, 0.25));
  border-radius: 2px;
}

.usa-cred-pass-row {
  --usa-cred-pass-minh: 15.5rem;
}

.usa-cred-pass {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: var(--usa-cred-pass-minh);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  border-radius: 6px 18px 18px 6px;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%),
    linear-gradient(168deg, #1a3358 0%, #0b2345 46%, #081a30 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 22px 50px rgba(8, 18, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.usa-cred-pass__shine {
  position: absolute;
  inset: -40% -30%;
  background: linear-gradient(
    118deg,
    transparent 40%,
    rgba(255, 255, 255, 0.07) 48%,
    transparent 56%
  );
  transform: translateX(-18%);
  pointer-events: none;
  z-index: 0;
}

.usa-cred-pass__border-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(226, 123, 12, 0.12);
  pointer-events: none;
  z-index: 2;
}

.usa-cred-pass__mast {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem 0.65rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
}

.usa-cred-pass__event {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: rgba(248, 250, 252, 0.88);
}

.usa-cred-pass__event-usa {
  color: var(--usa-red);
}

.usa-cred-pass__chip {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(248, 250, 252, 0.72);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.2);
}

.usa-cred-pass__perforation {
  height: 10px;
  margin: 0 1rem;
  background:
    radial-gradient(circle at 6px 50%, transparent 5px, rgba(255, 255, 255, 0.12) 5px) 0 0 / 14px 10px repeat-x;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

.usa-cred-pass__body {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  padding: 1.1rem 1.25rem 0.85rem;
}

.usa-cred-pass__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(226, 123, 12, 0.95);
}

.usa-cred-pass__tier {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff !important;
  line-height: 1.12;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

body.confut-usa-refactor .usa-cred-pass__tier {
  color: #fff !important;
}

.usa-cred-pass__fine {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.78);
  max-width: 22rem;
}

.usa-cred-pass__stub {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem 0.85rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.18);
}

.usa-cred-pass__barcode {
  flex: 1 1 auto;
  height: 28px;
  max-width: 8.5rem;
  border-radius: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(248, 250, 252, 0.92) 0 2px,
    rgba(248, 250, 252, 0.15) 2px 5px,
    rgba(248, 250, 252, 0.75) 5px 7px,
    rgba(248, 250, 252, 0.2) 7px 11px
  );
  opacity: 0.88;
  filter: contrast(1.05);
}

.usa-cred-pass__stub-text {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  color: rgba(248, 250, 252, 0.72);
  white-space: nowrap;
}

.usa-cred-pass__cta {
  position: relative;
  z-index: 3;
  display: block;
  margin: 0 1.25rem 1.2rem;
  padding: 0.72rem 1rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: #0b2345 !important;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff 0%, #e8edf4 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.usa-cred-pass__cta:hover {
  color: var(--usa-red) !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.usa-cred-pass--platinum {
  border-color: rgba(240, 215, 140, 0.35);
  box-shadow:
    0 26px 58px rgba(8, 18, 42, 0.32),
    0 0 0 1px rgba(240, 215, 140, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.usa-cred-pass--platinum .usa-cred-pass__border-glow {
  box-shadow:
    inset 0 0 0 1px rgba(240, 215, 140, 0.22),
    0 0 32px rgba(226, 123, 12, 0.12);
}

.usa-cred-pass--corporate .usa-cred-pass__kicker {
  color: rgba(147, 197, 253, 0.95);
}

@media (hover: hover) and (pointer: fine) {
  .usa-cred-pass:hover {
    transform: translateY(-4px);
    box-shadow:
      0 30px 60px rgba(8, 18, 42, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.09);
    border-color: rgba(226, 123, 12, 0.35);
  }
}

@media (max-width: 767.98px) {
  section.usa-credentials {
    padding: clamp(2.75rem, 9vw, 3.5rem) 0 clamp(3.5rem, 10vw, 4.5rem);
  }

  .usa-cred-pass-row {
    --usa-cred-pass-minh: 14rem;
  }

  .usa-cred-pass:hover {
    transform: none;
  }
}

/* Empilhamento: palestrantes por cima da dobra anterior (evita “faixa branca” sobre o título) */
body.confut-usa-refactor #content .usa-refactor > section#section-speakers.usa-section--speakers {
  position: relative;
  z-index: 4;
  margin-top: 0;
}

body.confut-usa-refactor #content .usa-refactor > section#section-speakers .usa-home-speakers__head {
  position: relative;
  z-index: 6;
}

body.confut-usa-refactor .usa-refactor .wow {
  visibility: visible !important;
  animation: none !important;
}

/* A11y trigger: keep global left/bottom position (styles/accessibility.css); do not move to the right. */
body.confut-usa-refactor .a11y-trigger {
  left: 20px;
  right: auto;
  bottom: 24px;
}

.usa-credentials--page .usa-credentials__rule {
  margin-bottom: 1rem;
}

.usa-credentials__lead {
  margin: 0 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a5a70;
}

.usa-credentials--page .usa-credentials__head {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.usa-credentials__head--page-only .usa-credentials__intro {
  margin: 0.5rem auto 0;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a5a70;
}

.usa-credentials__back {
  border-color: rgba(19, 41, 75, 0.35) !important;
  color: var(--usa-navy) !important;
}

.usa-credentials__back:hover {
  border-color: var(--usa-red) !important;
  color: var(--usa-navy) !important;
  background: rgba(226, 123, 12, 0.08);
}

/* ---------- Speakers grid ---------- */
.usa-speaker-card {
  text-align: center;
}

.usa-speaker-card__photo {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.65rem;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.08);
}

.usa-speaker-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.usa-speaker-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--usa-white);
  margin: 0 0 0.2rem;
  line-height: 1.25;
}

.usa-speaker-card__role {
  font-size: 0.72rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}

/* ---------- Vídeos (showcase home: destaque + carrossel tipo fileira) ---------- */
.usa-videos-showcase {
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  color: rgba(248, 250, 252, 0.92);
}

.usa-videos-showcase__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(165deg, #060a12 0%, #0d1a2e 40%, #0b2345 100%);
  pointer-events: none;
}

.usa-videos-showcase__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(226, 123, 12, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.usa-videos-showcase .container {
  position: relative;
  z-index: 1;
}

.usa-videos-showcase__head {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.usa-videos-showcase__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--usa-red);
  margin-bottom: 0.65rem;
}

.usa-videos-showcase__title {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #fff;
}

body.confut-usa-refactor .usa-videos-showcase__title {
  color: #fff !important;
}

.usa-videos-showcase__rule {
  display: block;
  width: 3.5rem;
  height: 3px;
  margin: 0 auto;
  background: linear-gradient(90deg, var(--usa-red), rgba(226, 123, 12, 0.2));
  border-radius: 2px;
  box-shadow: 0 0 16px rgba(226, 123, 12, 0.25);
}

.usa-videos-showcase__layout {
  display: flex;
  flex-direction: column;
  gap: clamp(1.15rem, 3vw, 1.85rem);
}

.usa-videos-showcase__featured {
  width: 100%;
  max-width: min(72rem, 100%);
  margin: 0 auto;
}

.usa-video-feature__stage {
  position: relative;
  border-radius: calc(var(--usa-radius) + 8px);
  overflow: hidden;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(226, 123, 12, 0.12);
}

.usa-video-feature__trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  cursor: pointer;
  background: #0a0e16;
  border-radius: inherit;
}

.usa-video-feature__thumb {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {
  .usa-video-feature__trigger:hover .usa-video-feature__thumb {
    transform: scale(1.03);
  }
}

.usa-video-feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.2) 0%, rgba(6, 10, 18, 0.65) 100%);
  pointer-events: none;
  transition: background 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .usa-video-feature__trigger:hover .usa-video-feature__overlay {
    background: linear-gradient(180deg, rgba(6, 10, 18, 0.25) 0%, rgba(6, 10, 18, 0.72) 100%);
  }
}

.usa-video-feature__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.usa-video-feature__play::before {
  content: "";
  position: absolute;
  width: clamp(4.25rem, 12vw, 5.5rem);
  height: clamp(4.25rem, 12vw, 5.5rem);
  border-radius: 50%;
  background: rgba(226, 123, 12, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 28px rgba(226, 123, 12, 0.35);
  z-index: -1;
}

@media (hover: hover) and (pointer: fine) {
  .usa-video-feature__trigger:hover .usa-video-feature__play {
    transform: scale(1.06);
    filter: drop-shadow(0 0 12px rgba(226, 123, 12, 0.6));
  }
}

.usa-video-feature__embed {
  position: relative;
  width: 100%;
  background: #000;
}

.usa-video-feature__iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
}

.usa-video-feature__caption {
  margin: 1.15rem 0 0;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 600;
  color: rgba(248, 250, 252, 0.95);
  text-align: center;
  line-height: 1.4;
}

/* Carrossel horizontal (thumbnails — scrollbar invisível, drag desktop no JS) */
.usa-videos-carousel {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
  max-width: min(72rem, 100%);
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .usa-videos-carousel::before,
  .usa-videos-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0.35rem;
    width: clamp(1.25rem, 4vw, 2.75rem);
    z-index: 2;
    pointer-events: none;
  }

  .usa-videos-carousel::before {
    left: calc(2.35rem + 0.2rem);
    background: linear-gradient(90deg, rgba(6, 10, 18, 0.97) 0%, rgba(6, 10, 18, 0) 100%);
  }

  .usa-videos-carousel::after {
    right: calc(2.35rem + 0.2rem);
    background: linear-gradient(270deg, rgba(6, 10, 18, 0.97) 0%, rgba(6, 10, 18, 0) 100%);
  }
}

.usa-videos-carousel__viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0 0.65rem;
  outline: none;
}

@media (hover: hover) and (pointer: fine) {
  .usa-videos-carousel__viewport {
    cursor: grab;
  }

  .usa-videos-carousel__viewport.is-dragging {
    cursor: grabbing;
  }
}

.usa-videos-carousel__viewport:focus-visible {
  box-shadow: 0 0 0 2px rgba(226, 123, 12, 0.55);
  border-radius: 10px;
}

.usa-videos-carousel__viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.usa-videos-carousel__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: clamp(0.85rem, 2vw, 1.15rem);
  width: max-content;
  padding: 0.35rem 0.25rem 0.5rem;
  user-select: none;
  -webkit-user-select: none;
}

.usa-videos-carousel .usa-video-thumb {
  flex: 0 0 auto;
  width: min(11rem, 78vw);
  scroll-snap-align: start;
}

@media (min-width: 480px) {
  .usa-videos-carousel .usa-video-thumb {
    width: min(11.75rem, 44vw);
  }
}

@media (min-width: 768px) {
  .usa-videos-carousel .usa-video-thumb {
    width: min(13rem, 32vw);
  }
}

@media (min-width: 992px) {
  .usa-videos-carousel .usa-video-thumb {
    width: 13.25rem;
  }
}

.usa-videos-carousel__arrow {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  align-self: center;
  margin-bottom: 0.55rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(13, 26, 46, 0.92);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 3;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

@media (min-width: 768px) {
  .usa-videos-carousel__arrow {
    display: flex;
  }
}

@media (hover: hover) and (pointer: fine) {
  .usa-videos-carousel__arrow:hover {
    background: rgba(226, 123, 12, 0.25);
    border-color: rgba(226, 123, 12, 0.55);
    color: #fff;
    box-shadow: 0 0 18px rgba(226, 123, 12, 0.2);
  }
}

.usa-videos-carousel__arrow:focus-visible {
  outline: 2px solid var(--usa-red);
  outline-offset: 2px;
}

.usa-video-thumb__btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 0.2rem;
  margin: -0.2rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  border-radius: calc(var(--usa-radius) + 2px);
  -webkit-tap-highlight-color: transparent;
}

.usa-video-thumb__media {
  position: relative;
  display: block;
  border-radius: calc(var(--usa-radius) + 2px);
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.42);
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition:
    border-color 0.3s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.usa-video-thumb__img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.usa-video-thumb__shade {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 16, 0.45);
  transition: background 0.3s ease;
  pointer-events: none;
}

.usa-video-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.usa-video-thumb__play::before {
  content: "";
  position: absolute;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(226, 123, 12, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.45);
  z-index: -1;
}

.usa-video-thumb__label {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(220, 228, 240, 0.82);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .usa-video-thumb__btn:hover .usa-video-thumb__media {
    border-color: rgba(226, 123, 12, 0.5);
    box-shadow:
      0 20px 44px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(226, 123, 12, 0.35),
      0 0 24px rgba(226, 123, 12, 0.12);
    transform: scale(1.03);
  }

  .usa-video-thumb__btn:hover .usa-video-thumb__img {
    transform: scale(1.06);
  }

  .usa-video-thumb__btn:hover .usa-video-thumb__shade {
    background: rgba(4, 8, 16, 0.32);
  }

  .usa-video-thumb__btn:hover .usa-video-thumb__play {
    transform: scale(1.1);
  }

  .usa-video-thumb__btn:hover .usa-video-thumb__label {
    color: rgba(248, 250, 252, 0.95);
  }
}

.usa-video-thumb.is-active .usa-video-thumb__media {
  border-color: rgba(226, 123, 12, 0.95);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.55),
    0 0 0 2px rgba(226, 123, 12, 0.65),
    0 0 32px rgba(226, 123, 12, 0.28);
  transform: scale(1.01);
}

.usa-video-thumb.is-active .usa-video-thumb__label {
  color: #fff;
}

.usa-video-thumb.is-active .usa-video-thumb__shade {
  background: rgba(4, 8, 16, 0.28);
}

/* Legado (outras páginas, se existirem) */
.usa-video-card__trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--usa-radius);
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.usa-video-card__thumb {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.usa-video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 2.5rem;
  transition: background 0.2s;
  pointer-events: none;
}

.usa-video-card__trigger:hover .usa-video-card__play {
  background: rgba(0, 0, 0, 0.5);
}

.usa-video-card__caption {
  margin-top: 0.65rem;
  font-weight: 600;
  color: var(--usa-navy);
  font-size: 0.95rem;
}

.usa-video-card__iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: var(--usa-radius);
}

.usa-video-card__placeholder {
  aspect-ratio: 16/9;
  border-radius: var(--usa-radius);
  background: linear-gradient(145deg, #e8ecf2, #d4dbe6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.usa-video-card__placeholder-text {
  font-weight: 800;
  color: var(--usa-navy);
  margin-bottom: 0.35rem;
}

/* ---------- CTA + Social (texto branco) ---------- */
.usa-cta-social {
  background: linear-gradient(100deg, #0f1f3d 0%, #0b2345 50%, #0d2847 100%) !important;
  padding: 3.5rem 0 !important;
  overflow-x: clip;
}

.usa-cta-social__row {
  min-width: 0;
}

.usa-cta-social__copy,
.usa-cta-social__actions {
  min-width: 0;
}

/* Garante contraste sobre o gradiente (evita herdar azul escuro de .confut-usa-theme h2) */
.confut-usa-theme .usa-cta-social h2.usa-cta-social__title,
.usa-cta-social__title {
  color: #ffffff !important;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.02em;
}

.confut-usa-theme .usa-cta-social p.usa-cta-social__text,
.usa-cta-social__text {
  color: rgba(255, 255, 255, 0.96) !important;
  font-size: 1.05rem;
  line-height: 1.55;
}

.usa-cta-social__btn {
  max-width: 100%;
  box-shadow: 0 4px 18px rgba(232, 98, 51, 0.32);
}

.usa-cta-social__btn:hover {
  box-shadow: 0 6px 22px rgba(232, 98, 51, 0.42);
  transform: translateY(-1px);
}

.usa-cta-social__btn:active {
  transform: scale(0.98);
}

.usa-cta-social__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 992px) {
  .usa-cta-social__social {
    justify-content: flex-end;
  }
}

.usa-social-link {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.usa-social-link__icon {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.usa-social-link:hover {
  background: var(--usa-red);
  border-color: var(--usa-red);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 98, 51, 0.35);
}

.usa-social-link:focus-visible {
  outline: 2px solid var(--usa-red);
  outline-offset: 3px;
}

/* ---------- Newsletter (dobra final — faixa navy, 2 colunas, painel formulário) ---------- */
.usa-newsletter {
  position: relative;
  overflow-x: clip;
  padding: clamp(3.25rem, 8vw, 5.75rem) 0 !important;
  background: linear-gradient(118deg, #0a1628 0%, #0b2345 42%, #0d2847 72%, #0a1f3d 100%) !important;
  color: #fff;
}

.usa-newsletter__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 88% 12%, rgba(226, 123, 12, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 8% 88%, rgba(255, 255, 255, 0.06), transparent 50%);
}

.usa-newsletter__inner {
  z-index: 1;
}

.usa-newsletter__row {
  min-width: 0;
}

.usa-newsletter__copy,
.usa-newsletter__form-col {
  min-width: 0;
}

.usa-newsletter__header {
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.usa-newsletter__accent {
  width: 4px;
  min-height: 4.75rem;
  margin-right: 1.25rem;
  flex-shrink: 0;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--usa-red) 0%, #f0a030 100%);
  box-shadow: 0 0 20px rgba(226, 123, 12, 0.35);
}

.usa-newsletter__head-text {
  flex: 1;
  min-width: 0;
}

.confut-usa-theme .usa-newsletter .usa-newsletter__title,
.usa-newsletter .usa-newsletter__title {
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.confut-usa-theme .usa-newsletter .usa-newsletter__subtitle,
.usa-newsletter .usa-newsletter__subtitle {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 38ch;
}

.usa-newsletter__panel {
  border-radius: var(--usa-radius);
  padding: clamp(1.35rem, 3.5vw, 2.1rem);
  background: rgba(19, 41, 75, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

@supports (backdrop-filter: blur(12px)) {
  .usa-newsletter__panel {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}

.usa-newsletter__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.45rem;
}

.usa-newsletter__stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.usa-newsletter__field {
  min-width: 0;
}

.usa-newsletter__consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding-top: 0.15rem;
}

.usa-newsletter__checkbox {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background-color: #fff;
  cursor: pointer;
  accent-color: var(--usa-red);
}

.usa-newsletter__consent-label {
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 0;
}

.usa-newsletter__input {
  min-height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(19, 41, 75, 0.12);
  padding: 0.7rem 1.15rem;
  background: #fff;
  color: var(--usa-navy);
  font-weight: 500;
  width: 100%;
  box-sizing: border-box;
}

.usa-newsletter__input::placeholder {
  color: #7a8799;
}

.usa-newsletter__input:focus {
  border-color: var(--usa-red);
  box-shadow: 0 0 0 3px rgba(226, 123, 12, 0.25);
  outline: none;
}

.usa-newsletter__submit {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 54px;
  margin-top: 0.35rem;
  border-radius: 12px;
  font-size: 1.02rem;
  box-shadow: 0 4px 18px rgba(226, 123, 12, 0.35);
}

.usa-newsletter__submit:hover {
  box-shadow: 0 6px 22px rgba(226, 123, 12, 0.45);
}

.usa-newsletter__hint {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 1rem;
}

.usa-newsletter__feedback {
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.usa-newsletter .usa-newsletter__feedback.text-success {
  color: #9ef0c0 !important;
}

.usa-newsletter .usa-newsletter__feedback.text-danger {
  color: #ffb8b8 !important;
}

/* Só mobile: texto + painel centrados; a partir de md = texto à esquerda, formulário à direita */
@media (max-width: 767.98px) {
  .usa-newsletter__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .usa-newsletter__accent {
    width: min(5rem, 42vw);
    height: 4px;
    min-height: 0;
    margin-right: 0;
    margin-bottom: 1.25rem;
  }

  .usa-newsletter__head-text {
    text-align: center;
    max-width: 36rem;
    margin-inline: auto;
  }

  .confut-usa-theme .usa-newsletter .usa-newsletter__subtitle,
  .usa-newsletter .usa-newsletter__subtitle {
    max-width: none;
    margin-inline: auto;
  }

  .usa-newsletter__panel {
    max-width: min(36rem, 100%);
    margin-inline: auto;
  }
}

@media (min-width: 768px) {
  .usa-newsletter__copy {
    padding-right: clamp(0.5rem, 2vw, 1.5rem);
  }

  .usa-newsletter__form-col {
    padding-left: clamp(0.5rem, 2vw, 1.5rem);
  }
}

body.confut-usa-refactor #content .usa-refactor > section.usa-newsletter {
  padding-top: clamp(3.25rem, 8vw, 5.75rem) !important;
  padding-bottom: clamp(3.25rem, 8vw, 5.75rem) !important;
}

.text-success {
  color: #1e7e4a !important;
}

.text-danger {
  color: #c62828 !important;
}

/* ---------- Página interna: hero comum ---------- */
.usa-page-hero {
  position: relative;
  overflow-x: clip;
  padding: clamp(2.5rem, 6vw, 3.75rem) 0;
  /* Base mais escura no rodapé para “colar” visualmente na faixa do FAQ (tema escuro) */
  background: linear-gradient(118deg, #0a1628 0%, #0b2345 42%, #0b1018 100%);
  color: #fff;
}

.usa-page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(226, 123, 12, 0.18), transparent 50%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.12) 100%);
}

.usa-page-hero .container {
  position: relative;
  z-index: 1;
}

.confut-usa-theme .usa-page-hero .usa-page-hero__title,
.usa-page-hero__title {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff !important;
  line-height: 1.15;
}

.usa-page-hero__sub {
  margin: 0.65rem 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
}

/* ---------- Página interna: programação ---------- */
.usa-schedule-page {
  position: relative;
  overflow-x: clip;
  min-height: min(72vh, 820px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  background: linear-gradient(155deg, #0a1628 0%, #0b2345 42%, #0e2240 100%);
  color: #fff;
}

.usa-schedule-page__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 35%, rgba(226, 123, 12, 0.14) 0%, transparent 38%),
    radial-gradient(circle at 88% 65%, rgba(255, 255, 255, 0.06) 0%, transparent 42%);
}

.usa-schedule-page__gridlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 52px,
      rgba(255, 255, 255, 0.04) 52px,
      rgba(255, 255, 255, 0.04) 53px
    );
}

.usa-schedule-page__orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.usa-schedule-page__orb--1 {
  width: min(42vw, 280px);
  height: min(42vw, 280px);
  top: 8%;
  right: -8%;
  background: radial-gradient(circle at 35% 35%, rgba(226, 123, 12, 0.12), transparent 65%);
}

.usa-schedule-page__orb--2 {
  width: min(28vw, 160px);
  height: min(28vw, 160px);
  bottom: 12%;
  left: 5%;
  border-color: rgba(226, 123, 12, 0.25);
  background: rgba(255, 255, 255, 0.02);
}

.usa-schedule-page__inner {
  text-align: center;
  z-index: 1;
  width: 100%;
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

.usa-schedule-page__context {
  margin: 0 auto 0.5rem;
  font-size: clamp(0.75rem, 1.7vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7) !important;
}

.usa-schedule-page__kicker {
  margin: 0 auto;
  font-size: clamp(2.15rem, 7vw, 3.65rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
  color: #fff !important;
}

.usa-schedule-page__lead {
  margin: 1.35rem auto 0;
  max-width: 32rem;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.usa-schedule-page__rule {
  width: min(12rem, 55vw);
  height: 3px;
  margin: 2rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--usa-red), transparent);
  opacity: 0.9;
}

.usa-schedule-page__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 0.75rem;
  margin-top: 2rem;
  padding: 0 0.25rem;
}

.usa-schedule-page__chip {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.usa-schedule-page__cta {
  text-align: center;
}

/* ---------- FAQ ---------- */
.usa-faq-wrap {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 4.5rem);
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 22%, #ffffff 100%);
}

.usa-faq {
  max-width: 760px;
  margin: 0 auto;
}

.usa-faq__item {
  border-bottom: 1px solid rgba(19, 41, 75, 0.1);
}

.usa-faq__item:first-child {
  border-top: 1px solid rgba(19, 41, 75, 0.1);
}

.usa-faq__question {
  width: 100%;
  text-align: left;
  padding: 1.2rem 0;
  background: none;
  border: none;
  font-size: clamp(1rem, 2.4vw, 1.08rem);
  font-weight: 700;
  color: var(--usa-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  min-height: 52px;
  transition: color 0.2s ease;
}

.usa-faq__question:hover {
  color: #0d2847;
}

.usa-faq__question::after {
  content: '+';
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--usa-red);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s ease;
}

.usa-faq__item.is-open .usa-faq__question::after {
  content: '−';
  transform: rotate(180deg);
}

.usa-faq__answer {
  padding: 0 0 1.25rem;
  color: #3d4f66;
  line-height: 1.68;
  font-size: 0.98rem;
}

.usa-faq__answer:not([hidden]) {
  animation: usa-faq-answer-in 0.3s ease;
}

@keyframes usa-faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.usa-faq__answer a {
  color: var(--usa-red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.usa-faq__answer a:hover {
  color: var(--usa-red-hover);
}

.usa-faq__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(18, 140, 126, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.usa-faq__btn:hover {
  box-shadow: 0 10px 26px rgba(18, 140, 126, 0.45);
  color: #fff !important;
}

body.confut-usa-refactor.dark-scheme .usa-faq__btn {
  color: #fff !important;
}

.usa-faq__answer[hidden] {
  display: none;
}

/* FAQ no tema escuro: .dark-scheme section (#000) vence o gradiente claro — texto claro + divisores visíveis */
body.confut-usa-refactor.dark-scheme section.usa-faq-wrap {
  background: linear-gradient(180deg, #0d1219 0%, #06090e 38%, #030508 100%) !important;
}

body.confut-usa-refactor.dark-scheme .usa-faq__item {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.confut-usa-refactor.dark-scheme .usa-faq__item:first-child {
  border-top-color: rgba(255, 255, 255, 0.1);
}

body.confut-usa-refactor.dark-scheme .usa-faq__question {
  color: rgba(255, 255, 255, 0.94);
}

body.confut-usa-refactor.dark-scheme .usa-faq__question:hover {
  color: #ffffff;
}

body.confut-usa-refactor.dark-scheme .usa-faq__answer {
  color: #9aa3b0;
  font-weight: 400;
}

.usa-faq__answer--pricing .usa-faq__batch {
  color: var(--usa-navy);
}

body.confut-usa-refactor.dark-scheme .usa-faq__answer--pricing .usa-faq__batch,
body.confut-usa-refactor.dark-scheme .usa-faq__answer--pricing .usa-faq__batch span {
  color: #f1f5f9 !important;
}

.usa-faq__answer--pricing .usa-faq__meta {
  font-size: 0.92rem;
  color: #64748b;
}

body.confut-usa-refactor.dark-scheme .usa-faq__answer--pricing .usa-faq__meta {
  color: #94a3b8;
}

.usa-faq__tz {
  display: inline-block;
  margin: 0 0.2rem;
  padding: 0.12rem 0.45rem;
  font-size: 0.88em;
  font-weight: 600;
  border-radius: 6px;
  background: rgba(11, 35, 69, 0.08);
  color: var(--usa-navy);
}

body.confut-usa-refactor.dark-scheme .usa-faq__tz {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

@media only screen and (max-width: 576px) {
  .usa-faq-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .usa-faq-wrap .container {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .usa-faq__question {
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 0.75rem;
    align-items: flex-start;
    text-align: left;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .usa-faq__question::after {
    margin-top: 0.15em;
  }

  .usa-faq__answer {
    padding-right: 0.25rem;
    font-size: 0.95rem;
  }
}

/* ---------- Header refactor (layout + mobile overlay) ---------- */
body.confut-usa-refactor header:not(.usa-site-header) {
  position: static !important;
  left: auto !important;
  top: auto !important;
  right: auto !important;
  width: auto !important;
  max-width: none;
  z-index: auto !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none;
}

.usa-header__bar {
  position: relative;
  z-index: 20;
  background: linear-gradient(
    180deg,
    rgba(10, 18, 40, 0.88) 0%,
    rgba(10, 18, 40, 0.72) 70%,
    rgba(10, 18, 40, 0.55) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Páginas de programação (fundo claro): barra do menu no azul Confut USA em vez de cinza-ardósia. */
body.confut-usa-refactor.usa-page--programacao .usa-header__bar {
  background: linear-gradient(180deg, #0d2b54 0%, #103560 55%, #123a6e 100%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.confut-usa-refactor.usa-page--programacao header.usa-site-header.smaller .usa-header__bar {
  background: linear-gradient(180deg, #0c284e 0%, #0f3560 100%) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.confut-usa-refactor.usa-page--programacao.dark-scheme header.usa-site-header.smaller .usa-header__bar {
  background: linear-gradient(180deg, #0c284e 0%, #132a47 100%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.usa-header__container {
  max-width: 1320px;
}

.usa-header__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  min-height: 64px;
  padding: 0.55rem 0;
}

.usa-header__brand {
  flex: 0 0 auto;
  min-width: 0;
}

.usa-header__logo-link {
  display: inline-block;
  line-height: 0;
}

.usa-header__logo-img {
  display: block;
  height: auto;
}

@media (min-width: 992px) {
  .usa-header__inner {
    display: grid;
    grid-template-columns: minmax(120px, 190px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem 1.25rem;
    min-height: 64px;
    padding: 0.42rem 0;
  }

  .usa-header__brand {
    justify-self: start;
  }

  .usa-header__actions {
    justify-self: end;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .usa-header__menu.usa-nav {
    gap: 0.35rem 1.1rem;
  }

  .usa-header__menu .usa-header__menu-link {
    font-size: 0.88rem;
    padding: 0.85rem 0.15rem !important;
  }
}

.usa-header__nav {
  min-width: 0;
}

@media (min-width: 992px) {
  .usa-header__nav {
    position: relative;
    display: flex !important;
    justify-content: center;
    align-items: center;
    justify-self: center;
    width: 100%;
    max-width: 720px;
    visibility: visible !important;
    pointer-events: auto !important;
    height: auto !important;
    inset: auto !important;
  }

  .usa-header__nav-scrim {
    display: none !important;
  }

  .usa-header__nav-panel {
    position: static !important;
    width: 100% !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
    overflow: visible !important;
    inset: auto !important;
    flex: 1;
  }

  .usa-header__nav,
  .usa-header__nav-scrim,
  .usa-header__nav-panel,
  .usa-header__menu-item,
  .usa-header__toggle-bar {
    transition: none;
  }

  body.usa-nav--open .usa-header__menu-item {
    transform: none;
    opacity: 1;
  }

  /* Só mobile: rótulo + CTA no painel não aparecem na barra desktop */
  .usa-header__nav-label,
  .usa-header__nav-footer {
    display: none !important;
  }
}

@media (max-width: 991px) {
  /*
   * Menu mobile: overlay abaixo da barra (scrim não cobre logo/hamburger).
   * Logo + ações ficam acima do overlay (z-index) para o X e o CTA funcionarem.
   * Neutraliza `header.header-mobile { overflow: hidden }` do style.css do tema.
   */
  body.confut-usa-refactor header.usa-site-header.header-mobile {
    overflow: visible !important;
  }

  /*
   * CRÍTICO: backdrop-filter na barra cria containing block para position:fixed dos filhos.
   * O <nav> fica “preso” à altura da barra (~64px) → painel do menu sai do sítio / não aparece no telemóvel.
   * Fundo sólido mantém o look premium sem blur.
   */
  body.confut-usa-refactor header.usa-site-header.header-mobile .usa-header__bar {
    background: rgba(10, 18, 40, 0.97) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    transform: none !important;
    filter: none !important;
  }

  body.usa-nav--open .usa-header__inner > .usa-header__brand,
  body.usa-nav--open .usa-header__inner > .usa-header__actions {
    position: relative;
    z-index: 12003;
  }

  /*
   * Painel com position:absolute + top/bottom (não flex-grow): em viewports estreitas o flex
   * com max-height:100% + min-height:0 podia colapsar o painel (lista “some”, só vê-se a hero).
   */
  .usa-header__nav {
    position: fixed !important;
    inset: 0 !important;
    z-index: 12001;
    display: block !important;
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    background: transparent !important;
    visibility: hidden;
    pointer-events: none;
  }

  /* Nav não intercepta cliques na barra: só scrim + painel recebem toque */
  body.usa-nav--open .usa-header__nav {
    visibility: visible;
    pointer-events: none;
  }

  body.usa-nav--open .usa-header__nav .usa-header__nav-scrim,
  body.usa-nav--open .usa-header__nav .usa-header__nav-panel {
    pointer-events: auto;
  }

  .usa-header__nav-scrim {
    display: block !important;
    position: absolute;
    z-index: 0;
    top: var(--usa-bar-h, 64px);
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 0;
    background: rgba(4, 10, 24, 0.72);
    opacity: 0;
    transition: opacity 0.32s ease;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }

  body.usa-nav--open .usa-header__nav-scrim {
    opacity: 1;
  }

  .usa-header__nav-panel {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    z-index: 2;
    top: var(--usa-bar-h, 64px);
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 0;
    max-height: none;
    background: linear-gradient(188deg, #0a1428 0%, #0f2444 42%, #0b2345 100%);
    padding:
      1.35rem max(1.15rem, env(safe-area-inset-right, 0px)) calc(1.35rem + env(safe-area-inset-bottom, 0px))
      max(1.15rem, env(safe-area-inset-left, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(12px);
    opacity: 0;
    transition:
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.28s ease;
    box-shadow:
      0 -8px 40px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(226, 123, 12, 0.2);
    border-top: 1px solid rgba(226, 123, 12, 0.28);
    border-radius: 16px 16px 0 0;
  }

  body.usa-nav--open .usa-header__nav-panel {
    transform: translateY(0);
    opacity: 1;
  }

  .usa-header__nav-label {
    margin: 0 0 1.1rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(226, 123, 12, 0.95);
  }

  .usa-header__nav-footer {
    margin-top: auto;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.confut-usa-refactor header.usa-site-header .usa-header__nav-cta {
    width: 100%;
    max-width: 100%;
    min-height: 50px;
    box-sizing: border-box;
  }

  /* Tema: `header.header-mobile #mainmenu li:last-child { margin-bottom: 30px }` — remove no Euro */
  body.confut-usa-refactor header.usa-site-header.header-mobile #mainmenu.usa-header__menu .usa-header__menu-item:last-child {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 400px) {
  .usa-header__nav-panel {
    padding-top: 1.15rem;
    padding-left: max(0.92rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.92rem, env(safe-area-inset-right, 0px));
    border-radius: 12px 12px 0 0;
  }
}

.usa-header__menu.usa-nav,
#mainmenu.usa-header__menu.usa-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

@media (min-width: 992px) {
  .usa-header__menu.usa-nav,
  #mainmenu.usa-header__menu.usa-nav {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.2rem 1.65rem;
  }
}

@media (max-width: 991px) {
  .usa-header__menu.usa-nav,
  #mainmenu.usa-header__menu.usa-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }
}

.usa-header__menu .usa-header__menu-link.menu-item,
body.confut-usa-refactor header.usa-site-header .usa-header__menu-link.menu-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.94) !important;
  font-weight: 600;
  font-size: clamp(0.88rem, 2.8vw, 0.98rem);
  letter-spacing: 0.01em;
  text-decoration: none !important;
  border-radius: 8px;
  padding: 0.68rem 0.2rem !important;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}

@media (min-width: 992px) {
  .usa-header__menu .usa-header__menu-link.menu-item {
    padding: 0.72rem 0.15rem !important;
  }
}

/* Navegação Euro: usa --usa-event-accent (definido no body.event-usa).
   Incluir #mainmenu para vencer `#mainmenu li a.active { color: … !important }` em style.css. */
body.confut-usa-refactor.event-usa header.usa-site-header #mainmenu.usa-header__menu li a.menu-item.active,
body.confut-usa-refactor.event-usa header.usa-site-header.smaller #mainmenu.usa-header__menu li a.menu-item.active {
  color: var(--usa-event-accent) !important;
}

body.confut-usa-refactor.event-usa header.usa-site-header #mainmenu.usa-header__menu li a.menu-item:not(.active):hover,
body.confut-usa-refactor.event-usa header.usa-site-header #mainmenu.usa-header__menu li a.menu-item:not(.active):focus-visible,
body.confut-usa-refactor.event-usa header.usa-site-header.smaller #mainmenu.usa-header__menu li a.menu-item:not(.active):hover,
body.confut-usa-refactor.event-usa header.usa-site-header.smaller #mainmenu.usa-header__menu li a.menu-item:not(.active):focus-visible {
  color: var(--usa-event-accent) !important;
}

body.confut-usa-refactor.event-usa header.usa-site-header #mainmenu.usa-header__menu li a.menu-item.active:hover,
body.confut-usa-refactor.event-usa header.usa-site-header #mainmenu.usa-header__menu li a.menu-item.active:focus-visible,
body.confut-usa-refactor.event-usa header.usa-site-header.smaller #mainmenu.usa-header__menu li a.menu-item.active:hover,
body.confut-usa-refactor.event-usa header.usa-site-header.smaller #mainmenu.usa-header__menu li a.menu-item.active:focus-visible {
  color: var(--usa-event-accent) !important;
}

@media (min-width: 992px) {
  .usa-header__menu .usa-header__menu-link.menu-item {
    justify-content: center;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  }

  .usa-header__menu .usa-header__menu-item:last-child .usa-header__menu-link {
    margin-right: 0;
  }

  .usa-header__menu .usa-header__menu-link.menu-item::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 0.32rem;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
    opacity: 0.9;
  }

  .usa-header__menu .usa-header__menu-link.menu-item:hover::after,
  .usa-header__menu .usa-header__menu-link.menu-item:focus-visible::after {
    transform: scaleX(1);
  }

  body.confut-usa-refactor.event-usa .usa-header__menu .usa-header__menu-link.menu-item.active::after {
    transform: scaleX(1);
    background: var(--usa-event-accent);
  }

  body.confut-usa-refactor.event-usa .usa-header__menu .usa-header__menu-link.menu-item:not(.active):hover::after,
  body.confut-usa-refactor.event-usa .usa-header__menu .usa-header__menu-link.menu-item:not(.active):focus-visible::after {
    background: var(--usa-event-accent);
  }
}

@media (max-width: 991px) {
  .usa-header__menu-item {
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 0.38s ease,
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.usa-nav--open .usa-header__menu-item {
    opacity: 1;
    transform: translateY(0);
  }

  body.usa-nav--open .usa-header__menu-item:nth-child(1) {
    transition-delay: 0.05s;
  }
  body.usa-nav--open .usa-header__menu-item:nth-child(2) {
    transition-delay: 0.1s;
  }
  body.usa-nav--open .usa-header__menu-item:nth-child(3) {
    transition-delay: 0.15s;
  }
  body.usa-nav--open .usa-header__menu-item:nth-child(4) {
    transition-delay: 0.2s;
  }
  body.usa-nav--open .usa-header__menu-item:nth-child(5) {
    transition-delay: 0.25s;
  }
  body.usa-nav--open .usa-header__menu-item:nth-child(6) {
    transition-delay: 0.3s;
  }

  .usa-header__menu .usa-header__menu-link.menu-item {
    justify-content: flex-start;
    width: 100%;
    padding: 0.85rem 0.5rem !important;
    min-height: 48px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
  }

  .usa-header__menu .usa-header__menu-link.menu-item::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .usa-header__nav-scrim,
  .usa-header__nav-panel,
  .usa-header__menu-item,
  .usa-header__toggle-bar {
    transition: none !important;
  }

  body.usa-nav--open .usa-header__menu-item {
    opacity: 1;
    transform: none;
  }
}

/* Schedule → Program | Speakers (submenu; "Speakers" label fixed EN in PHP) */
@media (min-width: 992px) {
  .usa-header__menu-item--dropdown {
    position: relative;
  }

  .usa-header__submenu {
    position: absolute;
    top: calc(100% - 0.15rem);
    left: 50%;
    transform: translateX(-50%) translateY(0.25rem);
    min-width: 12.5rem;
    margin: 0;
    padding: 0.4rem 0;
    list-style: none;
    background: rgba(8, 14, 28, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease,
      transform 0.2s ease;
    z-index: 200;
  }

  .usa-header__menu-item--dropdown:hover .usa-header__submenu,
  .usa-header__menu-item--dropdown:focus-within .usa-header__submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .usa-header__submenu-link {
    display: block;
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92) !important;
    text-decoration: none !important;
    border-radius: 0;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .usa-header__submenu-link:hover,
  .usa-header__submenu-link:focus-visible {
    background: rgba(227, 33, 49, 0.18);
    color: #fff !important;
    outline: none;
  }

  .usa-header__menu-link--parent::after {
    display: none;
  }
}

@media (max-width: 991px) {
  .usa-header__submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 0.35rem 0.75rem;
    border-left: 2px solid rgba(227, 33, 49, 0.35);
  }

  .usa-header__submenu-item {
    margin: 0;
  }

  .usa-header__submenu-link {
    display: block;
    padding: 0.55rem 0.5rem 0.55rem 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .usa-header__menu-link--parent {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.usa-header__actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem 0.65rem;
  flex: 0 0 auto;
}

body.confut-usa-refactor header.usa-site-header .usa-header__actions.menu_side_area {
  margin-left: 0;
}

.usa-header__toggle {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.22s ease,
    transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.usa-header__toggle:hover {
  background: rgba(255, 255, 255, 0.16);
}

.usa-header__toggle:focus-visible {
  outline: 2px solid var(--usa-red);
  outline-offset: 2px;
}

@media (max-width: 991px) {
  .usa-header__toggle {
    display: inline-flex;
  }
}

.usa-header__toggle-box {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.usa-header__toggle-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.26s ease,
    top 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.usa-header__toggle-bar:nth-child(1) {
  top: 0;
}

.usa-header__toggle-bar:nth-child(2) {
  top: 7px;
}

.usa-header__toggle-bar:nth-child(3) {
  top: 14px;
}

body.usa-nav--open .usa-header__toggle-bar:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

body.usa-nav--open .usa-header__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.usa-nav--open .usa-header__toggle-bar:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

body.confut-usa-refactor.event-usa header.usa-site-header .usa-header__actions a.usa-cta-cred {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.55rem 1.25rem;
  background-color: var(--usa-event-accent);
  background-image: none;
  color: #fff;
  border: 2px solid var(--usa-event-accent);
  border-radius: 999px;
  font-weight: 700;
  width: auto;
  max-width: 100%;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: clamp(0.8rem, 2.6vw, 0.95rem);
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

body.confut-usa-refactor.event-usa header.usa-site-header .usa-header__actions a.usa-cta-cred:hover {
  background-color: var(--usa-event-accent-hover);
  border-color: var(--usa-event-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body.confut-usa-refactor.event-usa header.usa-site-header .usa-header__actions a.usa-cta-cred:active {
  transform: translateY(0);
}

body.confut-usa-refactor.event-usa header.usa-site-header .usa-header__actions a.usa-cta-cred:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  body.confut-usa-refactor header.usa-site-header .usa-header__cta.usa-cta-cred {
    padding: 0.5rem 1rem;
    font-size: 0.88rem;
  }
}

/* Header + CTA: evitar corte no telefone (≤767px); telemóveis muito estreitos abaixo */
@media (max-width: 767.98px) {
  body.confut-usa-refactor header.usa-site-header .usa-header__bar {
    overflow-x: hidden;
  }

  body.confut-usa-refactor header.usa-site-header .usa-header__container.container {
    padding-left: max(0.65rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.65rem, env(safe-area-inset-right, 0px));
  }

  .usa-header__inner {
    gap: 0.35rem 0.45rem;
    min-height: 54px;
    padding: 0.48rem 0;
  }

  .usa-header__brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .usa-header__logo-link {
    display: block;
    max-width: 100%;
  }

  body.confut-usa-refactor header.usa-site-header .usa-header__logo-img {
    max-width: min(128px, 34vw) !important;
    width: auto !important;
    height: auto !important;
  }

  .usa-header__actions {
    flex: 0 1 auto;
    min-width: 0;
    gap: 0.35rem 0.45rem;
  }

  body.confut-usa-refactor header.usa-site-header .usa-header__actions a.usa-cta-cred {
    padding: 0.42rem 0.68rem;
    min-height: 42px;
    font-size: clamp(0.72rem, 2.8vw, 0.84rem);
    letter-spacing: 0.012em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
  }

  .usa-header__toggle {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
}

@media (max-width: 400px) {
  body.confut-usa-refactor header.usa-site-header .usa-header__logo-img {
    max-width: min(118px, 31vw) !important;
  }

  body.confut-usa-refactor header.usa-site-header .usa-header__actions a.usa-cta-cred {
    padding: 0.38rem 0.55rem;
    min-height: 40px;
    font-size: clamp(0.68rem, 2.9vw, 0.78rem);
  }
}

@media (max-width: 359.98px) {
  body.confut-usa-refactor header.usa-site-header .usa-header__container.container {
    padding-left: max(0.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.5rem, env(safe-area-inset-right, 0px));
  }

  body.confut-usa-refactor header.usa-site-header .usa-header__logo-img {
    max-width: min(108px, 30vw) !important;
  }

  body.confut-usa-refactor header.usa-site-header .usa-header__actions a.usa-cta-cred {
    padding: 0.34rem 0.48rem;
    min-height: 38px;
    font-size: clamp(0.64rem, 3.2vw, 0.74rem);
  }

  .usa-header__toggle {
    width: 42px;
    height: 42px;
  }
}

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

/* ---------- Header sobre o hero + z-index ---------- */
body.confut-usa-refactor #wrapper {
  position: relative;
  z-index: 0;
  /* Tema usa overflow:hidden nos dois eixos — cortava métricas/marquee na dobra */
  overflow-x: hidden;
  overflow-y: visible;
}

body.confut-usa-refactor header.usa-site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 12000 !important;
  isolation: isolate;
  background: transparent !important;
}

body.confut-usa-refactor header.usa-site-header.smaller,
body.confut-usa-refactor header.usa-site-header.header-mobile {
  z-index: 12000 !important;
}

@media only screen and (max-width: 992px) {
  body.confut-usa-refactor header.usa-site-header.header-mobile {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: auto !important;
    background: transparent !important;
  }

  body.confut-usa-refactor header.usa-site-header.header-mobile.menu-open {
    height: auto !important;
  }

  body.confut-usa-refactor header.usa-site-header.header-mobile .usa-header__bar {
    background: rgba(10, 18, 40, 0.97) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    transform: none !important;
    filter: none !important;
  }

  body.confut-usa-refactor.usa-page--programacao header.usa-site-header.header-mobile .usa-header__bar {
    background: linear-gradient(180deg, #0c284e 0%, #0f3560 100%) !important;
  }
}

body.confut-usa-refactor.dark-scheme header.usa-site-header.smaller .usa-header__bar {
  background: rgba(19, 41, 75, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

body.confut-usa-refactor.usa-page--programacao.dark-scheme header.usa-site-header.smaller .usa-header__bar {
  background: linear-gradient(180deg, #0c284e 0%, #132a47 100%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.confut-usa-refactor #content {
  position: relative;
  z-index: 1;
  isolation: isolate;
  padding-top: 0 !important;
}

/*
 * Primeira secção (credenciais, programação, FAQ): folga sob o header position:absolute.
 * — Desktop (≥993px): mais respiro para título não colar no menu.
 * — Mobile (≤992px): mantém valores atuais; !important evita perder para #content section:first-of-type do tema.
 */
@media (min-width: 993px) {
  body.confut-usa-refactor #content .usa-refactor > section:first-of-type:not(.usa-hero) {
    padding-top: max(13.75rem, calc(env(safe-area-inset-top, 0px) + 11.75rem));
  }
}

@media only screen and (max-width: 992px) {
  body.confut-usa-refactor #content .usa-refactor > section:first-of-type:not(.usa-hero) {
    padding-top: max(10.5rem, 168px, calc(env(safe-area-inset-top, 0px) + 9rem)) !important;
  }
}

/* Programação: menos folga entre o menu e o título (mantém-se espaço para header absolute). */
@media (min-width: 993px) {
  body.confut-usa-refactor.usa-page--programacao #content .usa-refactor > section.usa-prog:first-of-type {
    padding-top: max(6.5rem, calc(env(safe-area-inset-top, 0px) + 5rem));
  }
}

@media only screen and (max-width: 992px) {
  body.confut-usa-refactor.usa-page--programacao #content .usa-refactor > section.usa-prog:first-of-type {
    padding-top: max(6.25rem, calc(env(safe-area-inset-top, 0px) + 5.5rem)) !important;
  }
}

body.confut-usa-refactor .usa-refactor > section {
  position: relative;
  z-index: 0;
}

body.confut-usa-refactor .usa-newsletter,
body.confut-usa-refactor .usa-newsletter__panel {
  z-index: 0;
}

/* ---------- Home Euro — mobile polish (≤767.98px only) ----------
   Métricas: grelha estável; speakers: mais faixa útil + animação mais lenta;
   vídeos: eyebrow redundante (sou “edições”) oculto; containers com 1rem horizontal. */
@media (max-width: 767.98px) {
  body.confut-usa-refactor .usa-refactor .container {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  body.confut-usa-refactor .usa-metrics-band .usa-metrics-band__container {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  body.confut-usa-refactor .usa-metrics-band .usa-metrics-band__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.75rem;
    row-gap: 1.1rem;
    align-items: stretch;
    justify-items: stretch;
    width: 100%;
  }

  body.confut-usa-refactor .usa-metrics-band .usa-metrics-band__cell {
    max-width: none;
    width: 100%;
    min-width: 0;
    padding-inline: 0.2rem;
    box-sizing: border-box;
  }

  body.confut-usa-refactor .usa-metrics-band .usa-metrics__value {
    font-size: clamp(1.4rem, 5.2vw + 0.45rem, 1.95rem);
    line-height: 1.06;
    font-variant-numeric: tabular-nums;
  }

  body.confut-usa-refactor .usa-metrics-band .usa-metrics__label {
    max-width: none;
    font-size: clamp(0.66rem, 2.6vw, 0.82rem);
    line-height: 1.32;
    padding-inline: 0.1rem;
    text-wrap: balance;
  }

  body.confut-usa-refactor .usa-metrics-band .usa-keywords-marquee__track {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  /* Reduz texto “edições” duplicado: eyebrow repete o tema do h2 (mobile). */
  body.confut-usa-refactor .usa-videos-showcase__eyebrow {
    display: none;
  }

  body.confut-usa-refactor .usa-videos-showcase__head {
    margin-bottom: clamp(1.35rem, 4vw, 2rem);
  }

  body.confut-usa-refactor .usa-videos-showcase__title {
    text-wrap: balance;
  }

  body.confut-usa-refactor .usa-home-speakers__title {
    text-wrap: balance;
  }
}

/* ---------- Hero USA: meta maior, fundo sem imagem, contagem regressiva ---------- */
.usa-hero__meta--prominent {
  font-size: clamp(1.02rem, 3.2vw, 1.2rem);
  line-height: 1.5;
  margin-bottom: 0.35rem;
}

.usa-hero__bg--gradient {
  background-image: none !important;
  background: linear-gradient(145deg, #050810 0%, #0b2345 42%, #060a14 100%);
}

.usa-hero__countdown {
  margin: clamp(1.25rem, 4vw, 2rem) auto clamp(1.1rem, 3vw, 1.65rem);
  max-width: 28rem;
}

.usa-hero__countdown-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
}

.usa-hero__cd-unit {
  min-width: 4.25rem;
  padding: 0.55rem 0.65rem;
  border-radius: var(--usa-radius, 14px);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.usa-hero__cd-val {
  display: block;
  font-size: clamp(1.35rem, 4.5vw, 1.85rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.usa-hero__cd-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* Venue: fallback sem foto */
.usa-venue-showcase__parallax--fallback {
  background-image: none !important;
  background: linear-gradient(160deg, #060a12 0%, var(--usa-navy, #0b2345) 45%, #0a1628 100%);
}

.usa-venue-showcase__location-tag {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--usa-red);
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.usa-social-link__fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}

/* Âncoras programação / speakers com header absoluto */
body.confut-usa-refactor .usa-schedule-page#usa-schedule-program,
body.confut-usa-refactor #usa-speakers-full,
body.confut-usa-refactor #usa-speakers-2026,
body.confut-usa-refactor #usa-speakers-2025 {
  scroll-margin-top: max(6rem, calc(env(safe-area-inset-top, 0px) + 5rem));
}

/* ---------- Programação: arquivo de speakers (sem subnav sticky no topo) ---------- */
.usa-schedule-speakers-wrap {
  position: relative;
  background: linear-gradient(180deg, #060d1c 0%, #0b2345 38%, #0a1628 100%);
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(4rem, 9vw, 5.5rem);
}

/* ---------- Homepage: speakers (2026 marquee infinito) ---------- */
.usa-home-speakers {
  position: relative;
  overflow: hidden;
  padding: clamp(5.25rem, 11vw, 8rem) 0 clamp(4rem, 9vw, 5.5rem);
}

.usa-home-speakers .usa-section__bg {
  background: linear-gradient(145deg, #050810 0%, #0b2345 48%, #0c1830 100%);
}

.usa-home-speakers__head {
  max-width: 40rem;
  margin: 0 auto clamp(2.25rem, 5vw, 3.25rem);
  padding-top: 0.25rem;
}

.usa-home-speakers__eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.65rem;
}

.usa-home-speakers__title {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  color: #fff !important;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.usa-home-speakers__lead {
  font-size: clamp(0.98rem, 2.1vw, 1.12rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto;
}

.usa-home-speakers__marquee {
  position: relative;
  z-index: 1;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(0.35rem, 1.5vw, 0.75rem) 0 clamp(0.5rem, 2vw, 1rem);
  overflow: hidden;
}

.usa-home-speakers__marquee-mask {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 4%,
    #000 96%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 4%,
    #000 96%,
    transparent
  );
}

.usa-home-speakers__marquee-track {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 2.5vw, 1.65rem);
  width: max-content;
  will-change: transform;
  animation: usaHomeSpeakersMarquee 48s linear infinite;
}

.usa-home-speakers__marquee-item {
  flex: 0 0 auto;
  width: clamp(200px, 28vw, 280px);
}

@keyframes usaHomeSpeakersMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .usa-home-speakers__marquee-mask {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .usa-home-speakers__marquee-track {
    animation-duration: 36s;
  }

  .usa-home-speakers__marquee-item {
    width: clamp(180px, 62vw, 240px);
  }
}

.usa-home-speakers__cta {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.usa-home-speakers__cta-btn {
  min-width: min(100%, 16rem);
}

/* Speaker cards (home + grid) */
.usa-speaker-card {
  height: 100%;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center center;
  will-change: transform;
}

.usa-speaker-card__photo {
  border-radius: clamp(14px, 2.2vw, 20px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.usa-speaker-card__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  vertical-align: middle;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .usa-speaker-card--home:hover,
  .usa-speaker-card--grid:hover {
    transform: scale(1.05);
  }
}

.usa-speaker-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, rgba(227, 33, 49, 0.35) 0%, rgba(11, 35, 69, 0.9) 100%);
}

.usa-speaker-card__initials {
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.04em;
}

.usa-speaker-card__body {
  padding: clamp(0.75rem, 2vw, 1rem) 0.25rem 0;
}

.usa-speaker-card__name {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 0.2rem;
}

.usa-speaker-card__role {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.15rem;
}

.usa-speaker-card__org {
  font-size: clamp(0.78rem, 1.8vw, 0.88rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.usa-speaker-card__org--muted {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.usa-speaker-card--missing .usa-speaker-card__photo {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* Full speakers page */
.usa-speakers-full {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  color: #fff;
}

.usa-speakers-full__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.usa-speakers-full__title {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.usa-speakers-full__lead {
  font-size: clamp(0.95rem, 2.1vw, 1.08rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 36rem;
  margin-inline: auto;
}

.usa-speakers-full__year-block {
  margin-bottom: clamp(2.75rem, 7vw, 4rem);
}

.usa-speakers-full__year-block--2025 {
  padding-top: clamp(1.5rem, 4vw, 2.25rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.usa-speakers-full__year-head {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.usa-speakers-full__year-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 0.35rem;
}

.usa-speakers-full__year-title {
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 800;
  margin: 0;
  color: #fff;
}

.usa-speakers-full__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

@media (min-width: 768px) {
  .usa-speakers-full__grid {
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  }
}

.usa-speakers-full__empty {
  font-size: 0.95rem;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .usa-home-speakers__marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100% !important;
    max-width: 72rem;
    margin-inline: auto;
    row-gap: 1.25rem;
  }

  .usa-home-speakers__marquee-item--dup {
    display: none;
  }

  .usa-home-speakers__marquee {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .usa-speaker-card__photo img {
    transition: none;
  }
}

/* =============================================================================
 * Confut USA — credentials page (2-tab switcher: credentials / accommodation)
 * ============================================================================= */
body.confut-usa-refactor #content .usa-cred-page {
  --usa-cred-page-scroll: max(5.5rem, calc(env(safe-area-inset-top, 0px) + 4.5rem));
}

.usa-cred-page__topo {
  position: relative;
  z-index: 2;
  padding: clamp(5.25rem, 11vw, 6.75rem) 0 clamp(1.75rem, 4vw, 2.5rem);
  margin: 0;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.usa-cred-page__topo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 80% at 20% 0%, rgba(227, 33, 49, 0.22) 0%, transparent 55%),
    radial-gradient(90% 70% at 100% 40%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, #050a14 0%, var(--usa-navy, #0b2345) 42%, #0c1a32 100%);
  pointer-events: none;
}

.usa-cred-page__topo-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--usa-red), rgba(255, 255, 255, 0.35), transparent);
  opacity: 0.85;
}

.usa-cred-page__topo .container {
  position: relative;
  z-index: 1;
}

.usa-cred-page__topo-title {
  font-size: clamp(1.75rem, 4.2vw, 2.65rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.12;
  margin: 0 0 0.65rem;
  color: #fff;
}

.usa-cred-page__topo-lead {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.55;
  color: rgba(230, 238, 255, 0.88);
  margin: 0 auto 1.5rem;
  max-width: 32rem;
}

.usa-cred-page__tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.usa-cred-page__tab {
  appearance: none;
  border: none;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.usa-cred-page__tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.usa-cred-page__tab.is-active {
  color: var(--usa-navy, #0b2345);
  background: linear-gradient(180deg, #fff 0%, #e8edf4 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.usa-cred-page__tab:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.usa-cred-page__panels {
  position: relative;
  z-index: 1;
}

.usa-cred-page__panel {
  display: none;
  margin: 0;
}

.usa-cred-page__panel.is-active {
  display: block;
}

.usa-cred-page__section--credentials-inner {
  padding: clamp(2.75rem, 7vw, 4rem) 0 clamp(3.25rem, 8vw, 4.5rem);
  background: linear-gradient(180deg, #fafbfd 0%, #f0f3f8 100%);
}

.usa-cred-page__section--accommodation-inner {
  padding: clamp(2.75rem, 7vw, 4rem) 0 clamp(3.25rem, 8vw, 4.5rem);
  background: linear-gradient(180deg, #eef1f6 0%, #fafbfd 100%);
}

.usa-cred-page__section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.usa-cred-page__section-head--tight {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.usa-cred-page__section-title {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 800;
  color: var(--usa-navy);
  letter-spacing: 0.02em;
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

/* Tema global .dark-scheme força h2/h3 brancos — restaurar contraste nesta página */
body.confut-usa-refactor.event-usa.dark-scheme .usa-cred-page .usa-cred-page__section-title,
body.confut-usa-refactor.event-usa.dark-scheme .usa-cred-page .usa-cred-page__exclusive-title,
body.confut-usa-refactor.event-usa.dark-scheme .usa-cred-page .usa-cred-page__hotel-rates-title {
  color: var(--usa-navy, #0b2345) !important;
}

.usa-cred-page__section-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a5a70;
  margin: 0 0 1rem;
}

.usa-cred-page__batch-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 1.25rem auto 0;
  padding: 1rem 1.75rem 1.15rem;
  max-width: min(100%, 26rem);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff 0%, #f0f4fa 100%);
  border: 1px solid rgba(11, 35, 69, 0.1);
  box-shadow:
    0 16px 40px rgba(8, 18, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.usa-cred-page__batch-chip--compact {
  margin: 0 0 1rem;
  padding: 0.75rem 1.1rem 0.85rem;
  max-width: none;
  align-items: flex-start;
  text-align: left;
}

.usa-cred-page__batch-chip-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--usa-red);
}

.usa-cred-page__batch-chip-value {
  font-size: clamp(1.25rem, 3.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: var(--usa-navy);
}

.usa-cred-pass-row--page {
  --usa-cred-pass-minh: 17.5rem;
}

.usa-cred-pass--page {
  min-height: auto;
}

.usa-cred-pass__tagline {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(248, 250, 252, 0.94);
  margin: 0 0 0.85rem;
}

.usa-cred-pass--corporate .usa-cred-pass__tagline {
  color: rgba(219, 234, 254, 0.96);
}

.usa-cred-pass--page .usa-cred-pass__body {
  padding-bottom: 0.35rem;
}

.usa-cred-pass__price {
  margin: 0 0 0.65rem;
  line-height: 1.1;
}

.usa-cred-pass__price-currency {
  font-size: 1.1rem;
  font-weight: 700;
  vertical-align: top;
  color: rgba(248, 250, 252, 0.9);
  margin-right: 0.15rem;
}

.usa-cred-pass__price-num {
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.usa-cred-pass__price-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(241, 245, 249, 0.88);
}

.usa-cred-pass--page .usa-cred-pass__features {
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(248, 250, 252, 0.96);
}

.usa-cred-pass--page .usa-cred-pass__features li {
  margin-bottom: 0.5rem;
}

.usa-cred-pass--page .usa-cred-pass__features li::before {
  width: 0.42rem;
  height: 0.42rem;
  top: 0.5em;
  background: linear-gradient(135deg, #fff 0%, var(--usa-red) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.usa-cred-page__exclusive {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  border-radius: 18px;
  overflow: hidden;
  background: #fff !important;
  border: 1px solid rgba(11, 35, 69, 0.1);
  box-shadow: 0 20px 48px rgba(8, 18, 42, 0.08);
}

.usa-cred-page__exclusive-inner {
  display: grid;
  grid-template-columns: minmax(0, 5px) minmax(0, 1fr);
}

@media (min-width: 768px) {
  .usa-cred-page__exclusive-inner {
    grid-template-columns: 6px minmax(0, 1fr);
  }
}

.usa-cred-page__exclusive-accent {
  background: linear-gradient(180deg, var(--usa-red) 0%, #c41a28 50%, var(--usa-navy) 100%);
}

.usa-cred-page__exclusive-copy {
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 4vw, 2.5rem);
  text-align: left;
}

.usa-cred-page__exclusive-title {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  color: var(--usa-navy) !important;
  margin: 0 0 0.4rem;
  text-align: left;
}

.usa-cred-page__exclusive-copy .usa-cred-page__exclusive-title {
  text-align: left;
}

.usa-cred-page__hotel-custom .usa-cred-page__exclusive-title,
.usa-cred-page__hotel-rules .usa-cred-page__exclusive-title {
  text-align: center;
}

.usa-cred-page__exclusive-intro {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #5a6a80;
}

.usa-cred-page__exclusive-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

@media (min-width: 992px) {
  .usa-cred-page__exclusive-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 2rem;
  }
}

.usa-cred-page__exclusive-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.45rem;
  border-bottom: 1px solid rgba(11, 35, 69, 0.08);
  font-size: 0.95rem;
  line-height: 1.55;
  color: #1e293b !important;
}

.usa-cred-page__exclusive-list li:last-child {
  border-bottom: none;
}

.usa-cred-page__exclusive-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--usa-red), #f59e0b);
}

.usa-cred-pass__features {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.usa-cred-pass__features li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
}

.usa-cred-pass__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 1px;
  background: linear-gradient(135deg, var(--usa-red), #f59e0b);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.usa-cred-page__hotel-grid {
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
}

.usa-cred-page__hotel-gallery {
  position: relative;
}

.usa-cred-page__hotel-figure {
  margin: 0;
  border-radius: var(--usa-radius, 14px);
  overflow: hidden;
  box-shadow:
    0 22px 48px rgba(8, 18, 42, 0.12),
    0 0 0 1px rgba(11, 35, 69, 0.06);
  background: var(--usa-navy);
}

.usa-cred-page__hotel-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.usa-cred-page__hotel-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 0.65rem;
}

@media (max-width: 575.98px) {
  .usa-cred-page__hotel-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.usa-cred-page__hotel-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #e2e8f0;
  aspect-ratio: 4 / 3;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.usa-cred-page__hotel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.usa-cred-page__hotel-thumb:hover {
  border-color: rgba(227, 33, 49, 0.45);
  transform: translateY(-1px);
}

.usa-cred-page__hotel-thumb.is-active {
  border-color: var(--usa-red);
  box-shadow: 0 8px 20px rgba(227, 33, 49, 0.2);
}

.usa-cred-page__hotel-thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  background: repeating-linear-gradient(
    -45deg,
    #f1f5f9,
    #f1f5f9 8px,
    #e2e8f0 8px,
    #e2e8f0 16px
  );
  border: 1px dashed rgba(11, 35, 69, 0.2);
}

.usa-cred-page__hotel-thumb-placeholder-text {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.35rem;
  color: #64748b;
  line-height: 1.25;
}

.usa-cred-page__hotel-gallery-note {
  font-size: 0.78rem;
  line-height: 1.45;
  color: #64748b;
  margin-top: 0.65rem;
}

.usa-cred-page__hotel-caption {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #5a6a80;
}

.usa-cred-page__rates-panel {
  border-radius: 18px;
  padding: clamp(1.25rem, 3vw, 1.65rem);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%) !important;
  border: 1px solid rgba(11, 35, 69, 0.1);
  box-shadow:
    0 24px 50px rgba(8, 18, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

body.confut-usa-refactor.event-usa.dark-scheme .usa-cred-page__rates-panel {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%) !important;
}

@media (min-width: 992px) {
  .usa-cred-page__rates-panel {
    position: sticky;
    top: max(5.5rem, calc(env(safe-area-inset-top, 0px) + 4.5rem));
  }
}

.usa-cred-page__rates-panel-head {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(11, 35, 69, 0.08);
}

.usa-cred-page__rates-panel-lead {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #5a6a80;
}

.usa-cred-page__hotel-rates-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--usa-navy) !important;
  margin: 0 0 0.75rem;
}

.usa-cred-page__hotel-accordion .accordion-item {
  background: #fff;
  border: 1px solid rgba(11, 35, 69, 0.1);
  border-radius: 12px !important;
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.usa-cred-page__hotel-accordion .accordion-button {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--usa-navy);
  background: #f8fafc;
  box-shadow: none;
}

.usa-cred-page__hotel-accordion .accordion-button:not(.collapsed) {
  color: var(--usa-red);
  background: #fff;
}

/* Tema .dark-scheme pinta .accordion-body a preto — painel hotel sempre claro (padrão Confut USA) */
body.confut-usa-refactor.event-usa.dark-scheme .usa-cred-page__hotel-accordion .accordion-body {
  background: linear-gradient(180deg, #fafbfd 0%, #f4f7fb 100%) !important;
  color: #1e293b !important;
  border-color: rgba(11, 35, 69, 0.08) !important;
}

body.confut-usa-refactor.event-usa.dark-scheme .usa-cred-page__hotel-accordion .accordion-button {
  background: #eef2f7 !important;
  color: var(--usa-navy, #0b2345) !important;
}

body.confut-usa-refactor.event-usa.dark-scheme .usa-cred-page__hotel-accordion .accordion-button:not(.collapsed) {
  background: #fff !important;
  color: var(--usa-red) !important;
  box-shadow: inset 0 -1px 0 rgba(11, 35, 69, 0.06) !important;
}

body.confut-usa-refactor.event-usa.dark-scheme .usa-cred-page__hotel-accordion .accordion-item {
  background: #fff !important;
  border-color: rgba(11, 35, 69, 0.12) !important;
}

body.confut-usa-refactor.event-usa.dark-scheme .usa-cred-page__hotel-accordion .usa-cred-page__rate-row {
  color: #334155 !important;
  border-bottom-color: rgba(11, 35, 69, 0.1) !important;
}

body.confut-usa-refactor.event-usa.dark-scheme .usa-cred-page__hotel-accordion .usa-cred-page__rate-price {
  color: var(--usa-navy, #0b2345) !important;
}

body.confut-usa-refactor.event-usa.dark-scheme .usa-cred-page__rates-panel-lead {
  color: #5a6a80 !important;
}

.usa-cred-page__rate-list {
  margin: 0;
  padding: 0;
}

.usa-cred-page__rate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(11, 35, 69, 0.08);
  font-size: 0.88rem;
  color: #3d4d63;
}

.usa-cred-page__rate-row:last-child {
  border-bottom: none;
}

.usa-cred-page__rate-price {
  font-variant-numeric: tabular-nums;
  color: var(--usa-navy);
}

.usa-cred-page__rate-buy {
  width: 100%;
  margin-top: 0.25rem;
}

.usa-cred-page__hotel-custom {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%) !important;
  border: 1px solid rgba(11, 35, 69, 0.1);
  box-shadow:
    0 20px 48px rgba(8, 18, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.confut-usa-refactor.event-usa.dark-scheme .usa-cred-page__hotel-custom {
  background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%) !important;
}

body.confut-usa-refactor.event-usa.dark-scheme .usa-cred-page__hotel-custom .usa-cred-page__hotel-custom-lead,
body.confut-usa-refactor.event-usa.dark-scheme .usa-cred-page__hotel-custom p {
  color: #4a5a70 !important;
}

/* .usa-btn--outline é pensado para fundo escuro; no cartão claro usar contorno navy */
body.confut-usa-refactor .usa-cred-page__hotel-custom .usa-btn--outline {
  color: var(--usa-navy, #0b2345) !important;
  border-color: rgba(11, 35, 69, 0.35);
  background: rgba(255, 255, 255, 0.95);
}

body.confut-usa-refactor .usa-cred-page__hotel-custom .usa-btn--outline:hover {
  color: var(--usa-red) !important;
  border-color: var(--usa-red);
  background: rgba(227, 33, 49, 0.06);
}

.usa-cred-page__hotel-custom-lead {
  max-width: 32rem;
  margin: 0 auto 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5a70;
}

.usa-cred-page__hotel-rules {
  margin-top: clamp(2rem, 5vw, 2.75rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%) !important;
  border: 1px solid rgba(11, 35, 69, 0.1);
  box-shadow:
    0 20px 48px rgba(8, 18, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.confut-usa-refactor.event-usa.dark-scheme .usa-cred-page__hotel-rules {
  background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%) !important;
}

body.confut-usa-refactor.event-usa.dark-scheme .usa-cred-page__hotel-rules .usa-cred-page__rules-list li {
  color: #334155 !important;
  border-bottom-color: rgba(11, 35, 69, 0.08) !important;
}

.usa-cred-page__rules-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.usa-cred-page__rules-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.25rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4a5a70;
  border-bottom: 1px solid rgba(11, 35, 69, 0.06);
}

.usa-cred-page__rules-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--usa-red);
  opacity: 0.85;
}

@media (max-width: 575.98px) {
  .usa-cred-page__tabs {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
  }

  .usa-cred-page__tab {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* ---------- Patrocinadores macro (home: após newsletter, antes do footer no layout) ----------
   Sem transform/hover scale (evita camadas GPU + reflow). overflow-anchor + clip estáveis no scroll. */
body.confut-usa-refactor .usa-macro-sponsors {
  position: relative;
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  background: linear-gradient(180deg, #0c284e 0%, #0d2b54 42%, #0a1f3d 100%) !important;
  color: rgba(255, 255, 255, 0.95);
  isolation: isolate;
  overflow-x: clip;
  overflow-y: visible;
  overflow-anchor: none;
}

body.confut-usa-refactor .usa-macro-sponsors .container {
  min-width: 0;
  overflow-x: clip;
}

body.confut-usa-refactor .usa-macro-sponsors__title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.35rem;
  overflow-wrap: anywhere;
  max-width: 100%;
}

body.confut-usa-refactor .usa-macro-sponsors__lead {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: anywhere;
}

body.confut-usa-refactor .usa-macro-sponsors__tier {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

body.confut-usa-refactor .usa-macro-sponsors__tier-title {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
  padding-inline: 0.5rem;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  max-width: 100%;
}

body.confut-usa-refactor .usa-macro-sponsors__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 1rem);
  margin-bottom: 0.65rem;
}

body.confut-usa-refactor .usa-macro-sponsors__row--sponsors,
body.confut-usa-refactor .usa-macro-sponsors__row--media {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

body.confut-usa-refactor .usa-macro-sponsors__card {
  flex: 0 1 auto;
  min-width: 0;
}

body.confut-usa-refactor .usa-macro-sponsors__link {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 5.5rem;
  min-width: 7.5rem;
  padding: 0.65rem 1rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: box-shadow 0.2s ease;
}

@media (hover: hover) {
  body.confut-usa-refactor .usa-macro-sponsors__link:hover {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  }
}

body.confut-usa-refactor .usa-macro-sponsors__img {
  display: block;
  max-width: min(11rem, 28vw);
  min-width: 4.5rem;
  min-height: 2.25rem;
  max-height: 3.5rem;
  width: auto;
  height: auto;
  aspect-ratio: 220 / 120;
  object-fit: contain;
}

body.confut-usa-refactor .usa-macro-sponsors__img[src$=".svg"] {
  width: min(10rem, 26vw);
  height: 3rem;
  max-height: none;
  aspect-ratio: auto;
}

@media (max-width: 575.98px) {
  body.confut-usa-refactor .usa-macro-sponsors__img {
    max-width: min(9rem, 42vw);
    min-height: 2rem;
    max-height: 3rem;
  }

  body.confut-usa-refactor .usa-macro-sponsors__link {
    min-height: 4.75rem;
    min-width: 6.5rem;
    padding: 0.5rem 0.65rem;
  }
}

