@import 'reset.css';
@import 'variables.css';

@font-face {
  font-family: 'Iowan Old Style';
  src: url('../assets/fonts/iowanoldst-bt/bitstream-iowan-old-style-bt-586c36a8d7712.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Iowan Old Style';
  src: url('../assets/fonts/iowanoldst-bt/bitstream-iowan-old-style-italic-bt-586c3740dc396.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Iowan Old Style';
  src: url('../assets/fonts/iowanoldst-bt/bitstream-iowan-old-style-bold-bt-586c371d8d669.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Iowan Old Style';
  src: url('../assets/fonts/iowanoldst-bt/bitstream-iowan-old-style-bold-italic-bt-586c37701cb62.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Iowan Old Style';
  src: url('../assets/fonts/iowanoldst-bt/bitstream-iowan-old-style-black-bt-586c36e930225.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   BASE
   ============================================================ */
body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-hero);
  color: var(--color-white);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.gold-text {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--color-topbar-bg);
  border-bottom: 3px solid var(--color-topbar-border);
  padding: 10px 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-size: 15px;
  color: #1a1a1a;
}

.topbar__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.topbar__countdown {
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.topbar__label {
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 95vh;
  background-image: url('../assets/images/backgroundSession1.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 18, 45, 0.88) 0%, rgba(8, 18, 45, 0.55) 55%, rgba(8, 18, 45, 0.1) 100%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 60px 40px;
  max-width: 960px;
  margin: 0 auto;
}

/* Left column */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 520px;
  width: 100%;
}

.hero__logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero__logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.hero__logo-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.3);
}

.hero__title {
  font-family: 'Iowan Old Style', Georgia, serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  background: linear-gradient(90deg, #C49A38 0%, #F7D06A 40%, #FFE49A 65%, #E8B84B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 12px rgba(245, 196, 111, 0.45));
}

.hero__title .gold-text {
  display: inline;
}

.hero__description {
  font-family: var(--font-primary);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.65;
  color: #ffffff;
  max-width: 480px;
}

.hero__info-boxes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.info-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #172139 0%, #4E5F87 100%);
  border-radius: 6px;
  font-size: 13px;
  color: var(--color-white);
  line-height: 1.4;
  z-index: 0;
}

.info-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  padding: 1px;
  background: linear-gradient(135deg, #9B7F4D 0%, #F5C46F 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.info-box__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.info-box__text {
  display: flex;
  flex-direction: column;
}

.info-box__text strong {
  font-weight: 700;
  font-size: 14px;
}

.hero__cta-btn {
  display: inline-block;
  padding: 18px 40px;
  background: var(--gradient-gold);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  text-align: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
  max-width: 395px;
}

.hero__cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.hero__lato-sensu {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-body);
}

.hero__lato-sensu img {
  height: 22px;
  width: auto;
  object-fit: contain;
}

/* Right column */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__3d-image {
  width: 100%;
  max-width: 540px;
  object-fit: contain;
}

/* ============================================================
   SESSION 2 — Para quem é este workshop
   ============================================================ */
.session2 {
  background: #ffffff !important;
  padding: 80px 24px 60px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.session2__bg-logo {
  position: absolute;
  right: 0;
  bottom: -21vw;
  width: 80vw;
  max-width: 1200px;
  height: auto;
  mix-blend-mode: luminosity;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.session2__inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.session2__title {
  font-family: 'Iowan Old Style', Georgia, serif;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 38px);
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  background: linear-gradient(90deg, #9B7F4D 0%, #F5C46F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.session2__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.session2__card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 36px;
  height: 130px;
  background: linear-gradient(87.64deg, #172139 23.77%, #4E5F87 156.81%);
  border-radius: 29px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(14px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.45;
  z-index: 0;
}

.session2__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 29px;
  padding: 1px;
  background: linear-gradient(135deg, #9B7F4D 0%, #F5C46F 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.session2__card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.session2__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.session2__disclaimer {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(11px, 1vw, 16px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  background: linear-gradient(90deg, #9B7F4D 34%, #F5C46F 117%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 8px;
}

/* ============================================================
   WRAPPER sessions 3+4 — gradiente contínuo compartilhado
   ============================================================ */
.sessions-34-bg {
  background: linear-gradient(180deg, #0d1b35 0%, #172139 20%, #293B65 60%, #172139 80%, #0d1b35 100%);
}

/* ============================================================
   SESSION 3 — Detalhes do evento
   ============================================================ */
.session3 {
  position: relative;
  background: transparent;
  padding: 80px 24px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.session3__watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Iowan Old Style', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(120px, 32vw, 628px);
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(87.22deg, #172139 10.98%, #405C9F 124.95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.session3__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.session3__title {
  font-family: 'Iowan Old Style', Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 49px);
  line-height: 1.1;
  text-align: center;
  background: linear-gradient(90deg, #9B7F4D 0%, #F5C46F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.session3__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}

.session3__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 28px 20px;
  background: linear-gradient(70.97deg, #172139 44.22%, #4E5F87 149.86%);
  border-radius: 16px;
  z-index: 0;
}

.session3__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(90deg, #9B7F4D 0%, #F5C46F 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.session3__card-label {
  font-family: 'Iowan Old Style', Georgia, serif;
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 46px);
  line-height: 1;
  color: #ffffff;
}

.session3__card-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #9B7F4D 0%, #F5C46F 100%);
  border-radius: 2px;
}

.session3__card-value {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(13px, 1.3vw, 20px);
  color: #ffffff;
  line-height: 1.3;
}

.session3__description {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 24px);
  line-height: 1.55;
  color: #ffffff;
  text-align: center;
  max-width: 1000px;
}

/* ============================================================
   SESSION 4 — O que vamos abordar no workshop
   ============================================================ */
.session4 {
  background: transparent;
  padding: 80px 24px 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.session4__inner {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.session4__title {
  font-family: 'Iowan Old Style', Georgia, serif;
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 49px);
  line-height: 1.1;
  text-align: center;
  background: linear-gradient(90deg, #9B7F4D 0%, #F5C46F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.session4__title em {
  font-style: italic;
}

.session4__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.session4__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 32px;
  background: linear-gradient(87.64deg, #172139 23.77%, #4E5F87 156.81%);
  border-radius: 20px;
  z-index: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.session4__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(155, 127, 77, 0.18);
}

.session4__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(155, 127, 77, 0.4) 0%, rgba(245, 196, 111, 0.4) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.session4__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.session4__badge {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.session4__badge--aula {
  background: linear-gradient(90deg, #9B7F4D 0%, #F5C46F 100%);
  color: #1a0e00;
}

.session4__badge--discussao {
  background: linear-gradient(90deg, #9B7F4D 0%, #F5C46F 100%);
  color: #1a0e00;
}

.session4__badge--time {
  background: linear-gradient(90deg, #9B7F4D 0%, #F5C46F 100%);
  color: #1a0e00;
}

.session4__badge--encerramento {
  background: linear-gradient(90deg, #9B7F4D 0%, #F5C46F 100%);
  color: #1a0e00;
}

.session4__card-speaker {
  font-family: var(--font-primary);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.session4__card-text {
  font-family: var(--font-primary);
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

.session4__card--break {
  background: transparent;
}

.session4__card--break .session4__card-text {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.session4__break-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.session4__certificado-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
}

.session4__certificado {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ============================================================
   ANIMATIONS & PREMIUM EFFECTS
   ============================================================ */

/* Shimmer suave nos títulos dourados */
@keyframes shimmer {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* Borda animada — gradiente rotaciona */
@keyframes border-rotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Pulse no botão CTA */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 196, 111, 0); }
  50%       { box-shadow: 0 0 18px 6px rgba(245, 196, 111, 0.35); }
}

/* Fade-in + slide up para elementos ao entrar na viewport */
@keyframes fade-slide-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Progress bar shimmer sweep */
@keyframes bar-shimmer {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(400%) skewX(-15deg); }
}

/* Progress bar glow pulsante */
@keyframes bar-glow {
  0%, 100% { box-shadow: 0 0 8px 2px rgba(245, 196, 111, 0.3), 0 0 24px 4px rgba(155, 127, 77, 0.15); }
  50%       { box-shadow: 0 0 18px 6px rgba(245, 196, 111, 0.6), 0 0 48px 12px rgba(155, 127, 77, 0.3); }
}

/* Glow dourado suave nos titulos das secoes escuras */
@keyframes title-glow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(245, 196, 111, 0.0)); }
  50%       { filter: drop-shadow(0 0 12px rgba(245, 196, 111, 0.35)); }
}

.fade-in {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in--visible {
  opacity: 1;
}

.session2__card.fade-in {
  opacity: 0;
  transform: scale(0.96) translateY(10px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.session2__card.fade-in--visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}


.hero__title .gold-text,
.session2__title,
.session3__title {
  background-size: 300% auto;
  animation: shimmer 6s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(245, 196, 111, 0.45));
}

/* Borda animada session2 */
.session2__card::before {
  background: linear-gradient(135deg, #9B7F4D, #F5C46F, #9B7F4D, #F5C46F);
  background-size: 300% 300%;
  animation: border-rotate 4s ease-in-out infinite;
}

/* Borda animada session3 */
.session3__card::before {
  background: linear-gradient(135deg, #9B7F4D, #F5C46F, #9B7F4D, #F5C46F);
  background-size: 300% 300%;
  animation: border-rotate 4s ease-in-out infinite;
}

/* Pulse no CTA */
.hero__cta-btn {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.hero__cta-btn:hover {
  animation: none;
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 196, 111, 0.4);
}

/* Hover premium nos cards session2 */
.session2__card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.session2__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(155, 127, 77, 0.22);
}

/* Hover premium nos cards session3 */
.session3__card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.session3__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(155, 127, 77, 0.22);
}

/* ============================================================
   SESSION 5 — Conheca seus professores
   ============================================================ */
.session5 {
  background: #ffffff;
  padding: 80px 24px 100px;
}

.session5__inner {
  max-width: 1046px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.session5__title {
  font-family: 'Iowan Old Style', Georgia, serif;
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 44px);
  text-align: center;
  background: linear-gradient(90deg, #9B7F4D 0%, #F5C46F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.session5__card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  width: 100%;
  height: 394px;
  background: linear-gradient(231.91deg, #4E5F87 -26.55%, #172139 67.74%);
  border-radius: 37px;
  overflow: visible;
  padding: 20px 20px 20px 20px;
}

.session5__photo-wrap {
  flex-shrink: 0;
  width: 300px;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
}

.session5__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 28px;
}

.session5__bio {
  padding: 20px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  flex: 1;
}

.session5__name {
  font-family: 'Iowan Old Style', Georgia, serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 36px);
  background: linear-gradient(90deg, #D4A842 0%, #F7D07A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.session5__crm {
  font-family: var(--font-primary);
  font-size: clamp(12px, 1vw, 15px);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.session5__divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #9B7F4D 0%, rgba(245, 196, 111, 0.2) 100%);
  margin: 8px 0;
  border-radius: 2px;
}

.session5__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.session5__list li {
  font-family: var(--font-primary);
  font-size: clamp(13px, 1.1vw, 16px);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  padding-left: 14px;
  position: relative;
}

.session5__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(245, 196, 111, 0.7);
}

/* ============================================================
   WRAPPER sessions 6+7 — mimd compartilhado
   ============================================================ */
.sessions-67-bg {
  position: relative;
  background: linear-gradient(81.81deg, #172139 32.4%, #293B65 79.81%);
  overflow: hidden;
}

.sessions-67-mimd {
  position: absolute;
  right: 13%;
  bottom: 0;
  width: 80%;
  max-width: 1100px;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.65;
  filter: brightness(3) saturate(0.2);
}

/* ============================================================
   SESSION 6 — Apenas 100 vagas
   ============================================================ */
.session6 {
  position: relative;
  background: transparent;
  padding: 60px 24px;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.session6__mimd,
.session7__mimd {
  display: none; /* substituidos pelo wrapper */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  max-width: 1400px;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.18;
  mix-blend-mode: screen;
}

.session6__watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Iowan Old Style', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(200px, 40vw, 600px);
  line-height: 1;
  white-space: nowrap;
  color: rgba(74, 95, 140, 0.25);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.session6__inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.gold-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.session6__title {
  font-family: 'Iowan Old Style', Georgia, serif;
  font-weight: 700;
  font-size: clamp(20px, 2.8vw, 40px);
  line-height: 1.15;
  text-align: center;
  background: linear-gradient(90deg, #9B7F4D 0%, #F5C46F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.session6__bar-wrap {
  position: relative;
  width: 100%;
  height: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 1px solid rgba(155, 127, 77, 0.2);
}

.session6__bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #7a5f2e 0%, #9B7F4D 30%, #F5C46F 70%, #ffe4a0 100%);
  border-radius: 100px;
  transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.session6__bar-fill.is-active {
  animation: bar-glow 2s ease-in-out infinite;
}

/* shimmer sweep dentro da barra */
.session6__bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  animation: bar-shimmer 2.2s ease-in-out infinite;
  animation-play-state: paused;
}

.session6__bar-fill.is-active::after {
  animation-play-state: running;
}

.session6__bar-label {
  position: absolute;
  right: 14px;
  z-index: 2;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.session6__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: #ffffff;
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #172139;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.session6__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   SESSION 7 — Formulario de inscricao
   ============================================================ */
.session7 {
  position: relative;
  background: transparent;
  padding: 80px 24px 100px;
  display: flex;
  justify-content: center;
}

.session7__inner {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.session7__title {
  font-family: 'Iowan Old Style', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 400;
  text-align: center;
  line-height: 1.3;
  background: linear-gradient(90deg, #9B7F4D 0%, #F5C46F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.session7__title-gold {
  font-style: italic;
  background: linear-gradient(90deg, #9B7F4D 0%, #F5C46F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.session7__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.session7__input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 14px;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.session7__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.session7__input:focus {
  border-color: rgba(245, 196, 111, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.session7__submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(90deg, #9B7F4D 0%, #F5C46F 100%);
  border: none;
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  margin-top: 8px;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.session7__submit:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #ffffff;
  padding: 20px 24px;
  text-align: center;
}

.footer__text {
  font-family: var(--font-primary);
  font-size: 13px;
  color: #666666;
  font-weight: 400;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1280px)
   ============================================================ */
@media (max-width: 1280px) {
  /* Topbar */
  .topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
  }

  .topbar__label:last-child {
    width: 100%;
    text-align: center;
    font-size: 13px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 60px 0 80px;
    background-position: center right -80px;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 18, 45, 0.82) 0%, rgba(8, 18, 45, 0.70) 50%, rgba(8, 18, 45, 0.88) 100%);
    z-index: 0;
  }

  .hero__inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 32px;
    position: relative;
    z-index: 1;
  }

  .hero__content {
    max-width: 600px;
    align-items: center;
  }

  .hero__logos {
    justify-content: center;
  }

  .hero__logo {
    height: 52px;
  }

  .hero__description {
    max-width: 100%;
    font-size: 15px;
  }

  .hero__info-boxes {
    justify-content: center;
  }

  .info-box {
    flex: 1;
    min-width: 200px;
  }

  .hero__cta-btn {
    max-width: 480px;
    width: 100%;
  }

  .hero__lato-sensu {
    justify-content: center;
  }

  /* Session 2 */
  .session2 {
    min-height: auto;
    padding: 60px 24px 50px;
  }

  .session2__inner {
    max-width: 100%;
    align-items: center;
  }

  .session2__title {
    white-space: normal;
    text-align: center;
    font-size: clamp(18px, 3.5vw, 30px);
  }

  .session2__card {
    font-size: clamp(14px, 2vw, 18px);
    padding: 20px 28px;
    height: auto;
    min-height: 100px;
  }

  .session2__bg-logo {
    width: 100vw;
    bottom: -30vw;
  }

  /* Session 3 */
  .session3 {
    min-height: auto;
    padding: 60px 24px;
  }

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

  .session3__description {
    font-size: 15px;
  }

  /* Session 4 */
  .session4 {
    padding: 60px 24px 80px;
  }

  .session4__card {
    padding: 22px 24px;
  }

  /* Session 5 */
  .session5 {
    padding: 60px 24px 80px;
  }

  .session5__card {
    height: auto;
    min-height: 300px;
    padding: 16px;
    border-radius: 28px;
  }

  .session5__photo-wrap {
    width: 220px;
    height: 280px;
    border-radius: 20px;
  }

  .session5__photo {
    border-radius: 20px;
  }

  .session5__bio {
    padding: 16px 20px;
  }

  .session5__name {
    font-size: clamp(20px, 3vw, 30px);
  }

  /* Session 6 */
  .session6 {
    padding: 60px 24px;
    min-height: auto;
  }

  .session6__watermark {
    font-size: clamp(160px, 50vw, 320px);
  }

  .session6__inner {
    gap: 24px;
    max-width: 480px;
  }

  .session6__title {
    font-size: clamp(24px, 5vw, 36px);
  }

  .session6__cta {
    padding: 16px 40px;
    width: 100%;
    text-align: center;
  }

  /* Session 7 */
  .session7 {
    padding: 60px 24px 80px;
  }

  .session7__inner {
    max-width: 480px;
  }

  .sessions-67-mimd {
    width: 130%;
    right: -15%;
    bottom: 0;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  /* Topbar */
  .topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 4px;
    padding: 8px 12px;
  }

  .topbar__label,
  .topbar__countdown {
    font-size: 12px;
  }

  .topbar__countdown {
    font-size: 18px;
  }

  .topbar__label:last-child {
    width: 100%;
    font-size: 11px;
    line-height: 1.4;
  }

  .topbar__icon {
    width: 16px;
    height: 16px;
  }

  /* Hero */
  .hero {
    padding: 40px 0 60px;
    background-position: right -120px top;
    background-size: 200%;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 18, 45, 0.92) 0%, rgba(8, 18, 45, 0.75) 100%);
    z-index: 0;
  }

  .hero__inner {
    padding: 24px 16px;
    position: relative;
    z-index: 1;
  }

  .hero__logo {
    height: 40px;
  }

  .hero__title {
    font-size: clamp(22px, 7vw, 30px);
  }

  .hero__description {
    font-size: 14px;
  }

  .info-box {
    width: 100%;
    flex: 1;
    padding: 10px 14px;
    font-size: 12px;
  }

  .info-box::before {
    padding: 2px;
  }

  .info-box__icon {
    width: 16px;
    height: 16px;
  }

  .info-box__text strong {
    font-size: 12px;
  }

  .hero__info-boxes {
    gap: 8px;
  }

  .hero__cta-btn {
    font-size: 13px;
    padding: 16px 24px;
    letter-spacing: 1px;
    width: fit-content;
    max-width: 320px;
    align-self: center;
  }

  /* Session 2 */
  .session2 {
    padding: 40px 16px 36px;
    background: #ffffff;
  }

  .session2__title {
    font-size: clamp(16px, 5vw, 22px);
    white-space: normal;
    text-align: center;
    width: 100%;
  }

  .session2__card {
    height: auto;
    min-height: 80px;
    padding: 18px 20px;
    border-radius: 16px;
    gap: 14px;
    font-size: 13px;
  }

  .session2__card::before {
    border-radius: 16px;
  }

  .session2__card-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .session2__disclaimer {
    font-size: 10px;
    text-align: center;
  }

  .session2__bg-logo {
    width: 120vw;
    bottom: -40vw;
  }

  /* Session 3 */
  .session3 {
    padding: 48px 16px 40px;
  }

  .session3__title {
    font-size: clamp(20px, 6vw, 28px);
  }

  .session3__watermark {
    font-size: clamp(80px, 24vw, 160px);
  }

  .session3__card {
    border-radius: 20px;
    padding: 20px 20px 16px;
    gap: 8px;
  }

  .session3__card::before {
    border-radius: 16px;
  }

  .session3__card-label {
    font-size: clamp(22px, 6vw, 32px);
  }

  .session3__card-value {
    font-size: 14px;
  }

  .session3__description {
    font-size: 13px;
    text-align: left;
  }

  /* Session 5 */
  .session5 {
    padding: 48px 16px 60px;
  }

  .session5__card {
    flex-direction: column;
    height: auto;
    padding: 12px;
  }

  .session5__photo-wrap {
    width: 100%;
    height: 260px;
    border-radius: 20px;
  }

  .session5__photo {
    border-radius: 20px;
    object-position: center 10%;
  }

  .session5__bio {
    padding: 16px 8px 8px;
  }

  /* Session 6 */
  .session6 {
    padding: 48px 16px;
  }

  .session6__watermark {
    font-size: clamp(120px, 70vw, 240px);
    opacity: 0.6;
  }

  .session6__title {
    font-size: clamp(22px, 7.5vw, 32px);
  }

  .session6__inner {
    gap: 20px;
  }

  .session6__bar-wrap {
    height: 22px;
  }

  .session6__cta {
    padding: 16px 24px;
    width: 100%;
    font-size: 13px;
    border-radius: 10px;
  }

  .sessions-67-mimd {
    width: 190%;
    right: -40%;
    bottom: 0;
    opacity: 0.35;
  }

  /* Session 7 */
  .session7 {
    padding: 48px 16px 60px;
  }

  .session7__input {
    padding: 14px 16px;
  }
}
