/* ABOZ Congresso — HostGator static build */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-deep: #03063d;
  --bg-dark: #080a17;
  --bg-mid: #0c0c31;
  --grad-start: #9e66ff;
  --grad-mid: #00d4ff;
  --grad-end: #7affd3;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.18);
  --btn-grad: linear-gradient(135deg, #7b2eff 0%, #00d4ff 100%);
  --icon-grad: linear-gradient(99deg, #7b2eff 0%, #00d4ff 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Utility classes ─────────────────────────────────────── */

.grad-text {
  background: linear-gradient(
    90deg,
    var(--grad-start),
    var(--grad-mid) 50%,
    var(--grad-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

/* ── Scroll reveal ───────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── Modal de Palestrante (Overlay / Pop-up) ─────────────────── */

.speaker-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(3, 6, 61, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn 0.25s ease-out forwards;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.speaker-modal-card {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 85vh;
  overflow-y: auto;
  background: #080a24;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(0, 212, 255, 0.15);
  animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.speaker-modal-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7b2eff, #00d4ff, #7affd3);
  border-radius: 20px 20px 0 0;
}

.speaker-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}

.speaker-modal-close:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.5);
  color: #00d4ff;
  transform: rotate(90deg);
}

.speaker-modal-header {
  display: flex;
  gap: 20px;
  align-items: stretch;
  margin-top: 8px;
}

.speaker-modal-photo-wrap {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: flex-start;
  border: 2px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    135deg,
    rgba(123, 46, 255, 0.25) 0%,
    rgba(0, 212, 255, 0.25) 100%
  );
}

.speaker-modal-photo-cutout {
  width: 120px;
  min-height: 150px;
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.speaker-modal-photo-cutout .speaker-modal-photo {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
}

.speaker-modal-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.speaker-modal-header-info {
  flex: 1;
  min-width: 0;
}

.speaker-modal-name {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.15;
  margin-bottom: 4px;
}

.speaker-modal-role {
  font-size: 0.85rem;
  color: #00d4ff;
  font-weight: 600;
  margin-bottom: 10px;
}

.speaker-modal-talk-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.9);
  line-height: 1.4;
}

.speaker-modal-talk-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.speaker-modal-talk-text {
  min-width: 0;
}

.speaker-modal-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.15),
    rgba(0, 212, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  margin: 24px 0 20px;
}

.speaker-modal-bio-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grad-mid);
  margin-bottom: 14px;
}

.speaker-modal-bio-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.speaker-modal-bio-item {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.speaker-modal-bullet {
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: bold;
}

.speaker-modal-bio-empty {
  font-size: 0.88rem;
  color: rgba(148, 163, 184, 0.7);
  font-style: italic;
}

@media (max-width: 600px) {
  .speaker-modal-photo-cutout {
    align-self: center;
    width: 130px;
    height: 170px;
    min-height: 0;
  }
  .speaker-modal-card {
    padding: 24px 18px;
    max-height: 90vh;
  }
  .speaker-modal-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .speaker-modal-photo-wrap {
    width: 80px;
    height: 80px;
  }
  .speaker-modal-name {
    font-size: 1.35rem;
  }
  .speaker-modal-talk-badge {
    text-align: left;
  }
}



/* ===== hero ===== */
.hero-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero-bgBase {
  position: absolute;
  inset: 0;
  background: #03063d;
}

.hero-bgImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.8;
}

.hero-bgOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(3, 6, 61, 0.96) 40%,
    rgba(3, 6, 61, 0.5) 70%,
    transparent 100%
  );
}

/* ── Logo ── */
.hero-logoWrap {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-logo {
  height: clamp(96px, 13vh, 170px);
  width: auto;
}

/* ── Conteúdo ── */
.hero-content {
  position: relative;
  z-index: 2;
  left: clamp(24px, 8vw, 268px);
  max-width: min(680px, 90vw);
  padding-top: clamp(140px, 18vh, 200px);
  padding-bottom: clamp(48px, 6vh, 80px);
}

/* Eyebrow acima do título */
.hero-eyebrow {
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--grad-mid);
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  color: #f8fafc;
  margin-bottom: 16px;
  line-height: 1.05;
}

/* Linha de pilares */
.hero-pillsLabel {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.55);
  margin-bottom: 24px;
}

