/* ==========================================
   CUSTOM PROPERTIES
   DM Serif Display + DM Sans | Paleta claro & profissional
   ========================================== */

:root {
  /* Fonts */
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;

  /* Cores */
  --color-bg: #FAFAF9;
  --color-text: #1A1A2E;
  --color-text-secondary: #64748B;
  --color-text-muted: #94A3B8;
  --color-primary: #2E2B5F;
  --color-primary-light: #4340A0;
  --color-accent: #E8B931;
  --color-accent-hover: #D4A522;
  --color-accent-light: rgba(232, 185, 49, 0.08);
  --color-surface: #FFFFFF;
  --color-border: #E2E8F0;
  --color-muted-bg: #F1F5F9;
  --color-error: #ef4444;
  --color-success: #10b981;
  --color-dark: #1C1C1E;
  --color-dark-surface: #2A2A2E;
  --color-dark-border: rgba(255, 255, 255, 0.08);

  /* Tokens para uso sobre fundo escuro (.section--dark e similares) */
  --color-text-on-dark: #F5F5F5;
  --color-text-secondary-on-dark: #A0A8B5;
  --color-primary-on-dark: #E8B931;
  --color-border-on-dark: rgba(255, 255, 255, 0.18);

  /* Spacing */
  --section-py: clamp(4rem, 10vw, 8rem);
  --container-px: clamp(1.25rem, 5vw, 2rem);
  --container-max: 1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================
   RESET
   ========================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 400;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ==========================================
   LAYOUT
   ========================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

/* Variante escura (chumbo #1C1C1E) com radiais douradas sutis.
   Usar em paginas logadas/autenticadas pra manter o padrao visual
   das auth pages (/entrar/, /primeiro-acesso/, etc). */
.section--dark {
  background: var(--color-dark);
  color: var(--color-text-on-dark);
  position: relative;
  overflow: hidden;
}

.section--dark .btn--outline {
  color: var(--color-primary-on-dark);
  border-color: var(--color-border-on-dark);
}

.section--dark .btn--outline:hover {
  background: rgba(232, 185, 49, 0.08);
  border-color: var(--color-primary-on-dark);
}

/* Reset cor dentro de superficies claras aninhadas em .section--dark
   (cards, forms, avisos) — labels e textos voltam ao tom escuro padrao */
.section--dark .mp-card,
.section--dark .mp__upgrade-notice,
.section--dark .mp__empty,
.section--dark .ep__form,
.section--dark .form-input,
.section--dark .form-label,
.section--dark .auth-card,
.section--dark .cadastro-section {
  color: var(--color-text);
}

.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(197, 165, 114, 0.12), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(197, 165, 114, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section--dark > * {
  position: relative;
  z-index: 1;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 0.875rem 1.75rem;
  border-radius: 0.625rem;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out), background-color 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-dark);
  text-shadow: none;
}

.btn--accent:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 8px 24px rgba(232, 185, 49, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-primary);
  background: rgba(46, 43, 95, 0.04);
}

/* Outline-dark button on dark hero */
.hero .btn--outline-dark {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.hero .btn--outline-dark:hover {
  background: var(--color-accent);
  color: var(--color-dark);
  border-color: var(--color-accent);
}

/* Outline button on dark backgrounds */
.hero .btn--outline {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}

.hero .btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn--outline-dark:hover {
  border-color: var(--color-text);
  background: rgba(26, 26, 46, 0.04);
}

.btn--sm {
  font-size: 0.8125rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  min-height: 40px;
}

.btn--lg {
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
}

/* ==========================================
   HEADER
   ========================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.3s, box-shadow 0.3s, backdrop-filter 0.4s;
}

.header--scrolled {
  background: rgba(250, 250, 249, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--color-border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}

.header--scrolled .header__logo-img {
  filter: none;
}


.header__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.header__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s;
  position: relative;
  white-space: nowrap;
  letter-spacing: 0.005em;
}

.header--scrolled .header__link {
  color: var(--color-text-secondary);
}

.header--scrolled .header__link:hover {
  color: var(--color-text);
}

/* Header buttons on dark hero */
.header .btn--outline {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.header .btn--outline:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.header--scrolled .btn--outline {
  color: var(--color-primary);
  border-color: var(--color-border);
}

.header--scrolled .btn--outline:hover {
  border-color: var(--color-primary);
  background: rgba(46, 43, 95, 0.04);
}

/* Accent button in header on dark bg: inverted (dark bg + gold text/border) */
.header .btn--accent {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}

.header .btn--accent:hover {
  background: var(--color-accent);
  color: var(--color-dark);
}

.header--scrolled .btn--accent {
  background: var(--color-accent);
  color: var(--color-dark);
  border-color: var(--color-accent);
}

.header--scrolled .btn--accent:hover {
  background: var(--color-accent-hover);
}

/* Any plain .btn (no accent/outline) in header on dark bg */
.header .btn:not(.btn--accent):not(.btn--outline) {
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.header .btn:not(.btn--accent):not(.btn--outline):hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.header--scrolled .btn:not(.btn--accent):not(.btn--outline) {
  color: var(--color-text);
  border-color: var(--color-border);
}

.header--scrolled .btn:not(.btn--accent):not(.btn--outline):hover {
  border-color: var(--color-text);
  background: rgba(0, 0, 0, 0.04);
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
  transition: width 0.35s var(--ease-out);
}

.header__link:hover {
  color: #FFFFFF;
}

.header__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-left: 1.5rem;
}

.header__actions .btn {
  white-space: nowrap;
}

/* ==========================================
   USER MENU (dropdown elegante do logado)
   ========================================== */

.user-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.user-menu__trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3125rem 0.75rem 0.3125rem 0.3125rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  cursor: pointer;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}

.user-menu__trigger:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(232, 185, 49, 0.45);
}

