/* ==========================================================================
   Método de Vendas 4X — Landing Page
   Autor: MB IA para Negócios
   ========================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { color-scheme: dark; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #0B0F14;
  color: #F5F5F5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(47,128,237,0.12), transparent 60%),
    linear-gradient(180deg, #0B0F14 0%, #080B0F 100%);
  background-attachment: fixed;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', system-ui, sans-serif; letter-spacing: -0.02em; line-height: 1.2; }

/* --- Variables --- */
:root {
  --primary: #2F80ED;
  --primary-glow: rgba(47,128,237,0.55);
  --primary-10: rgba(47,128,237,0.1);
  --primary-15: rgba(47,128,237,0.15);
  --primary-40: rgba(47,128,237,0.4);
  --primary-60: rgba(47,128,237,0.6);
  --bg: #0B0F14;
  --card: #1A1F26;
  --border: #2A3040;
  --muted: #8A8FA0;
  --whatsapp: #25D366;
  --radius: 0.75rem;
  --shadow-glow: 0 0 40px -8px var(--primary-glow);
  --shadow-elegant: 0 20px 60px -20px rgba(0,0,0,0.6);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --max-w: 1280px;
}

/* --- Utilities --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .container { padding: 0 2rem; } }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted); }
.text-gradient {
  background: linear-gradient(135deg, #F5F5F5 0%, #5BA3F5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Glass Panel --- */
.glass-panel {
  background: linear-gradient(180deg, rgba(26,31,38,0.7) 0%, rgba(17,21,26,0.7) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(42,48,64,0.6);
  border-radius: var(--radius);
}

/* --- Hover Lift --- */
.hover-lift {
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  border-color: var(--primary-60);
  box-shadow: var(--shadow-glow);
}
@media (hover: none) { .hover-lift:hover { transform: none; } }

/* --- Reveal Animation --- */
.reveal { opacity: 0; }
.reveal.in-view { animation: fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; animation: none !important; }
  .hero__canvas { display: none; }
  .hero__orb, .hero__scan-line, .hero__logo-ring { animation: none !important; }
  .hero__logo { animation: none !important; }
  .hero__grid-bg { animation: none !important; }
  .hero__glow { animation: none !important; }
  .hero__subtitle-line { animation: none !important; color: var(--primary) !important; background: none !important; -webkit-background-clip: unset !important; }
  .badge--pulse { animation: none !important; }
  .speakers-panel { animation: none !important; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 200ms ease;
  will-change: transform;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn__icon { width: 1rem; height: 1rem; flex-shrink: 0; transition: transform 200ms; }
.btn:hover .btn__icon { transform: translateX(2px); }
.btn--md { padding: 0.75rem 1.25rem; font-size: 0.875rem; }
.btn--lg { padding: 1rem 1.75rem; font-size: 1rem; }
@media (min-width: 640px) { .btn--lg { font-size: 1.125rem; } }
.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, #1a5cbf 100%);
  color: #fff;
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
}
.btn--primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  animation: btn-shine 3s ease-in-out infinite;
}
@keyframes btn-shine {
  0%, 70%, 100% { transform: translateX(-100%); }
  30% { transform: translateX(100%); }
}
.btn--primary:hover { transform: scale(1.05); filter: brightness(1.12); }
.btn--ghost { border: 1px solid var(--border); background: rgba(26,31,38,0.4); color: #F5F5F5; backdrop-filter: blur(8px); }
.btn--ghost:hover { border-color: var(--primary-60); background: rgba(26,31,38,0.7); }
.btn--whatsapp { background: var(--whatsapp); color: #0B0F14; font-weight: 700; }
.btn--whatsapp:hover { transform: scale(1.03); filter: brightness(1.1); }
.btn--white { background: #fff; color: #0B0F14; font-weight: 700; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.btn--white:hover { transform: scale(1.03); }

/* --- Nav --- */
.nav { display: flex; align-items: center; justify-content: space-between; max-width: var(--max-w); margin: 0 auto; padding: 1.25rem; position: relative; z-index: 10; }
@media (min-width: 640px) { .nav { padding: 1.25rem 2rem; } }
.nav__brand { display: flex; align-items: center; gap: 0.625rem; }
.nav__logo-box { width: 2.25rem; height: 2.25rem; display: grid; place-items: center; border-radius: 0.5rem; background: var(--primary-15); border: 1px solid var(--primary-40); }
.nav__logo-text { font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; color: var(--primary); }
.nav__title { font-family: var(--font-display); font-size: 0.875rem; font-weight: 600; letter-spacing: -0.02em; }
.nav__cta { display: none; }
@media (min-width: 640px) { .nav__cta { display: inline-flex; } }

/* --- Hero --- */
.hero { position: relative; isolation: isolate; overflow: hidden; }

/* Particle Canvas */
.hero__canvas {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: 0.7;
}

/* Grid BG - animated drift */
.hero__grid-bg {
  position: absolute; inset: 0; z-index: 1; opacity: 0.5;
  background-image:
    linear-gradient(rgba(47,128,237,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,128,237,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  animation: grid-drift 20s linear infinite;
}
@keyframes grid-drift {
  from { background-position: 0 0; }
  to { background-position: 56px 56px; }
}

/* Main Glow - breathing */
.hero__glow {
  position: absolute; inset: 0; top: 0; z-index: 1; height: 100%;
  background: radial-gradient(ellipse 60% 45% at 50% 40%, rgba(47,128,237,0.2), transparent 55%);
  animation: glow-breathe 4s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

/* Floating Orbs */
.hero__orbs { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero__orb {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.4;
  will-change: transform;
}
.hero__orb--1 {
  width: 320px; height: 320px; top: -80px; right: -60px;
  background: radial-gradient(circle, rgba(47,128,237,0.5), transparent 70%);
  animation: orb-float-1 8s ease-in-out infinite;
}
.hero__orb--2 {
  width: 240px; height: 240px; bottom: 10%; left: -40px;
  background: radial-gradient(circle, rgba(91,163,245,0.4), transparent 70%);
  animation: orb-float-2 10s ease-in-out infinite;
}
.hero__orb--3 {
  width: 180px; height: 180px; top: 40%; right: 20%;
  background: radial-gradient(circle, rgba(47,128,237,0.35), transparent 70%);
  animation: orb-float-3 12s ease-in-out infinite;
}
@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 40px) scale(1.1); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}
@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.15); }
}
@keyframes orb-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(-20px, 30px) scale(1.08); }
  80% { transform: translate(30px, -15px) scale(0.92); }
}