/* Data e local */
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-metaItem {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(248, 250, 252, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-metaNota {
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(248, 250, 252, 0.5);
  font-weight: 400;
}

.hero-btnWrap {
  margin-bottom: 36px;
}

/* ── Subtítulo + Tags ── */
.hero-subtitleBlock {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  max-width: 600px;
}

.hero-subtitleText {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}

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

.hero-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(248, 250, 252, 0.8);
  letter-spacing: 0.03em;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}

.hero-tag:hover {
  background: rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.35);
  color: var(--grad-mid);
}

/* ── Tablet ── */
@media (min-width: 601px) and (max-width: 1024px) {
  .hero-hero {
    min-height: auto;
  }

  .hero-bgImg {
    object-position: center;
  }

  .hero-bgOverlay {
    background: linear-gradient(
      to bottom,
      rgba(3, 6, 61, 0.72) 0%,
      rgba(3, 6, 61, 0.55) 55%,
      rgba(3, 6, 61, 0.8) 100%
    );
  }

  .hero-content {
    left: 0;
    margin: 0 auto;
    text-align: center;
    max-width: min(620px, 92vw);
    padding-top: 32px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: clamp(48px, 8vh, 100px);
  }

  .hero-meta {
    align-items: center;
  }

  .hero-metaItem {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-subtitleBlock {
    margin: 0 auto;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero-logoWrap {
    position: relative;
    left: auto;
    transform: none;
    text-align: center;
    margin: 40px 0 20px;
  }
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .hero-bgImg {
    top: 0;
    left: 0;
    right: 0;
    height: 40vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
  }

  .hero-bgOverlay {
    background: linear-gradient(
      to bottom,
      rgba(3, 6, 61, 0.15) 0%,
      rgba(3, 6, 61, 0.5) 34vh,
      rgba(3, 6, 61, 0.95) 44vh,
      #03063d 50vh
    );
  }

  .hero-logoWrap {
    top: 40vh;
    margin-top: 14px;
  }

  .hero-logo {
    height: clamp(80px, 11vh, 130px);
  }

  .hero-content {
    left: 0;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: calc(51vh + 42px);
    max-width: 100%;
    text-align: center;
  }

  .hero-meta {
    gap: 8px;
    align-items: center;
  }

  .hero-metaItem {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-subtitleBlock {
    margin: 0 auto;
  }

  .hero-tags {
    justify-content: center;
  }
}


/* ===== video ===== */
.video-section {
  background: linear-gradient(180deg, #080a17 0%, #0c0c31 50%, #080a17 100%);
  padding: 96px 0;
  overflow: hidden;
}

.video-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  gap: 72px;
  align-items: center;
}

.video-videoWrap {
  flex: 0 0 auto;
  position: relative;
  width: min(480px, 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 64px rgba(0, 212, 255, 0.15);
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.3s;
}

.video-videoVisible {
  opacity: 1;
}

.video-playBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7b2eff, #00d4ff);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

.video-playBtn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 56px rgba(0, 212, 255, 0.65);
}

.video-text {
  flex: 1;
}

.video-title {
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  margin-bottom: 24px;
}

.video-body {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .video-title { text-align: center; }
}

/* ── Mobile ── */
@media (max-width: 820px) {
  .video-inner {
    flex-direction: column;
    gap: 40px;
  }

  .video-videoWrap {
    width: 100%;
  }
}


/* ===== vantagens ===== */
.vantagens-section {
  background: var(--bg-deep);
  position: relative;
  padding: 80px clamp(24px, 5vw, 80px);
}

.vantagens-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;

  grid-template-columns: repeat(4, 339px); /* 👈 FIXO */
  justify-content: center;
  gap: 16px;
}

.vantagens-card {
  padding: 36px 24px;
  text-align: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  width: 100%;
}

.vantagens-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.1);
}

.vantagens-iconWrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.vantagens-emoji {
  width: 44px;
  height: 44px;
  display: block;
  color: var(--grad-mid);
}

.vantagens-cardTitle {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 10px;
}