.user-menu__trigger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.header--scrolled .user-menu__trigger {
  background: #FFFFFF;
  border-color: var(--color-border);
  color: var(--color-text);
}

.header--scrolled .user-menu__trigger:hover {
  border-color: var(--color-accent);
  background: #FFFFFF;
}

.user-menu__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-dark);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.user-menu__avatar--photo {
  color: transparent;
}

.user-menu__name {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-menu__chevron {
  color: rgba(255, 255, 255, 0.55);
  transition: transform 0.25s var(--ease-out);
  flex-shrink: 0;
}

.header--scrolled .user-menu__chevron {
  color: var(--color-text-muted);
}

.user-menu--open .user-menu__chevron {
  transform: rotate(180deg);
}

.user-menu__panel {
  position: absolute;
  top: calc(100% + 0.625rem);
  right: 0;
  min-width: 260px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 0.875rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15), 0 4px 12px rgba(15, 23, 42, 0.06);
  padding: 0.5rem;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.25s var(--ease-out);
  z-index: 1100;
}

.user-menu--open .user-menu__panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.user-menu__header {
  padding: 0.75rem 0.875rem 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.user-menu__header strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.005em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-menu__header span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-menu__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.user-menu__item:hover,
.user-menu__item:focus-visible {
  background: var(--color-muted-bg);
  outline: none;
}

.user-menu__item svg {
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: color 0.15s;
}

.user-menu__item:hover svg {
  color: var(--color-accent);
}

.user-menu__item--danger {
  color: var(--color-error);
}

.user-menu__item--danger svg,
.user-menu__item--danger:hover svg {
  color: var(--color-error);
}

.user-menu__item--danger:hover {
  background: rgba(239, 68, 68, 0.06);
}

.user-menu__divider {
  height: 1px;
  background: var(--color-border);
  margin: 0.375rem 0.375rem;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.header__burger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger--open span:nth-child(2) {
  opacity: 0;
}

.header__burger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 1rem var(--container-px) 2rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.header__mobile--open {
  display: flex;
}

.header__mobile-link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.header__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
}

.header__mobile-actions .btn {
  width: 100%;
  text-align: center;
}

@media (max-width: 960px) {
  .header__links,
  .header__actions {
    display: none;
  }

  .header__burger {
    display: flex;
  }
}

/* ==========================================
   HERO
   Split Assimetrico | Headline >150px | Selective Color
   ========================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  position: relative;
  background: var(--color-dark);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(232, 185, 49, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(67, 64, 160, 0.08) 0%, transparent 50%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.hero__content {
  max-width: 620px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.hero__eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

.hero__title {
  margin-bottom: 1.75rem;
}

.hero__title-line {
  display: block;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: #FFFFFF;
}

.hero__title-accent {
  display: block;
  font-size: clamp(4rem, 12vw, 10rem);
  color: var(--color-accent);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.hero__tab {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  padding: 0.75rem 1.25rem;
  position: relative;
  transition: color 0.3s;
}

.hero__tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px 1px 0 0;
  transform: scaleX(0);
  transition: transform 0.35s var(--ease-out);
}

.hero__tab--active {
  color: #FFFFFF;
}

.hero__tab--active::after {
  transform: scaleX(1);
}

.hero__tab:hover {
  color: rgba(255, 255, 255, 0.8);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  max-width: 480px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.hero__subtitle--active {
  opacity: 1;
  transform: translateY(0);
}

.hero__subtitle[hidden] {
  display: none;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.hero__trust-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent);
  line-height: 1;
}

.hero__trust-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.hero__trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
}

/* Hero visual composition */
.hero__visual {
  position: relative;
  height: clamp(360px, 50vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}

.hero__blob--1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 185, 49, 0.2), transparent 70%);
  top: 0;
  right: 0;
  animation: blobFloat1 8s ease-in-out infinite;
}

.hero__blob--2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(46, 43, 95, 0.15), transparent 70%);
  bottom: 20px;
  left: 20px;
  animation: blobFloat2 10s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-15px, 20px) scale(1.05); }
  66% { transform: translate(10px, -10px) scale(0.95); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.08); }
}

.hero__card {
  position: absolute;
  background: var(--color-dark-surface);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3), 0 1px 4px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__card--front {
  width: clamp(240px, 22vw, 280px);
  z-index: 2;
  transform: rotate(-2deg);
  animation: cardFloat 6s ease-in-out infinite;
}

.hero__card--back {
  width: clamp(200px, 18vw, 240px);
  z-index: 1;
  top: 15%;
  right: 5%;
  transform: rotate(6deg);
  opacity: 0.7;
  animation: cardFloat 7s ease-in-out infinite reverse;
}

@keyframes cardFloat {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-12px); }
}

.hero__card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  margin-bottom: 1rem;
}

.hero__card-avatar--alt {
  background: linear-gradient(135deg, #64748B, #475569);
}

.hero__card-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin-bottom: 0.875rem;
}

.hero__card-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #FFFFFF;
}

.hero__card-name-placeholder {
  width: 80%;
  height: 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.hero__card-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.875rem;
}

.hero__card-tags span {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 100px;
}

.hero__card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__card-rating {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
}