/* Scan Line Effect */
.hero__scan-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg, transparent, var(--primary-60), transparent);
  opacity: 0.6;
  animation: scan-line 6s ease-in-out infinite;
}
@keyframes scan-line {
  0% { top: 0; opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

/* Hero Content — Centered Layout */
.hero__content { position: relative; z-index: 5; max-width: var(--max-w); margin: 0 auto; padding: 2rem 1.25rem 3.5rem; display: flex; flex-direction: column; align-items: center; }
.hero__content--centered { padding-top: 1rem; padding-bottom: 3rem; }
@media (min-width: 640px) { .hero__content--centered { padding-top: 1.5rem; padding-bottom: 4rem; } }
@media (min-width: 1024px) { .hero__content--centered { padding-top: 2rem; padding-bottom: 4rem; } }
.hero__center { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; max-width: 52rem; margin: 0 auto; }

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 9999px; border: 1px solid var(--primary-40); background: var(--primary-10);
  padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 500; color: var(--primary);
  backdrop-filter: blur(4px); width: fit-content;
}
.badge__icon { width: 0.875rem; height: 0.875rem; }
.badge--white { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: #fff; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.6875rem; }
.badge--pulse { animation: badge-pulse 2.5s ease-in-out infinite; }
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47,128,237,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(47,128,237,0); }
}