.vantagens-cardDesc {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (max-width: 1400px) {
  .vantagens-grid {
    grid-template-columns: repeat(3, 339px);
  }
}

@media (max-width: 1050px) {
  .vantagens-grid {
    grid-template-columns: repeat(2, 339px);
  }
}

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

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

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


/* ===== momento ===== */
.momento-section {
  position: relative;
  background-color: var(--bg-mid);
  background-image: url('../assets/pq_agora_section_bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: clamp(72px, 9vw, 100px) 24px clamp(80px, 10vw, 110px);
  overflow: visible;
  z-index: 2;
}

.momento-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 65, 0.18);
  pointer-events: none;
  z-index: 1;
}

.momento-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.momento-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grad-mid);
  margin-bottom: 16px;
}

/* Título */
.momento-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-main);
  margin-bottom: 48px;
  line-height: 1.1;
}

/* Parágrafos */
.momento-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.momento-body p {
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.85;
  color: var(--text-muted);
}

/* Linha gradiente decorativa no final */
.momento-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--grad-start), var(--grad-mid), var(--grad-end));
  border-radius: 999px;
  margin: 52px auto 0;
}

/* ── Globos Flutuantes com Parallax e Brilho Azul ───────────────────────── */
.momento-globoWrap {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  transition: transform 0.1s linear;
  will-change: transform;
}

/* Globo Médio (Cima - Direita) */
.momento-globoTop {
  top: -60px;
  right: clamp(10px, 6vw, 100px);
  width: clamp(130px, 15vw, 200px);
}

/* Globo Pequeno (Baixo - Esquerda) */
.momento-globoBottom {
  bottom: -50px;
  left: clamp(10px, 6vw, 90px);
  width: clamp(80px, 10vw, 130px);
}

.momento-globoImg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.75)) drop-shadow(0 0 45px rgba(0, 212, 255, 0.4));
}

/* Animação Flutuante 1 (Top) */
.momento-globoFloat1 {
  animation: floatAnim1 5s ease-in-out infinite;
}

/* Animação Flutuante 2 (Bottom - levemente dessincronizada) */
.momento-globoFloat2 {
  animation: floatAnim2 6.5s ease-in-out infinite;
}

@keyframes floatAnim1 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(4deg);
  }
}

@keyframes floatAnim2 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(14px) rotate(-5deg);
  }
}

/* Glow de fundo */
.momento-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    rgba(123, 46, 255, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 600px) {
  .momento-section {
    padding: 64px 20px 72px;
    background-position: center center;
  }

  .momento-title {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
    margin-bottom: 32px;
  }

  .momento-body {
    gap: 16px;
  }

  .momento-body p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .momento-divider {
    margin-top: 36px;
  }

  .momento-globoTop {
    top: -35px;
    right: 5px;
    width: 90px;
  }

  .momento-globoBottom {
    bottom: -30px;
    left: 5px;
    width: 60px;
  }
}

@media (max-width: 380px) {
  .momento-section {
    padding-inline: 16px;
  }

  .momento-eyebrow {
    font-size: 0.7rem;
  }

  .momento-globoWrap {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .momento-globoWrap {
    transition: none;
  }

  .momento-globoImg {
    animation: none;
  }
}


/* ===== content ===== */
.content-section {
  background: linear-gradient(
    180deg,
    #080a17 0%,
    #0c0c31 50%,
    #080a17 100%
  ); /* Keep same background base */
  padding: 96px 0 0 0; /* Remove bottom padding so doctors touch bottom */
  overflow: hidden;
  position: relative;
}

.content-glowRight {
  position: absolute;
  top: -450px;
  right: -450px;
  transform: translateY(-50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(123, 46, 255, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.content-glowLeft {
  position: absolute;
  bottom: -450px;
  left: -450px;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.2) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px) 0; /* No bottom padding */
  display: flex;
  align-items: flex-end;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.content-doctors {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  gap: -64px;
}

.content-doc2 {
  width: clamp(150px, 18vw, 240px);
  object-fit: cover;
  display: block;
}

.content-doc1 {
  width: clamp(160px, 20vw, 260px);
  object-fit: cover;
  display: block;
}

.content-list {
  flex: 1;
  padding-bottom: 96px; /* Add padding back to text content so it doesn't touch bottom */
}

.content-title {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  margin-bottom: 32px;
}

.content-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-topic {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.content-check {
  flex-shrink: 0;
  margin-top: 1px;
}

.content-topic span {
  color: rgba(248, 250, 252, 0.9);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.65;
}

@media (max-width: 820px) {
  .content-inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .content-doctors {
    justify-content: center;
  }
}


/* ===== experience ===== */
.experience-section {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 120px) 24px;
  background: var(--bg-deep);
}

.experience-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}

.experience-intro {
  max-width: 590px;
  margin-bottom: 42px;
}

.experience-eyebrow {
  color: var(--grad-mid);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.experience-title {
  font-size: clamp(2.3rem, 4.6vw, 4.1rem);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  margin-bottom: 20px;
}

.experience-card,
.experience-themesCard {
  padding: clamp(24px, 3.2vw, 38px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.035)
  );
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.experience-cardHeader {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 25px;
}

.experience-cardHeader h3 {
  color: var(--text-main);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.15;
}

.experience-icon {
  display: inline-block;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.experience-highlightList {
  display: grid;
  gap: 15px;
  list-style: none;
}

.experience-highlightList li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(248, 250, 252, 0.9);
  font-size: 0.98rem;
  line-height: 1.35;
}

.experience-highlightList .experience-icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

.experience-pills,
.experience-themeTags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.experience-pills span,
.experience-themeTags span {
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.07);
  color: rgba(248, 250, 252, 0.92);
  font-size: 0.88rem;
  line-height: 1.25;
  padding: 9px 12px;
}

.experience-themesCard {
  position: relative;
  overflow: hidden;
}

.experience-themesCard::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(122, 255, 211, 0.15),
    transparent 67%
  );
  pointer-events: none;
}