.hero__card-price {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.hero__float-tag {
  position: absolute;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.375rem 0.875rem;
  background: var(--color-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: var(--color-accent);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.hero__float-tag--1 {
  top: 8%;
  left: 10%;
  animation: tagFloat 5s ease-in-out infinite;
}

.hero__float-tag--2 {
  bottom: 18%;
  left: 0;
  animation: tagFloat 6s ease-in-out infinite 0.5s;
}

.hero__float-tag--3 {
  top: 50%;
  right: 0;
  animation: tagFloat 7s ease-in-out infinite 1s;
}

@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Hero responsive */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: calc(72px + 2rem);
    padding-bottom: 2rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 2rem;
    padding-bottom: 0;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title-accent {
    font-size: clamp(3.5rem, 18vw, 7rem);
  }

  .hero__visual {
    height: 320px;
  }

  .hero__card--front {
    width: 240px;
  }

  .hero__card--back {
    width: 200px;
    top: 5%;
    right: 0;
  }

  .hero__trust {
    gap: 1rem;
  }

  .hero__trust-number {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
    text-align: center;
  }

  .hero__visual {
    height: 280px;
  }

  .hero__float-tag--3 {
    display: none;
  }
}

/* ==========================================
   HOW IT WORKS
   Contained Center + Tabs + Stagger
   ========================================== */

.how {
  background: var(--color-surface);
}

.how__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.how__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.how__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--color-text);
}

.how__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3.5rem;
  position: relative;
}

.how__tabs::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 1px;
  background: var(--color-border);
}

.how__tab {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 0.75rem 1.5rem;
  position: relative;
  transition: color 0.3s;
}

.how__tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px 1px 0 0;
  transform: scaleX(0);
  transition: transform 0.35s var(--ease-out);
}

.how__tab--active {
  color: var(--color-text);
}

.how__tab--active::after {
  transform: scaleX(1);
}

.how__tab:hover {
  color: var(--color-text);
}

.how__content[hidden] {
  display: none;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1000px;
  margin: 0 auto;
}

.how__step {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how__step-number-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 1.25rem;
}

.how__step-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.25;
}

.how__step-line {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
  margin-top: 0.75rem;
  opacity: 0.3;
}

.how__step-body {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.how__step-title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.how__step-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .how__steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 480px;
  }

  .how__step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    align-items: start;
  }

  .how__step-number-wrap {
    margin-bottom: 0;
  }

  .how__step-line {
    display: none;
  }
}

/* ==========================================
   FORMS
   ========================================== */

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 10%, transparent);
}

.form-input.error {
  border-color: var(--color-error);
}

.form-feedback {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  display: none;
}

.form-feedback.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-feedback.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.iti {
  width: 100%;
}

.iti__country-list {
  z-index: 100;
}

/* ==========================================
   UTILITIES
   ========================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================
   CATEGORIES (Bento Box)
   ========================================== */

.categories {
  background: var(--color-dark);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(232, 185, 49, 0.04) 0%, transparent 50%);
}

.categories__header {
  margin-bottom: 3.5rem;
}

.categories__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.categories__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.categories__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
}

/* ============ Mobile-first: 1 coluna, cards compactos ============ */
.categories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}

.categories__header {
  text-align: center;
}

.categories__subtitle {
  max-width: 100%;
}

.categories__card {
  background: var(--color-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  min-height: 112px;
  cursor: pointer;
  transition: transform 400ms var(--ease-spring), box-shadow 400ms var(--ease-out), border-color 300ms;
}

.categories__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-accent);
  transition: width 400ms var(--ease-out);
}

.categories__card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(232, 185, 49, 0.15), 0 8px 32px rgba(232, 185, 49, 0.08);
}

.categories__card:hover::after {
  width: 100%;
}

.categories__card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.categories__card:active {
  transform: translateY(-2px);
}

.categories__card--featured {
  min-height: 160px;
}

/* Icon */
.categories__icon {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  color: var(--color-accent);
  opacity: 0.7;
  transition: color 300ms, transform 300ms var(--ease-spring), opacity 300ms;
}

.categories__card:hover .categories__icon {
  color: var(--color-accent);
  opacity: 1;
  transform: scale(1.1);
}

.categories__icon--lg svg {
  width: 36px;
  height: 36px;
}

/* Decorative gradient on featured card */
.categories__card-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 100% 0%, rgba(232, 185, 49, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.categories__name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

.categories__name--lg {
  font-size: 1.2rem;
}

.categories__count {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.25rem;
}

.categories__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: color 250ms;
}

.categories__cta svg {
  transition: transform 350ms var(--ease-out);
}

.categories__cta:hover svg {
  transform: translateX(6px);
}

/* ============ 480px+ : 2 colunas, featured ocupa a linha ============ */
@media (min-width: 480px) {
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .categories__card--featured {
    grid-column: span 2;
  }
}

/* ============ 768px+ : 3 colunas, cards maiores ============ */
@media (min-width: 768px) {
  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
  }
  .categories__header {
    text-align: left;
  }
  .categories__card {
    padding: 1.5rem;
    min-height: 140px;
  }
  .categories__card--featured {
    grid-column: span 2;
    min-height: 200px;
  }
  .categories__icon {
    top: 1.5rem;
    left: 1.5rem;
  }
  .categories__icon--lg svg {
    width: 40px;
    height: 40px;
  }
  .categories__name--lg {
    font-size: 1.3rem;
  }
  .categories__cta {
    display: inline-flex;
    justify-content: flex-start;
  }
}

