/* ============================================
   Workshop Recolocação de Alto Nível - Obrigado
   ============================================ */

/* --- Design Tokens --- */
:root {
  --color-navy-deep: #0B1A2E;
  --color-navy: #0F2240;
  --color-navy-light: #162D50;
  --color-gold: #C9A84C;
  --color-gold-hover: #D4B85C;
  --color-gold-dark: #B8973E;
  --color-cream: #F5F1EB;
  --color-white: #FFFFFF;
  --color-white-soft: rgba(255, 255, 255, 0.85);
  --color-white-muted: rgba(255, 255, 255, 0.55);

  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: #061121;
  color: var(--color-white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* --- Page Wrapper --- */
.page-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 3rem 1.5rem 10rem;
  background-color: var(--color-navy-deep);
}

/* --- Background Glows --- */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.35;
}

.bg-glow--top {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-navy-light) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.bg-glow--bottom {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
}

/* --- Container --- */
.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* --- Branding --- */
.branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.branding__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.branding__title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* --- Headline --- */
.headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  max-width: 600px;
}

/* --- Event Details --- */
.event-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.event-details__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-white-soft);
}

.event-details__icon {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.event-details__divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
}

/* --- Next Step --- */
.next-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 520px;
}

.next-step__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-gold);
}

.next-step__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-white-muted);
}

.next-step__text strong {
  color: var(--color-white);
  font-weight: 600;
}

/* --- CTA Button --- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--color-gold);
  color: var(--color-navy-deep);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.25);
}

.cta-button:hover {
  background: var(--color-gold-hover);
  box-shadow: 0 6px 32px rgba(201, 168, 76, 0.35);
  transform: translateY(-1px);
}

.cta-button:active {
  transform: translateY(0);
  background: var(--color-gold-dark);
}

/* --- Footer --- */
.footer {
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
  background-color: #061121;
}

.footer__branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}

.footer__label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.footer__title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--color-white-muted);
  font-weight: 300;
}

/* --- Responsive --- */
@media (max-width: 640px) {
  .page-wrapper {
    padding: 2rem 1.25rem 10rem;
  }

  .container {
    gap: 2rem;
  }

  .branding__title {
    font-size: 1rem;
  }

  .event-details {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
  }

  .event-details__divider {
    width: 40px;
    height: 1px;
  }

  .cta-button {
    width: auto;
    padding: 1rem 2.5rem;
  }
}