.experience-themesCard p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-top: 25px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.experience-glow {
  position: absolute;
  top: 6%;
  left: -330px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(123, 46, 255, 0.17),
    transparent 67%
  );
}

@media (max-width: 1024px) {
  .experience-intro {
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .experience-section {
    padding-inline: 20px;
  }
  .experience-intro {
    margin-bottom: 44px;
  }
  .experience-grid {
    grid-template-columns: 1fr;
  }
  .experience-card,
  .experience-themesCard {
    padding: 25px 20px;
  }
}


/* ===== premium ===== */
.premium-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 124px) 24px;
  background: #070a25;
}

.premium-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 75% 50%,
      rgba(0, 212, 255, 0.22),
      transparent 35%
    ),
    radial-gradient(
      circle at 75% 60%,
      rgba(123, 46, 255, 0.18),
      transparent 40%
    ),
    radial-gradient(circle at 12% 0%, rgba(123, 46, 255, 0.22), transparent 31%);
  pointer-events: none;
}

.premium-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 7vw, 100px);
  max-width: 1120px;
  margin: 0 auto;
}

.premium-content {
  max-width: 590px;
  order: 1; /* garante conteúdo à esquerda */
}

.premium-eyebrow {
  color: #7affd3;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.premium-title {
  display: flex;
  flex-direction: column;
  color: var(--text-main);
  font-size: clamp(3rem, 6.2vw, 5.75rem);
  letter-spacing: -0.02em;
}

.premium-description {
  max-width: 510px;
  margin: 25px 0 28px;
  color: rgba(248, 250, 252, 0.84);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.65;
}

.premium-pricingGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.premium-priceCard {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.premium-priceCard:hover {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.premium-priceLabel {
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.premium-priceValue {
  color: var(--text-main);
  font-size: 1.08rem;
  font-weight: 800;
}

.premium-limited {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 9px 14px;
  border: 1px solid rgba(122, 255, 211, 0.35);
  border-radius: 999px;
  background: rgba(122, 255, 211, 0.08);
  color: #b9ffe7;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.premium-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7affd3;
  box-shadow: 0 0 0 0 rgba(122, 255, 211, 0.7);
  animation: pulse 2s infinite;
}

.premium-ctaButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 16px 36px;
  border-radius: 999px;
  background: var(--btn-grad);
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(0, 212, 255, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.premium-ctaButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 212, 255, 0.35);
}

.premium-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: end;
  min-height: 560px;
  order: 2; /* garante imagem à direita */
}

.premium-imageAura {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(320px, 85%, 480px);
  aspect-ratio: 1;
  border: 1px solid rgba(122, 255, 211, 0.28);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.28) 0%,
    rgba(123, 46, 255, 0.16) 48%,
    transparent 72%
  );
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.18);
  pointer-events: none;
}