/* ============ 1024px+ : 4 colunas, featured 2x2 (bento) ============ */
@media (min-width: 1024px) {
  .categories__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .categories__card--featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 300px;
  }
  .categories__name--lg {
    font-size: 1.375rem;
  }
}

/* ==========================================
   PAGE LOADER (palestrante / palestra / etc)
   ========================================== */

.page-loader {
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 3rem 1.25rem;
  text-align: center;
}

.page-loader[hidden] {
  display: none !important;
}

.page-loader__spinner {
  width: 56px;
  height: 56px;
  border: 3px solid rgba(232, 185, 49, 0.15);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: page-loader-spin 0.9s linear infinite;
}

.page-loader__brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.page-loader__label {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

@keyframes page-loader-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__spinner {
    animation-duration: 4s;
  }
}

/* ==========================================
   SPEAKERS (Carousel Infinite)
   ========================================== */

.speakers {
  background: var(--color-surface);
}

.speakers__header {
  text-align: center;
  margin-bottom: 3rem;
}

.speakers__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.speakers__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--color-text);
  margin-bottom: 1rem;
}

.speakers__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* Carousel */
.speakers__carousel {
  position: relative;
  width: 100%;
  margin-bottom: 2.5rem;
}

/* Viewport: scroll horizontal nativo (sem barra visivel) */
.speakers__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.speakers__viewport::-webkit-scrollbar {
  display: none;
}

.speakers__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.speakers__fade--left {
  left: 0;
  background: linear-gradient(to right, var(--color-surface) 0%, transparent 100%);
}

.speakers__fade--right {
  right: 0;
  background: linear-gradient(to left, var(--color-surface) 0%, transparent 100%);
}

.speakers__track {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0 2rem;
  width: max-content;
}

/* Setas de navegacao manual */
.speakers__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: background 0.2s, transform 0.2s;
}

.speakers__arrow:hover {
  background: var(--color-muted-bg);
}

.speakers__arrow--prev { left: 8px; }
.speakers__arrow--next { right: 8px; }

@media (max-width: 768px) {
  .speakers__arrow { display: none; }
}

/* Speaker card */
.speakers__card {
  width: 280px;
  flex-shrink: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 400ms var(--ease-spring), box-shadow 400ms var(--ease-out);
  display: block;
}

.speakers__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
  z-index: 3;
}

.speakers__card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

/* Avatar */
.speakers__avatar {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center 20%;
}