/* Hero Logo — DESTAQUE CENTRAL */
.hero__logo-wrap {
  position: relative; margin-top: 0.5rem; overflow: visible; border-radius: 1.5rem;
  padding: 0.75rem 1.5rem; width: 100%; max-width: 40rem;
}
.hero__logo-wrap--glow {
  background: radial-gradient(ellipse at 50% 50%, rgba(47,128,237,0.12), transparent 60%);
}
.hero__logo-wrap--center {
  display: flex; align-items: center; justify-content: center; margin-left: auto; margin-right: auto;
}
@media (min-width: 640px) { .hero__logo-wrap { padding: 1rem 2rem; margin-top: 0.75rem; max-width: 44rem; } }
@media (min-width: 1024px) { .hero__logo-wrap { padding: 1.25rem 2.5rem; margin-top: 1rem; max-width: 48rem; } }
.hero__logo {
  position: relative; z-index: 2;
  width: 100%; max-width: 100%; object-fit: contain; display: block; margin: 0 auto;
  filter: drop-shadow(0 0 40px rgba(47,128,237,0.35)) drop-shadow(0 0 80px rgba(47,128,237,0.15)) drop-shadow(0 4px 24px rgba(0,0,0,0.5));
  animation: logo-float 4s ease-in-out infinite;
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
/* Rotating ring around logo */
.hero__logo-ring {
  position: absolute; inset: -10px; z-index: 1;
  border-radius: 50%; border: 1px solid transparent;
  border-top-color: var(--primary-40); border-right-color: rgba(47,128,237,0.15);
  animation: ring-spin 8s linear infinite;
  opacity: 0.7;
}
@keyframes ring-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero__subtitle { margin-top: 0.25rem; font-size: 1.375rem; font-weight: 500; color: rgba(245,245,245,0.9); max-width: 40rem; text-align: center; }
@media (min-width: 640px) { .hero__subtitle { font-size: 1.625rem; } }
@media (min-width: 1024px) { .hero__subtitle { font-size: 1.875rem; } }
.hero__subtitle-line {
  font-weight: 700; color: #fff;
  background: linear-gradient(90deg, #fff, var(--primary), #fff);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer-text 3s ease-in-out infinite;
}
@keyframes shimmer-text {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Info Chips */
.info-chips { margin-top: 0.75rem; display: grid; grid-template-columns: 1fr; gap: 0.5rem; font-size: 0.875rem; }
@media (min-width: 640px) { .info-chips { grid-template-columns: repeat(3, auto); font-size: 0.9375rem; } }
.info-chips--center { justify-content: center; justify-items: center; }
.info-chip {
  display: flex; align-items: center; gap: 0.5rem; min-width: 0;
  border-radius: 0.5rem; border: 1px solid var(--border); background: rgba(26,31,38,0.5);
  padding: 0.5rem 0.75rem; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: border-color 300ms, box-shadow 300ms;
}
.info-chip:hover { border-color: var(--primary-40); box-shadow: 0 0 16px -4px rgba(47,128,237,0.3); }
.info-chip__icon { width: 1rem; height: 1rem; flex-shrink: 0; color: var(--primary); }
.info-chip span { font-weight: 500; color: rgba(245,245,245,0.9); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.hero__desc { margin-top: 0.75rem; max-width: 40rem; font-size: 1.0625rem; line-height: 1.7; color: var(--muted); text-align: center; }
.hero__desc--center { margin-left: auto; margin-right: auto; }
@media (min-width: 640px) { .hero__desc { font-size: 1.125rem; } }
.hero__ctas { margin-top: 1.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }
.hero__ctas--center { justify-content: center; }
.hero__ctas .btn--primary { font-size: 1.0625rem; padding: 1.125rem 2rem; }
@media (min-width: 640px) { .hero__ctas .btn--primary { font-size: 1.125rem; padding: 1.25rem 2.25rem; } }

/* --- Speakers Panel (Hero) --- */
.speakers-panel {
  padding: 1rem; border-radius: 1rem; overflow: hidden;
  box-shadow: var(--shadow-elegant), 0 0 60px -20px rgba(47,128,237,0.2);
  border: 1px solid rgba(47,128,237,0.2);
  background: linear-gradient(180deg, rgba(26,31,38,0.8) 0%, rgba(11,15,20,0.9) 100%);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  animation: panel-appear 1s ease-out 0.3s both;
}
@keyframes panel-appear {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.speakers-panel__header { display: flex; align-items: center; justify-content: space-between; padding: 0 0.5rem 0.75rem; }
.speakers-panel__label { font-family: var(--font-display); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); }
.speakers-panel__live { display: flex; align-items: center; gap: 0.25rem; font-size: 0.6875rem; color: var(--primary); }
.pulse-dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: var(--primary); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.speakers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
@media (min-width: 640px) { .speakers-grid { gap: 0.75rem; } }
.speaker-thumb { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 0.75rem; background: var(--card); border: 1px solid var(--border); }
.speaker-thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: all 500ms; }
.speaker-thumb:hover img { transform: scale(1.05); filter: grayscale(0); }
.speaker-thumb__info { position: absolute; inset: auto 0 0 0; padding: 0.625rem; background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4), transparent); }
.speaker-thumb__name { font-family: var(--font-display); font-size: 0.75rem; font-weight: 600; line-height: 1.2; }
@media (min-width: 640px) { .speaker-thumb__name { font-size: 0.8125rem; } }
.speaker-thumb__role { margin-top: 0.125rem; font-size: 0.625rem; color: var(--primary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (min-width: 640px) { .speaker-thumb__role { font-size: 0.6875rem; } }
.speakers-panel__footer { margin-top: 0.75rem; display: flex; align-items: center; justify-content: space-between; border-radius: 0.5rem; border: 1px solid rgba(42,48,64,0.6); background: rgba(11,15,20,0.4); padding: 0.5rem 0.75rem; font-size: 0.6875rem; color: var(--muted); }
.speakers-panel__4x { font-family: var(--font-display); font-weight: 600; color: #F5F5F5; }

/* --- Section --- */
.section { position: relative; padding: 5rem 0; }
@media (min-width: 640px) { .section { padding: 7rem 0; } }
.section__eyebrow { text-align: center; font-family: var(--font-display); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--primary); margin-bottom: 1rem; }
.section__title { text-align: center; font-size: 1.875rem; font-weight: 700; max-width: 48rem; margin: 0 auto; }
@media (min-width: 640px) { .section__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section__title { font-size: 3rem; } }
.section__conclusion { text-align: center; margin-top: 3rem; font-size: 1.125rem; color: var(--muted); max-width: 40rem; margin-left: auto; margin-right: auto; }
@media (min-width: 640px) { .section__conclusion { font-size: 1.25rem; } }
.section__conclusion strong { color: #F5F5F5; }

/* --- Pains Grid --- */
.pains-grid { margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .pains-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pains-grid { grid-template-columns: repeat(3, 1fr); } }
.pain-card { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border-radius: 0.75rem; }
.pain-card__icon { width: 2.75rem; height: 2.75rem; flex-shrink: 0; display: grid; place-items: center; border-radius: 0.5rem; background: var(--primary-10); border: 1px solid rgba(47,128,237,0.3); color: var(--primary); }
.pain-card__icon svg { width: 1.25rem; height: 1.25rem; }
.pain-card__text { font-size: 0.9375rem; font-weight: 500; }

/* --- Method Grid --- */
.method-grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .method-grid { grid-template-columns: repeat(4, 1fr); } }
.method-card { padding: 1.5rem; border-radius: 0.75rem; }
.method-card__header { display: flex; align-items: center; justify-content: space-between; }
.method-card__step { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: var(--primary); }
@media (min-width: 640px) { .method-card__step { font-size: 2.25rem; } }
.method-card__num { border-radius: 9999px; border: 1px solid var(--border); background: rgba(11,15,20,0.4); padding: 0.25rem 0.625rem; font-family: var(--font-display); font-size: 0.625rem; letter-spacing: 0.1em; color: var(--muted); }
.method-card__title { margin-top: 0.75rem; font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; letter-spacing: -0.02em; }
.method-card__desc { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted); }

.method-highlight { margin-top: 3rem; max-width: 48rem; margin-left: auto; margin-right: auto; border-radius: 1rem; border: 1px solid rgba(47,128,237,0.3); background: rgba(47,128,237,0.05); padding: 1.5rem 2rem; text-align: center; }
.method-highlight p { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; line-height: 1.4; }
@media (min-width: 640px) { .method-highlight p { font-size: 1.5rem; } }

/* --- Learn Grid --- */
.learn-grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 1024px) { .learn-grid { grid-template-columns: repeat(3, 1fr); } }
.learn-card { display: flex; flex-direction: column; padding: 1.75rem; border-radius: 1rem; }
.learn-card__header { display: flex; align-items: center; gap: 0.75rem; }
.learn-card__icon-box { width: 3rem; height: 3rem; flex-shrink: 0; display: grid; place-items: center; border-radius: 0.75rem; background: var(--primary-15); border: 1px solid var(--primary-40); color: var(--primary); }
.learn-card__icon-box svg { width: 1.5rem; height: 1.5rem; }
.learn-card__tag { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
.learn-card__list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.9375rem; }
.learn-card__list li { display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(245,245,245,0.9); }
.learn-card__list li::before { content: ''; width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.2rem; background: var(--primary); mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E"); mask-size: contain; -webkit-mask-size: contain; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; }

/* --- Diferencial --- */
.diferencial { text-align: center; max-width: 56rem; margin: 0 auto; }
.diferencial__desc { margin-top: 1.5rem; font-size: 1.125rem; color: var(--muted); max-width: 40rem; margin-left: auto; margin-right: auto; }
.diferencial__flow { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; font-size: 0.875rem; font-weight: 600; }
@media (min-width: 640px) { .diferencial__flow { font-size: 1rem; } }
.flow-tag { border-radius: 9999px; border: 1px solid var(--primary-40); background: var(--primary-10); padding: 0.5rem 1rem; color: var(--primary); }
.flow-arrow { color: var(--primary-60); }
.diferencial .btn { margin-top: 2.5rem; }

/* --- Speakers Full Grid --- */
.speakers-full-grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .speakers-full-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .speakers-full-grid { grid-template-columns: repeat(4, 1fr); } }
.speaker-card { position: relative; overflow: hidden; border-radius: 1rem; border: 1px solid var(--border); background: var(--card); transition: all 300ms; }
.speaker-card:hover { border-color: var(--primary-60); box-shadow: var(--shadow-glow); }
.speaker-card__img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.speaker-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); transition: all 700ms; }
.speaker-card:hover .speaker-card__img-wrap img { transform: scale(1.06); filter: grayscale(0); }
.speaker-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg), rgba(11,15,20,0.2), transparent); }
.speaker-card__info { position: relative; margin-top: -4rem; padding: 1.25rem; }
.speaker-card__role { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary); }
.speaker-card__name { margin-top: 0.375rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
.speaker-card__bio { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted); }