.premium-image {
  position: absolute;
  right: 0;
  bottom: -124px;
  width: min(100%, 470px);
  max-height: 680px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.38));
  animation: float 5.5s ease-in-out infinite;
}

.premium-topLine {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--grad-mid), transparent);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(122, 255, 211, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(122, 255, 211, 0);
  }
}

@media (min-width: 1025px) {
  .premium-imageAura {
    width: clamp(380px, 92%, 560px);
    top: 42%;
  }

  .premium-image {
    width: min(115%, 560px);
    max-height: 760px;
    bottom: -150px;
  }
}

@media (max-width: 1024px) {
  .premium-limited {
    margin-left: auto;
    margin-right: auto;
  }
  .premium-eyebrow {
    text-align: left;
  }
  .premium-title {
    align-items: left;
  }
}

@media (max-width: 780px) {
  .premium-eyebrow {
    text-align: center;
  }
  .premium-title {
    align-items: center;
  }
  .premium-section {
    padding-inline: 20px;
    padding-bottom: 0;
  }
  .premium-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .premium-content {
    order: 1;
    text-align: center;
    margin: 0 auto;
  }
  .premium-pricingGrid {
    text-align: left;
  }
  .premium-limited {
    margin-left: auto;
    margin-right: auto;
  }
  .premium-ctaButton {
    width: 100%;
  }
  .premium-visual {
    order: 2;
    min-height: 400px;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }
  .premium-image {
    top: 24px;
    bottom: 0;
  }
}

@media (max-width: 480px) {
  .premium-pricingGrid {
    grid-template-columns: 1fr;
  }
  .premium-visual {
    min-height: 350px;
  }
  .premium-image {
    top: 24px;
    width: 360px;
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-image,
  .premium-dot {
    animation: none;
  }
}


/* ===== habilitacao ===== */
.habilitacao-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 124px) 24px;
  background: #070a25;
}

.habilitacao-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 40%,
      rgba(0, 212, 255, 0.16),
      transparent 38%
    ),
    radial-gradient(
      circle at 85% 60%,
      rgba(123, 46, 255, 0.16),
      transparent 42%
    );
  pointer-events: none;
}

.habilitacao-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 7vw, 90px);
  max-width: 1120px;
  margin: 0 auto;
}

.habilitacao-content {
  max-width: 560px;
  order: 2;
}

.habilitacao-warning {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 184, 92, 0.4);
  border-radius: 999px;
  background: rgba(255, 184, 92, 0.1);
  color: #ffd6a0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.habilitacao-warningIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffb85c;
  color: #070a25;
  font-size: 0.72rem;
  font-weight: 900;
}

.habilitacao-eyebrow {
  color: #7affd3;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.habilitacao-title {
  color: var(--text-main);
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.habilitacao-hours {
  display: block;
  color: var(--text-main);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.habilitacao-description {
  max-width: 500px;
  margin-bottom: 16px;
  color: rgba(248, 250, 252, 0.84);
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.65;
}

.habilitacao-note {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-style: italic;
}

.habilitacao-ctaWrap {
  margin-top: 28px;
}

.habilitacao-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  order: 1;
}

.habilitacao-globeAura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 80%, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.22) 0%,
    rgba(123, 46, 255, 0.14) 48%,
    transparent 72%
  );
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.16);
  pointer-events: none;
}

.habilitacao-globe {
  position: relative;
  width: min(100%, 420px);
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.38));
  animation: spin 40s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 780px) {
  .habilitacao-section {
    padding-inline: 20px;
  }
  .habilitacao-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .habilitacao-content {
    order: 1;
    margin: 0 auto;
  }
  .habilitacao-warning {
    margin-left: auto;
    margin-right: auto;
  }
  .habilitacao-description,
  .habilitacao-note {
    margin-left: auto;
    margin-right: auto;
  }
  .habilitacao-visual {
    order: 2;
    min-height: 320px;
  }
  .habilitacao-globe {
    width: min(100%, 300px);
  }

  .habilitacao-ctaWrap {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .habilitacao-visual {
    min-height: 260px;
  }
  .habilitacao-globe {
    width: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .habilitacao-globe {
    animation: none;
  }
}


/* ===== speakers ===== */
/* ── Seção wrapper ───────────────────────────────────────────── */
.speakers-section {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  background: var(--bg-dark);
}

.speakers-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Cabeçalho ───────────────────────────────────────────────── */
.speakers-header {
  text-align: center;
  margin-bottom: 64px;
}

.speakers-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grad-mid);
  margin-bottom: 12px;
}