.speakers__avatar--1 { background: linear-gradient(135deg, #2E2B5F, #4340A0); }
.speakers__avatar--2 { background: linear-gradient(135deg, #E8B931, #F5D565); }
.speakers__avatar--3 { background: linear-gradient(135deg, #10b981, #059669); }
.speakers__avatar--4 { background: linear-gradient(135deg, #8B5CF6, #6366F1); }
.speakers__avatar--5 { background: linear-gradient(135deg, #EC4899, #F43F5E); }
.speakers__avatar--6 { background: linear-gradient(135deg, #0EA5E9, #2E2B5F); }

/* Speaker info */
.speakers__info {
  padding: 1.25rem 1.5rem 1.5rem;
}

.speakers__name {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.speakers__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.speakers__tags span {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 100px;
}

.speakers__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.875rem;
  border-top: 1px solid var(--color-border);
}

.speakers__rating {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #F59E0B;
}

.speakers__price {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-secondary);
}

/* Speakers responsive */
@media (max-width: 960px) {
  .speakers__card {
    width: 260px;
  }

  .speakers__avatar {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .speakers__track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
  }

  .speakers__track::-webkit-scrollbar {
    display: none;
  }

  .speakers__card {
    width: 260px;
    scroll-snap-align: start;
  }

  .speakers__carousel {
    overflow: visible;
  }

  .speakers__fade {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .speakers__card {
    width: 240px;
  }

  .speakers__avatar {
    height: 160px;
  }

  .speakers__info {
    padding: 1rem 1.25rem 1.25rem;
  }
}

/* ==========================================
   WHY AVANTIK (Broken Grid)
   ========================================== */

.why {
  background: var(--color-bg);
  position: relative;
}

.why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(46, 43, 95, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.why__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.why__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.why__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.15;
}

/* Broken grid */
.why__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  row-gap: 2rem;
  position: relative;
}

.why__deco-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.why__deco-line path {
  stroke-dashoffset: 0;
  animation: dashWalk 20s linear infinite;
}

@keyframes dashWalk {
  to { stroke-dashoffset: -100; }
}

/* Card positions (broken grid) */
.why__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 400ms var(--ease-spring), box-shadow 400ms var(--ease-out);
}

.why__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.why__card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.why__card--1 {
  grid-column: 1 / 7;
}

.why__card--2 {
  grid-column: 6 / 13;
  margin-top: 3rem;
  z-index: 2;
}

.why__card--3 {
  grid-column: 2 / 8;
  margin-top: -2rem;
}

.why__card--4 {
  grid-column: 7 / 12;
  margin-top: 1rem;
}

/* Watermark number */
.why__number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5rem);
  color: rgba(232, 185, 49, 0.08);
  line-height: 1;
  font-weight: 400;
  pointer-events: none;
  transition: color 600ms;
}

.why__card.counted .why__number {
  color: rgba(232, 185, 49, 0.12);
}

/* Icon wrap */
.why__icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
  transition: background 300ms, transform 300ms var(--ease-spring);
}

.why__card:hover .why__icon-wrap {
  background: rgba(232, 185, 49, 0.15);
  transform: scale(1.1);
}

.why__card-title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.why__card-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 400px;
}

/* Why responsive */
@media (max-width: 960px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .why__card--1,
  .why__card--2,
  .why__card--3,
  .why__card--4 {
    grid-column: auto;
    margin-top: 0;
  }

  .why__deco-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .why__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why__card {
    padding: 2rem;
  }

  .why__number {
    font-size: 3rem;
    color: rgba(232, 185, 49, 0.06);
  }
}

@media (max-width: 480px) {
  .why__card {
    padding: 1.5rem;
  }

  .why__card-title {
    font-size: 1.125rem;
  }

  .why__number {
    display: none;
  }
}

/* ==========================================
   SOCIAL PROOF (Editorial + Layered + Glass)
   ========================================== */

.social {
  background: var(--color-bg);
  padding-top: 0;
  padding-bottom: 0;
}

.social__wrapper {
  background: var(--color-dark);
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(232, 185, 49, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(67, 64, 160, 0.06) 0%, transparent 50%);
  border-radius: 2rem;
  padding: var(--section-py) 0;
  margin: 0 var(--container-px);
  position: relative;
  overflow: hidden;
}

/* Decorative rotating circle */
.social__deco-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px dashed rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: socialCircle 60s linear infinite;
  pointer-events: none;
}

@keyframes socialCircle {
  to { transform: rotate(360deg); }
}

.social__deco-circle--2 {
  width: 300px;
  height: 300px;
  top: auto;
  right: auto;
  bottom: -80px;
  left: -80px;
  animation-direction: reverse;
  animation-duration: 45s;
}

.social__header {
  text-align: center;
  margin-bottom: 4rem;
}

.social__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.social__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: #FFFFFF;
  line-height: 1.15;
}

.social__title-accent {
  background: linear-gradient(135deg, #E8B931, #F5D565);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* Video Showcase: main + sidebar layout */
.social__showcase {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 1.25rem;
  align-items: stretch;
}

.social__main-video {
  position: relative;
}

.social__main-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at 50% 50%, rgba(232, 185, 49, 0.12) 0%, transparent 65%);
  border-radius: 2rem;
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}

.social__main-video-inner {
  position: relative;
  z-index: 1;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.social__video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.social__video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Sidebar thumbnails */
.social__sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social__thumb {
  position: relative;
  flex: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: border-color 400ms, transform 400ms var(--ease-spring), box-shadow 400ms;
  background: none;
  padding: 0;
}

.social__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms var(--ease-out);
}

.social__thumb:hover img {
  transform: scale(1.05);
}

.social__thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  transition: background 300ms;
}

.social__thumb:hover .social__thumb-overlay {
  background: rgba(0, 0, 0, 0.25);
}

.social__thumb--active .social__thumb-overlay {
  background: rgba(232, 185, 49, 0.15);
}

.social__thumb-icon {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  transition: transform 300ms var(--ease-spring);
}

.social__thumb:hover .social__thumb-icon {
  transform: scale(1.15);
}

/* Barra lateral dourada no thumb ativo */
.social__thumb-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 400ms var(--ease-out);
}

.social__thumb--active .social__thumb-bar {
  transform: scaleY(1);
}

.social__thumb--active {
  border-color: rgba(232, 185, 49, 0.4);
  box-shadow: 0 0 24px rgba(232, 185, 49, 0.15);
}

/* ==========================================
   CLIENTS CAROUSEL (setas manuais)
   ========================================== */

.clients {
  background: var(--color-bg);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.clients__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.clients__icon {
  margin-bottom: 1rem;
}

.clients__icon svg {
  display: inline-block;
}

.clients__title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
}

.clients__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Setas */
.clients__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 300ms, color 300ms, box-shadow 300ms, transform 300ms var(--ease-spring);
}

.clients__arrow:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(232, 185, 49, 0.15);
  transform: scale(1.08);
}

/* Viewport */
.clients__viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.clients__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollClients 60s linear infinite;
}

.clients__track:hover {
  animation-play-state: paused;
}

@keyframes scrollClients {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Setas do carrossel de clientes — carrossel agora roda sozinho */
.clients__arrow {
  display: none;
}

.clients__logo {
  flex: 0 0 200px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-radius: 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform 400ms var(--ease-spring), box-shadow 400ms, border-color 300ms;
}

.clients__logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--color-accent);
}

.clients__logo img {
  max-height: 72px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 400ms, opacity 400ms;
}

.clients__logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}