/* --- Audience Grid --- */
.audience-grid { margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .audience-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .audience-grid { grid-template-columns: repeat(6, 1fr); } }
.audience-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; padding: 1.25rem; text-align: center; border-radius: 0.75rem; }
.audience-item__icon { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.audience-item span { font-size: 0.8125rem; font-weight: 500; }
@media (min-width: 640px) { .audience-item span { font-size: 0.875rem; } }

/* --- Venue --- */
.venue-grid { max-width: 64rem; margin: 0 auto; display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .venue-grid { grid-template-columns: 2fr 3fr; } }
.venue-info { padding: 1.75rem; border-radius: 1rem; }
.venue-info__label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary); }
.venue-info__label-icon { width: 1rem; height: 1rem; }
.venue-info__name { margin-top: 0.75rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
@media (min-width: 640px) { .venue-info__name { font-size: 1.875rem; } }
.venue-info__city { margin-top: 0.25rem; color: var(--muted); }
.venue-info__details { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.venue-row { display: flex; align-items: center; gap: 0.75rem; }
.venue-row svg { width: 1rem; height: 1rem; flex-shrink: 0; color: var(--muted); }
.venue-row span { color: rgba(245,245,245,0.9); }
.venue-row--highlight svg { color: var(--primary); }
.venue-row--highlight span { font-weight: 600; color: var(--primary); }
.venue-info__ctas { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.venue-map { overflow: hidden; border-radius: 1rem; border: 1px solid var(--border); min-height: 20rem; }
.venue-map iframe { width: 100%; height: 100%; min-height: 20rem; border: 0; filter: invert(0.92) hue-rotate(180deg) saturate(0.7); }
@media (min-width: 1024px) { .venue-map iframe { min-height: 100%; } }

/* --- CTA Final --- */
.cta-final { padding: 6rem 0; }
@media (min-width: 640px) { .cta-final { padding: 7rem 0; } }
.cta-box { position: relative; overflow: hidden; border-radius: 1.5rem; padding: 2rem; }
@media (min-width: 640px) { .cta-box { padding: 3.5rem; } }
.cta-box__bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary) 0%, #1a3a6e 100%); }
.cta-box__grid { position: absolute; inset: 0; opacity: 0.3; background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 48px 48px; }
.cta-box__content { position: relative; }
.cta-box__title { margin-top: 1.25rem; font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: #fff; line-height: 1.2; }
@media (min-width: 640px) { .cta-box__title { font-size: 3rem; } }
.cta-box__desc { margin-top: 1.25rem; max-width: 40rem; font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.85); }
@media (min-width: 640px) { .cta-box__desc { font-size: 1.125rem; } }
.cta-box__actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.cta-box__vagas { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.9); }
.cta-box__vagas svg { width: 1rem; height: 1rem; }

/* --- Footer --- */
.footer { border-top: 1px solid var(--border); background: rgba(11,15,20,0.6); }
.footer__grid { display: grid; gap: 2.5rem; padding: 3.5rem 1.25rem; }
@media (min-width: 640px) { .footer__grid { padding: 3.5rem 2rem; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr 1fr; } }
.footer__logo { width: 100%; max-width: 260px; object-fit: contain; }
.footer__desc { margin-top: 1rem; font-size: 0.875rem; color: var(--muted); max-width: 24rem; }
.footer__heading { font-family: var(--font-display); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); }
.footer__phone { margin-top: 0.75rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; transition: color 200ms; }
.footer__phone:hover { color: var(--primary); }
.footer__phone svg { width: 1rem; height: 1rem; }
.footer__social-links { margin-top: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.footer__social-btn { width: 2.5rem; height: 2.5rem; display: grid; place-items: center; border-radius: 0.5rem; border: 1px solid var(--border); background: rgba(26,31,38,0.4); color: var(--muted); transition: all 200ms; }
.footer__social-btn:hover { border-color: var(--primary-60); color: var(--primary); }
.footer__social-btn svg { width: 1rem; height: 1rem; }
.footer__bottom { border-top: 1px solid var(--border); }
.footer__bottom-inner { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 0.5rem; padding: 1.25rem; font-size: 0.75rem; color: var(--muted); }
@media (min-width: 640px) { .footer__bottom-inner { flex-direction: row; align-items: center; padding: 1.25rem 2rem; } }

/* --- Sticky CTA --- */
.sticky-cta {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 50;
  display: flex; align-items: center; gap: 0.5rem;
  border-radius: 9999px; background: var(--primary); color: #fff;
  padding: 0.875rem 1.25rem; font-size: 0.875rem; font-weight: 600;
  box-shadow: var(--shadow-glow);
  transition: all 300ms; transform: translateY(1.5rem); opacity: 0; pointer-events: none;
}
@media (min-width: 640px) { .sticky-cta { bottom: 1.75rem; right: 1.75rem; font-size: 1rem; } }
.sticky-cta.visible { transform: translateY(0); opacity: 1; pointer-events: auto; animation: pulse-ring 2.2s ease-out infinite; }
.sticky-cta:hover { transform: scale(1.04); }
.sticky-cta svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(47,128,237,0.5); } 100% { box-shadow: 0 0 0 18px rgba(47,128,237,0); } }