.speakers-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--text-main);
  margin-bottom: 16px;
}

.speakers-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Grid de cards ───────────────────────────────────────────── */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.speakers-loadMore {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.speakers-loadedCard {
  animation: cardReveal .45s ease-out both;
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Card Unificado ──────────────────────────────────────────── */
.speakers-card {
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  height: 100%;
  min-height: 185px;
  cursor: pointer;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  border-radius: 16px;
  box-sizing: border-box;
}

.speakers-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow:
    0 16px 40px rgba(0, 212, 255, 0.15),
    0 0 20px rgba(123, 46, 255, 0.12);
  background: rgba(255, 255, 255, 0.09);
}

/* ── Foto / Avatar ───────────────────────────────────────────── */
.speakers-photoWrap {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.2);
}

.speakers-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.speakers-initialsAvatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7b2eff 0%, #00d4ff 100%);
  color: #fff;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
}

/* ── Cutout / Palestrantes com Imagem Recortada ──────────────── */
.speakers-cutoutCard {
  position: relative;
  overflow: visible !important;
}

.speakers-cutoutPhotoWrap {
  position: absolute;
  bottom: 0;
  left: -20px;
  height: calc(100% + 28px);
  max-height: 225px;
  width: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
  z-index: 2;
}

.speakers-cutoutPhoto {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom left;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.speakers-card:hover .speakers-cutoutPhoto {
  transform: scale(1.04);
  filter: drop-shadow(0 10px 20px rgba(0, 212, 255, 0.35));
}

.speakers-cutoutInfo {
  margin-left: 95px;
}

/* ── Informações ─────────────────────────────────────────────── */
.speakers-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.speakers-name {
  font-size: 1rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 2px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.speakers-role {
  font-size: 0.78rem;
  color: #00d4ff;
  font-weight: 600;
  margin-bottom: 8px;
}

.speakers-talk {
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.85);
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.speakers-pending {
  font-style: italic;
  color: rgba(148, 163, 184, 0.6);
}

/* ── Tag de Mini Currículo ───────────────────────────────────── */
.speakers-tagWrap {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
}

.speakers-tagBtn {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Acender a tag quando o card estiver com hover (estilo igual header) */
.speakers-card:hover .speakers-tagBtn {
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.45);
  box-shadow: 0 0 14px rgba(0, 212, 255, 0.25);
}

/* ── Decoração de fundo ──────────────────────────────────────── */
.speakers-bgGlow1 {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(123, 46, 255, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.speakers-bgGlow2 {
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ── Responsividade & Media Queries ──────────────────────────── */

/* Desktop Grande (1200px +) */
@media (min-width: 1200px) {
  .speakers-section {
    padding: 100px 0 120px;
  }
  .speakers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* Desktop Médio / Tablet (768px a 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .speakers-section {
    padding: 80px 0 100px;
  }
  .speakers-header {
    margin-bottom: 48px;
  }
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Tablet pequeno / Mobile grande (481px a 767px) */
@media (max-width: 767px) and (min-width: 481px) {
  .speakers-section {
    padding: 64px 0 80px;
  }
  .speakers-header {
    margin-bottom: 40px;
  }
  .speakers-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
  }
  .speakers-card {
    padding: 16px;
    gap: 14px;
    min-height: 170px;
  }
  .speakers-photoWrap {
    width: 68px;
    height: 68px;
  }
}

/* Mobile pequeno (< 480px) */
@media (max-width: 480px) {
  .speakers-section {
    padding: 56px 0 72px;
  }
  .speakers-inner {
    padding: 0 16px;
  }
  .speakers-header {
    margin-bottom: 36px;
  }
  .speakers-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .speakers-loadMore {
    margin-top: 32px;
  }
  .speakers-card {
    padding: 16px;
    gap: 14px;
    min-height: auto;
  }
  .speakers-photoWrap {
    width: 64px;
    height: 64px;
  }
  .speakers-cutoutPhotoWrap {
    left: -12px;
    height: calc(100% + 20px);
    width: 110px;
  }
  .speakers-cutoutInfo {
    margin-left: 80px;
  }
}


/* ===== payment ===== */
.payment-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 112px;
  background: var(--bg-deep);
}

.payment-section::before {
  content: '';
  position: absolute;
  top: -160px;
  left: 50%;
  width: 620px;
  height: 360px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 212, 255, .12), transparent 68%);
  pointer-events: none;
}

.payment-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
  text-align: center;
}

.payment-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.payment-sub {
  max-width: 620px;
  margin: 0 auto 32px;
  color: #94a3b8;
  font-size: clamp(.95rem, 1.1vw, 1.05rem);
  line-height: 1.75;
}

.payment-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.payment-primaryBtn, .payment-secondaryBtn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .045em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.payment-primaryBtn {
  border: 0;
  background: linear-gradient(135deg, #7b2eff, #00d4ff);
  box-shadow: 0 8px 28px rgba(0, 212, 255, .24);
  color: #fff;
  cursor: pointer;
}

.payment-secondaryBtn {
  border: 1px solid rgba(0, 212, 255, .48);
  background: rgba(0, 212, 255, .08);
  color: #c9f7ff;
}

.payment-primaryBtn:hover, .payment-secondaryBtn:hover {
  transform: translateY(-2px);
}

.payment-primaryBtn:hover { box-shadow: 0 12px 32px rgba(0, 212, 255, .38); }
.payment-secondaryBtn:hover { background: rgba(0, 212, 255, .16); }

@media (max-width: 480px) {
  .payment-section { padding: 76px 0 84px; }
  .payment-actions { align-items: stretch; flex-direction: column; }
  .payment-primaryBtn, .payment-secondaryBtn { width: 100%; }
}


/* ===== carousel ===== */
.carousel-section {
  background: linear-gradient(180deg, #080a17 0%, #0c0c31 50%, #080a17 100%);
  padding: 96px 0;
  overflow: hidden;
}

.carousel-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.carousel-title {
  font-size: clamp(1.8rem, 3vw, 3rem);
  text-align: center;
  margin-bottom: 48px;
}

.carousel-carouselWrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 12px;
  flex: 1;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.carousel-slide:hover .carousel-img {
  transform: scale(1.03);
}

.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f8fafc;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.carousel-arrow:hover {
  background: rgba(0, 212, 255, 0.15);
  transform: scale(1.08);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.carousel-dot {
  height: 8px;
  border-radius: 9999px;
  width: 8px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}

.carousel-dotActive {
  width: 28px;
  background: linear-gradient(90deg, #7b2eff, #00d4ff);
}

/* Lightbox Styles */
.carousel-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 4, 34, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.carousel-lightbox.carousel-open {
  opacity: 1;
  pointer-events: auto;
}

.carousel-lightboxClose {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s;
}

.carousel-lightboxClose:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.carousel-lightboxImgWrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.carousel-lightboxImg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.carousel-lightboxPrev,
.carousel-lightboxNext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s;
}

.carousel-lightboxPrev {
  left: 32px;
}

.carousel-lightboxNext {
  right: 32px;
}

.carousel-lightboxPrev:hover,
.carousel-lightboxNext:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 720px) {
  .carousel-lightboxClose {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
  
  .carousel-lightboxPrev {
    left: 16px;
  }
  
  .carousel-lightboxNext {
    right: 16px;
  }
  
  .carousel-lightboxImgWrap {
    padding: 64px 16px;
  }
}


/* ===== about ===== */
.about-section {
  background: var(--bg-deep);
  padding: 96px 0;
  overflow: hidden;
  position: relative;
  min-height: 360px;
}

.about-catedral {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: min(52%, 560px);
  opacity: 0.85;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 72%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 72%);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.about-content {
  max-width: 480px;
}

.about-logo {
  height: 56px;
  width: auto;
  margin-bottom: 28px;
  display: block;
}

.about-title {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  margin-bottom: 20px;
}

.about-body {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.8;
}

@media (max-width: 720px) {
  .about-catedral {
    width: 90%;
    opacity: 0.12;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .about-inner {
    justify-content: center;
  }

  .about-content {
    text-align: center;
    max-width: 100%;
  }

  .about-logo {
    margin: 0 auto 28px;
  }
}


/* ===== hosting ===== */
.hosting-section {
  position: relative;
  background: var(--bg-deep);
  padding: 96px 24px;
  overflow: hidden;
}

.hosting-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 960px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.14),
    transparent
  );
}

.hosting-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.hosting-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.hosting-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grad-mid);
  margin-bottom: 12px;
}

.hosting-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-main);
  margin-bottom: 16px;
}