/* Social responsive */
@media (max-width: 960px) {
  .social__showcase {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .social__sidebar {
    flex-direction: row;
  }

  .social__thumb {
    height: 80px;
  }

  .social__thumb-bar {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
  }

  .social__thumb--active .social__thumb-bar {
    transform: scaleX(1);
  }

  .social__wrapper {
    margin: 0 1rem;
  }
}

@media (max-width: 768px) {
  .social__wrapper {
    border-radius: 1.5rem;
  }

  .social__thumb {
    height: 65px;
  }

  .social__thumb-icon {
    width: 16px;
    height: 16px;
  }

  .clients__logo {
    flex: 0 0 150px;
    height: 100px;
    padding: 1rem;
  }

  .clients__logo img {
    max-height: 50px;
  }

  .clients__arrow {
    width: 36px;
    height: 36px;
  }


  .social__deco-circle {
    display: none;
  }
}

@media (max-width: 480px) {
  .social__wrapper {
    border-radius: 1rem;
    margin: 0 0.5rem;
  }

}

/* ==========================================
   CTA FINAL (Single Focus + Breathing)
   ========================================== */

.cta-final {
  background: var(--color-dark);
}

.cta-final__card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(232, 185, 49, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(67, 64, 160, 0.05) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: ctaGradient 8s ease-in-out infinite;
}

@keyframes ctaGradient {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

/* Particles */
.cta-final__particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-final__particle--1 {
  width: 8px;
  height: 8px;
  background: rgba(232, 185, 49, 0.1);
  top: 15%;
  left: 10%;
  animation: particleFloat 8s ease-in-out infinite;
}

.cta-final__particle--2 {
  width: 6px;
  height: 6px;
  background: rgba(46, 43, 95, 0.08);
  top: 20%;
  right: 12%;
  animation: particleFloat 10s ease-in-out infinite 1s;
}

.cta-final__particle--3 {
  width: 5px;
  height: 5px;
  background: rgba(232, 185, 49, 0.08);
  bottom: 18%;
  left: 15%;
  animation: particleFloat 7s ease-in-out infinite 0.5s;
}

.cta-final__particle--4 {
  width: 4px;
  height: 4px;
  background: rgba(46, 43, 95, 0.06);
  bottom: 25%;
  right: 8%;
  animation: particleFloat 9s ease-in-out infinite 2s;
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-10px) translateX(5px); }
  50% { transform: translateY(-5px) translateX(-8px); }
  75% { transform: translateY(-15px) translateX(3px); }
}

/* CTA Tabs */
.cta-final__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.cta-final__tab {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  padding: 0.75rem 1.5rem;
  position: relative;
  transition: color 0.3s;
}

.cta-final__tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px 1px 0 0;
  transform: scaleX(0);
  transition: transform 0.35s var(--ease-out);
}

.cta-final__tab--active {
  color: #FFFFFF;
}

.cta-final__tab--active::after {
  transform: scaleX(1);
}

.cta-final__tab:hover {
  color: rgba(255, 255, 255, 0.8);
}

.cta-final__tab:focus-visible {
  outline: 2px dashed var(--color-accent);
  outline-offset: 2px;
}

/* CTA content */
.cta-final__content {
  position: relative;
  z-index: 1;
}

.cta-final__content[hidden] {
  display: none;
}

.cta-final__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final__text {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Breathing button */
.cta-final__btn {
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
  border-radius: 0.875rem;
  animation: ctaBreath 3s ease-in-out infinite;
}

.cta-final__btn:hover {
  animation-play-state: paused;
  transform: scale(1.03) translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 185, 49, 0.4);
}

.cta-final__btn:active {
  transform: scale(1.01) translateY(-1px);
}

.cta-final__btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  animation-play-state: paused;
}

@keyframes ctaBreath {
  0%, 100% { box-shadow: 0 4px 20px rgba(232, 185, 49, 0.2); }
  50% { box-shadow: 0 8px 32px rgba(232, 185, 49, 0.35); }
}

/* CTA responsive */
@media (max-width: 768px) {
  .cta-final__card {
    padding: 2.5rem 1.5rem;
    border-radius: 1.5rem;
  }

  .cta-final__title {
    max-width: 100%;
  }

  .cta-final__text {
    max-width: 100%;
  }

  .cta-final__btn {
    width: 100%;
  }

  .cta-final__particle {
    display: none;
  }
}

@media (max-width: 480px) {
  .cta-final__card {
    padding: 2rem 1.25rem;
    border-radius: 1.25rem;
  }

  .cta-final__btn {
    animation: none;
  }
}

/* ==========================================
   FOOTER (Balanced)
   ========================================== */

.footer {
  background: var(--color-dark);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand column */
.footer__brand {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.footer__logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}


.footer__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  margin-bottom: 1.5rem;
}

/* Social icons */
.footer__socials {
  display: flex;
  gap: 0.75rem;
}

.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: background 300ms, color 300ms;
}

.footer__socials a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

.footer__socials a:focus-visible {
  outline: 2px dashed rgba(255, 255, 255, 0.4);
  outline-offset: 2px;
}

.footer__socials svg {
  fill: currentColor;
}

/* Columns */
.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 250ms;
  position: relative;
  display: inline-block;
  width: fit-content;
}

.footer__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 350ms var(--ease-out);
}

.footer__links a:hover {
  color: #FFFFFF;
}

.footer__links a:hover::after {
  width: 100%;
}

.footer__links a:focus-visible {
  outline: 2px dashed rgba(255, 255, 255, 0.4);
  outline-offset: 2px;
}

/* Contact column */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 250ms;
}

.footer__contact-item:hover {
  color: #FFFFFF;
}

.footer__contact-item:focus-visible {
  outline: 2px dashed rgba(255, 255, 255, 0.4);
  outline-offset: 2px;
}

.footer__contact-item svg {
  flex-shrink: 0;
  stroke: rgba(255, 255, 255, 0.5);
}

/* WhatsApp badge */
.footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #25D366;
  margin-top: 0.5rem;
  transition: background 300ms, border-color 300ms;
  width: fit-content;
}

.footer__whatsapp:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.3);
}

.footer__whatsapp:focus-visible {
  outline: 2px dashed #25D366;
  outline-offset: 2px;
}

.footer__whatsapp svg {
  flex-shrink: 0;
  fill: #25D366;
}

/* Bottom bar */
.footer__bottom {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__made {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}

/* Footer responsive */
@media (max-width: 960px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: span 1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ==========================================
   PAGE HERO (shared across subpages)
   ========================================== */

.page-hero {
  padding-top: calc(72px + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(3rem, 8vw, 6rem);
  background: var(--color-dark);
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(232, 185, 49, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 20%, rgba(67, 64, 160, 0.06) 0%, transparent 50%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.15;
  color: #FFFFFF;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 1.25rem auto 2rem;
}

/* Buttons inside page-hero (dark bg) */
.page-hero .btn--outline,
.page-hero .btn--outline-dark {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.page-hero .btn--outline:hover,
.page-hero .btn--outline-dark:hover {
  background: var(--color-accent);
  color: var(--color-dark);
}

/* ==========================================
   PRICING SECTION (para-palestrantes)
   ========================================== */

.pricing {
  background: var(--color-surface);
  padding: var(--section-py) 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing__grid--two {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 380px);
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__grid > .pricing__card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Empurra o CTA para a base — mantem alturas iguais com botoes alinhados */
.pricing__grid .pricing__features {
  flex: 1;
}

.pricing__grid .pricing__cta {
  margin-top: auto;
}

/* Destaque sutil do item "15 dias gratis" nos cards */
.pricing__feature--highlight {
  background: rgba(232, 185, 49, 0.08);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  margin: -0.25rem -0.25rem 0.25rem;
}

.pricing__feature--highlight svg {
  color: var(--color-accent);
}

.pricing__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out);
}

.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.pricing__card--featured {
  border-color: var(--color-accent);
  position: relative;
}

.pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing__plan-name {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.pricing__price {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--color-accent);
  margin: 1rem 0;
}

.pricing__price small {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
}

.pricing__period {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.pricing__features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 0;
}

.pricing__features li {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  padding-left: 1.75rem;
  position: relative;
}

.pricing__features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.pricing__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 0.875rem 1.75rem;
  border-radius: 0.625rem;
  width: 100%;
  background: var(--color-accent);
  color: #FFFFFF;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out), background-color 0.3s;
}

.pricing__cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232, 185, 49, 0.3);
}

.pricing__cta:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 185, 49, 0.2);
}

@media (max-width: 768px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .pricing__card--featured {
    order: -1;
  }
}

/* ==========================================
   BENEFITS GRID (para-palestrantes)
   ========================================== */

.benefits {
  background: var(--color-bg);
  padding: var(--section-py) 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.benefits__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  padding: 2rem;
}

.benefits__card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
  transition: background 300ms, transform 300ms var(--ease-spring);
}

.benefits__card:hover .benefits__card-icon {
  background: rgba(232, 185, 49, 0.15);
  transform: scale(1.1);
}

.benefits__card-title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.benefits__card-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq {
  background: var(--color-surface);
  padding: var(--section-py) 0;
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 250ms;
}

.faq__question:hover {
  color: var(--color-accent);
}

.faq__question svg {
  transform: rotate(0deg);
  transition: transform 300ms var(--ease-out);
  flex-shrink: 0;
}

.faq__item--open .faq__question svg {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-out);
}

.faq__item--open .faq__answer {
  max-height: 500px;
}

.faq__answer p {
  padding-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

.about-mission {
  background: var(--color-surface);
  padding: var(--section-py) 0;
}

.about-mission__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.about-mission__text {
  max-width: 520px;
}

.about-mission__visual {
  background: var(--color-primary);
  border-radius: 2rem;
  height: 360px;
  position: relative;
  overflow: hidden;
}

.about-numbers {
  background: var(--color-bg);
  padding: var(--section-py) 0;
}

.about-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.about-numbers__item-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--color-accent);
}

.about-numbers__item-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-top: 0.25rem;
}

.about-pillars {
  background: var(--color-surface);
  padding: var(--section-py) 0;
}

.about-pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-pillars__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  padding: 2rem;
}

.about-pillars__card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
  transition: background 300ms, transform 300ms var(--ease-spring);
}

.about-pillars__card:hover .about-pillars__card-icon {
  background: rgba(232, 185, 49, 0.15);
  transform: scale(1.1);
}

.about-pillars__card-title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.about-pillars__card-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .about-mission__grid {
    grid-template-columns: 1fr;
  }

  .about-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-pillars__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   BLOG LISTING
   ========================================== */

.blog-grid {
  background: var(--color-bg);
  padding: var(--section-py) 0;
}

.blog-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.blog-card__image {
  width: 100%;
  height: 200px;
  background: var(--color-muted-bg);
  object-fit: cover;
}

.blog-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.blog-card__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.blog-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  flex: 1;
}

.blog-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

@media (max-width: 960px) {
  .blog-grid__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid__list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   BLOG ARTICLE
   ========================================== */

.article {
  padding-top: calc(72px + 3rem);
  padding-bottom: var(--section-py);
}

.article__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.article__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.article__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.article__meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.article__content {
  max-width: 720px;
  margin: 0 auto;
}

.article__content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
  color: var(--color-text);
}

.article__content h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--color-text);
}

.article__content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.article__content ul,
.article__content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article__content li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}

.article__content blockquote {
  border-left: 3px solid var(--color-accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
}

.article__content strong {
  color: var(--color-text);
  font-weight: 600;
}

.article__cta {
  max-width: 720px;
  margin: 3rem auto 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
}

.article__cta-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.article__cta-text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

/* Active nav state for subpages */
.header__link--active {
  color: #FFFFFF;
}

.header--scrolled .header__link--active {
  color: var(--color-text);
}

.header__link--active::after {
  width: 100%;
}

/* ==========================================
   SPEAKER CARD (Directory + Profile Related)
   ========================================== */

.speaker-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 400ms var(--ease-spring), box-shadow 400ms var(--ease-out);
}

.speaker-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.speaker-card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.speaker-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--color-muted-bg);
  overflow: hidden;
}