.hosting-subtitle {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.65;
}

.hosting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.hosting-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.hosting-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(255, 255, 255, 0.09);
}

.hosting-category {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.hosting-categoryAirbnb {
  color: #ff6b8a;
  background: rgba(255, 107, 138, 0.12);
  border: 1px solid rgba(255, 107, 138, 0.35);
}

.hosting-categoryHotel {
  color: #7affd3;
  background: rgba(122, 255, 211, 0.1);
  border: 1px solid rgba(122, 255, 211, 0.3);
}

.hosting-hotelName {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 4px;
  line-height: 1.35;
}

.hosting-address {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.hosting-distance {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hosting-description {
  font-size: 0.84rem;
  color: rgba(248, 250, 252, 0.75);
  font-style: italic;
  margin-top: 4px;
  line-height: 1.5;
}

.hosting-cardFooter {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hosting-contact {
  font-size: 0.84rem;
  color: #00d4ff;
  font-weight: 600;
}

.hosting-siteLink {
  font-size: 0.8rem;
  color: var(--grad-mid);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hosting-siteLink:hover {
  color: #00d4ff;
  text-decoration: underline;
}

.hosting-rating {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffd166;
  margin-top: 2px;
}

.hosting-inlineIcon {
  display: inline-flex;
  vertical-align: -2px;
  margin-right: 5px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .hosting-section {
    padding: 72px 18px;
  }
  .hosting-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== sponsors ===== */
.sponsors-section {
  position: relative;
  background: var(--bg-dark);
  padding: 90px 24px 100px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sponsors-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.sponsors-header {
  margin-bottom: 56px;
}

.sponsors-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grad-mid);
  margin-bottom: 12px;
}

.sponsors-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--text-main);
  margin-bottom: 16px;
}

.sponsors-subtitle {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Tier de patrocinadores */
.sponsors-tierGroup {
  margin-bottom: 44px;
}

.sponsors-tierGroup:last-of-type {
  margin-bottom: 40px;
}

.sponsors-tierLabel {
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grad-mid);
  margin-bottom: 20px;
}
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 260px));
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.sponsors-card {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.sponsors-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 12px 32px rgba(0, 212, 255, 0.12);
}

.sponsors-logoImg {
  max-width: 80%;
  max-height: 60px;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.05);
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.sponsors-card:hover .sponsors-logoImg {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* Fallback com o nome do patrocinador */
.sponsors-textLogo {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #f8fafc;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(148, 163, 184, 0.7)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.sponsors-moreNote {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.8;
  letter-spacing: 0.02em;
}

/* Glow de fundo */
.sponsors-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 212, 255, 0.06) 0%,
    rgba(123, 46, 255, 0.04) 50%,
    transparent 75%
  );
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 600px) {
  .sponsors-section {
    padding: 64px 18px 72px;
  }

  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .sponsors-card {
    height: 90px;
    padding: 16px;
  }

  .sponsors-logoImg {
    max-height: 48px;
  }

  .sponsors-textLogo {
    font-size: 1rem;
  }
}


/* ===== footer ===== */
.footer-footer {
  background: linear-gradient(180deg, #080a17 0%, #0c0c31 50%, #0a0e1f 100%);
  padding: 96px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.footer-heading {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: #f8fafc;
  margin-bottom: 44px;
  line-height: 1.15;
}

.footer-btnWrap {
  margin-bottom: 40px;
}

.footer-contacts {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.footer-contactLink {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contactLink:hover {
  color: #00d4ff;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.footer-logoAboz {
  height: 52px;
  width: auto;
}

.footer-logoCongresso {
  height: 68px;
  width: auto;
}

.footer-copy {
  color: rgba(148, 163, 184, 0.45);
  font-size: 0.75rem;
}


/* ===== gradbtn ===== */
.gradbtn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, #7b2eff 0%, #00d4ff 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.2);
}

.gradbtn-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(0, 212, 255, 0.35);
}

.gradbtn-btn:active {
  transform: translateY(0);
}

.gradbtn-full {
  width: 100%;
}


.carousel-lightbox[hidden] {
  display: none !important;
}