.speaker-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.speaker-card__photo--placeholder {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 3rem;
}

.speaker-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.speaker-card__name {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.speaker-card__location {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 0.625rem;
}

.speaker-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1rem;
  flex: 1;
}

.speaker-card__tags span {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 100px;
}

.speaker-card__talks {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}

.speaker-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.875rem;
  border-top: 1px solid var(--color-border);
}

.speaker-card__rating {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #F59E0B;
}

.speaker-card__price {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-secondary);
}

/* ==========================================
   BADGES (acumulaveis: Selo Palco, Apogeu, Tier)
   ========================================== */
.badges {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  vertical-align: middle;
}

.badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  cursor: help;
  flex-shrink: 0;
  line-height: 0;
  border: 2px solid rgba(255, 255, 255, 0.9);
  transition: transform 180ms var(--ease-spring);
}

.badge svg {
  width: 16px;
  height: 16px;
}

.badge:hover {
  transform: scale(1.12);
}

/* Selo Verificado (aprovado pela curadoria) — pill azul com texto fixo */
.badge-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  background: rgba(29, 155, 240, 0.12);
  color: #1D9BF0;
  border: 1px solid rgba(29, 155, 240, 0.35);
  line-height: 1;
  white-space: nowrap;
}

.badge-seal svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Apogeu Graduado — verde esmeralda */
.badge--apogeu {
  background: linear-gradient(135deg, #10B981, #059669);
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

/* Tier badges */
.badge--tier.badge--profissional {
  background: linear-gradient(135deg, #60A5FA, #3B82F6);
}

.badge--tier.badge--premium {
  background: linear-gradient(135deg, #A78BFA, #8B5CF6);
  box-shadow: 0 2px 6px rgba(139, 92, 246, 0.25);
}

.badge--tier.badge--elite {
  background: linear-gradient(135deg, #FCD34D, #B8860B);
  box-shadow: 0 2px 10px rgba(184, 134, 11, 0.4);
}

/* Destaque card highlight (Elite) */
.speaker-card--elite {
  border-color: rgba(184, 134, 11, 0.3);
  box-shadow: 0 0 0 1px rgba(184, 134, 11, 0.08);
}

.speaker-card--elite:hover {
  border-color: rgba(184, 134, 11, 0.5);
}

/* Directory search & grid */
.directory-search {
  max-width: 640px;
  margin: 0 auto 2rem;
}

.directory-search__input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3rem;
  border: 1.5px solid var(--color-border);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--color-surface);
  transition: border-color 0.2s, box-shadow 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 1rem center;
}

.directory-search__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(46, 43, 95, 0.08);
}

.directory-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.directory-filter {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  background: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all 250ms;
}

.directory-filter:hover {
  border-color: var(--color-text);
  color: var(--color-text);
}

.directory-filter--active {
  background: var(--color-text);
  color: #FFFFFF;
  border-color: transparent;
}

/* ===== Campanhas sazonais / datas comemorativas ===== */
.directory-seasonal {
  margin: 0 auto 1.75rem;
  text-align: center;
}

.directory-seasonal__title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.directory-seasonal__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.directory-season {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(232, 185, 49, 0.4);
  border-radius: 100px;
  background: rgba(232, 185, 49, 0.08);
  color: var(--color-text);
  cursor: pointer;
  transition: all 250ms;
}

.directory-season::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--season-dot, var(--color-accent));
  flex-shrink: 0;
}

.directory-season:hover {
  border-color: var(--color-accent);
  background: rgba(232, 185, 49, 0.16);
}

.directory-season--now {
  border-color: var(--color-accent);
  background: rgba(232, 185, 49, 0.2);
  box-shadow: 0 2px 10px rgba(232, 185, 49, 0.25);
}

.directory-season--now::after {
  content: 'Em destaque agora';
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--color-accent);
}

.directory-season--active {
  background: var(--color-text);
  color: #FFFFFF;
  border-color: transparent;
}

.directory-season--active::after {
  color: rgba(255, 255, 255, 0.85);
}

.directory-filter select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  cursor: pointer;
  padding-right: 0.5rem;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.directory-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

.directory-load-more {
  text-align: center;
  margin-top: 1rem;
}

/* Skeleton loading */
.speaker-skeleton {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  overflow: hidden;
}

.speaker-skeleton__photo {
  height: 200px;
  background: var(--color-muted-bg);
  animation: skeletonPulse 1.5s ease-in-out infinite;
}

.speaker-skeleton__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.speaker-skeleton__line {
  height: 14px;
  background: var(--color-muted-bg);
  border-radius: 4px;
  margin-bottom: 0.75rem;
  animation: skeletonPulse 1.5s ease-in-out infinite;
}

.speaker-skeleton__line--short { width: 60%; }
.speaker-skeleton__line--medium { width: 80%; }
.speaker-skeleton__line--tags { width: 50%; height: 22px; }

@keyframes skeletonPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Directory responsive */
@media (max-width: 960px) {
  .directory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .directory-grid {
    grid-template-columns: 1fr;
  }

  .directory-filters {
    gap: 0.375rem;
  }

  .directory-filter {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Carrosseis tipo marquee sao visuais ambientes (movimento linear constante,
     sem piscar ou mudar direcao) — preservamos a animacao pois nao causam
     desconforto vestibular e sao parte essencial do design. */
  .speakers__track {
    animation: scrollCarousel 45s linear infinite !important;
  }
  .clients__track {
    animation: scrollClients 60s linear infinite !important;
  }
}


