@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Brand Colors */
  --color-brand-blue: #1c1c1c;
  --color-brand-blue-dark: #0f0f0f;
  --color-brand-blue-soft: #f9f9f9;
  --color-brand-white: #FFFFFF;
  --color-white: #FFFFFF;
  
  /* Gray Scale */
  --color-gray-900: #1c1c1c;
  --color-gray-700: #303030;
  --color-gray-600: #545454;
  --color-gray-500: #787878;
  --color-gray-300: #ededed;

  /* Semantic Variables */
  --color-bg: #f5f5f5;
  --color-bg-elevated: #fcfcfc;
  --color-text-primary: var(--color-gray-900);
  --color-text-brand: var(--color-brand-blue);
  --color-text-secondary: var(--color-gray-600);
  --color-border: #ededed;
  --color-border-strong: rgba(28, 28, 28, 0.16);
  --atom-blue: #0a4dff;
  --atom-blue-soft: #8ea2ff;
  --atom-line: rgba(28, 28, 28, 0.18);
  --atom-line-blue: rgba(10, 77, 255, 0.28);

  /* Typography */
  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'DM Serif Text', Georgia, serif;
  --radius-pill: 999px;
  --radius-card: 24px;
  --shadow-soft:
    inset 0 0 20px 1.64px rgba(255, 255, 255, 0.15),
    0 0.84px 0.5px -0.31px rgba(0, 0, 0, 0.13),
    0 1.99px 1.19px -0.62px rgba(0, 0, 0, 0.13),
    0 3.63px 2.18px -0.94px rgba(0, 0, 0, 0.13),
    0 6.04px 3.62px -1.25px rgba(0, 0, 0, 0.13),
    0 9.75px 5.85px -1.56px rgba(0, 0, 0, 0.13),
    0 15.96px 9.57px -1.88px rgba(0, 0, 0, 0.13),
    0 27.48px 16.49px -2.19px rgba(0, 0, 0, 0.13),
    0 50px 30px -2.5px rgba(0, 0, 0, 0.13);
  --shadow-card:
    0 0.78px 0.39px -0.36px rgba(0, 0, 0, 0.06),
    0 1.92px 0.96px -0.71px rgba(0, 0, 0, 0.06),
    0 3.64px 1.82px -1.07px rgba(0, 0, 0, 0.06),
    0 6.35px 3.18px -1.43px rgba(0, 0, 0, 0.06),
    0 11.05px 5.53px -1.79px rgba(0, 0, 0, 0.06),
    0 20.24px 10.12px -2.14px rgba(0, 0, 0, 0.06),
    0 40px 20px -2.5px rgba(0, 0, 0, 0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    background-color: var(--color-bg); 
    color: var(--color-text-primary); 
    font-family: var(--font-body); 
    line-height: 1.6; 
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 9%, rgba(255, 255, 255, 0.9), transparent 22%),
        radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.75), transparent 24%),
        radial-gradient(circle at 50% 33%, rgba(232, 232, 232, 0.7), transparent 28%),
        linear-gradient(180deg, #f9f9f9 0%, #f5f5f5 52%, #f9f9f9 100%);
    filter: blur(0.2px);
}

/* SCIENT Background Texture */
.texture-logo-repeat {
    position: fixed; 
    top: 0; left: 0; width: 100%; height: 100%; 
    z-index: -1; pointer-events: none;
    background-image:
        linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.5) 40%, transparent 68%),
        repeating-linear-gradient(to right, transparent, transparent 96px, rgba(28, 28, 28, 0.025) 96px, rgba(28, 28, 28, 0.025) 97px);
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 5%; }

h1, h2, h3, h4 { 
    font-family: var(--font-display); 
    font-weight: 700; 
    line-height: 1.15; 
    letter-spacing: -0.045em; 
    color: var(--color-text-primary);
}
p { color: var(--color-text-secondary); font-size: 1rem; }

/* Global Pill Tags */
.pill-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.45rem 0.85rem; background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--color-border); border-radius: var(--radius-pill);
    font-size: 0.75rem; font-weight: 650; letter-spacing: 0.04em; 
    text-transform: uppercase; margin-bottom: 2rem;
}
.pill-tag.centered { margin-inline: auto; display: inline-flex; }
.hero-live-tag {
    max-width: min(100%, 48ch);
    padding: 0.38rem 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.35;
    text-transform: none;
    white-space: nowrap;
}
.hero-live-tag__text { min-width: 0; white-space: nowrap; }
.dot, .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #00c220; box-shadow: 0 0 0 4px rgba(0, 194, 32, 0.12); }

/* Buttons */
.btn {
    display: inline-flex; justify-content: center; align-items: center; gap: 8px;
    padding: 12px 28px; font-size: 14px; font-weight: 600;
    min-height: 48px;
    border-radius: var(--radius-pill); cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; 
    text-decoration: none; letter-spacing: 0; border: none; 
    font-family: var(--font-body);
}
.btn-primary { background: var(--color-brand-blue); color: var(--color-white); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--color-brand-blue-dark); transform: translateY(-1px); }
.btn-secondary { background: rgba(255, 255, 255, 0.64); color: var(--color-text-primary); border: 1px solid var(--color-border); }
.btn-secondary:hover { background: var(--color-brand-blue); color: var(--color-white); box-shadow: var(--shadow-soft); }

/* Header */
.glass-header { padding: 1.5rem 0; position: sticky; top: 0; z-index: 50; background: rgba(245, 245, 245, 0.72); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid rgba(237, 237, 237, 0.7); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; }
.logo img { display: block; height: 28px; width: auto; filter: grayscale(1) contrast(1.2); }
@media (max-width: 768px) { .logo img { height: 24px; } }
.countdown-tag { font-size: 0.85rem; color: var(--color-text-secondary); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
@media (max-width: 768px) { .hide-mobile { display: none; } }

/* -------------------------------------
   DARK HERO SECTION (SCIENT DS)
------------------------------------- */
.hero { 
    padding-top: 100px; padding-bottom: 8rem; position: relative; 
    background:
        radial-gradient(circle at 85% 20%, rgba(37, 99, 235, 0.08), transparent 45%),
        radial-gradient(circle at 15% 80%, rgba(37, 99, 235, 0.05), transparent 45%),
        #ffffff;
    color: var(--color-text-primary); 
    overflow-x: clip;
    overflow-y: visible;
}
.hero .pill-tag { background: rgba(255, 255, 255, 0.8); border-color: var(--color-border); color: var(--color-text-secondary); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.hero .dot, .hero .pulse-dot { background: #00c220; }
.hero .btn-primary { background: var(--color-brand-blue); color: #ffffff; box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2); }

.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr); gap: 4rem; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; text-align: center; } }
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 100%;
    margin-bottom: 1.25rem;
    color: var(--color-text-secondary);
    font-size: 0.88rem;
    line-height: 1.3;
}
.hero-kicker span {
    color: var(--color-text-primary);
    font-weight: 700;
    white-space: nowrap;
}
.hero-kicker__divider {
    width: 1px;
    height: 1rem;
    background: rgba(28, 28, 28, 0.18);
    flex: 0 0 auto;
}
.hero-kicker strong {
    color: var(--color-text-primary);
    font-size: 0.95rem;
    font-weight: 700;
}
.hero-title, .hero-headline { font-size: clamp(2.35rem, 4.2vw, 3.5rem); margin-bottom: 1.5rem; font-weight: 800; max-width: 17ch; line-height: 1.05; letter-spacing: -0.058em; color: var(--color-text-primary); }
.hero-headline::after {
    content: "";
    display: block;
    width: 82px;
    height: 1px;
    margin-top: 1.35rem;
    background: rgba(28, 28, 28, 0.18);
}
@media (max-width: 900px) { .hero-title, .hero-headline, .hero-kicker { margin-inline: auto; } }
.hero-subtitle, .hero-sub { font-size: 1.08rem; color: var(--color-text-secondary); margin-bottom: 2.5rem; font-weight: 400; max-width: 35rem; line-height: 1.7; }
.hero .hero-kicker { color: var(--color-text-secondary); }
.hero .hero-kicker span { color: var(--color-text-primary); }
.hero .hero-kicker strong { color: var(--color-brand-blue); }
.hero .hero-kicker__divider,
.hero .hero-headline::after { background: var(--color-border-strong); }
.hero .hero-title,
.hero .hero-headline {
    color: var(--color-text-primary);
    text-shadow: none;
}
.hero .hero-subtitle,
.hero .hero-sub { color: var(--color-text-secondary); }
@media (max-width: 900px) { .hero-subtitle, .hero-sub { margin-inline: auto; } }
@media (max-width: 900px) { .hero-live-tag { margin-inline: auto; } }
@media (max-width: 768px) { .hero-live-tag { font-size: 0.64rem; padding: 0.34rem 0.65rem; gap: 0.4rem; } }
@media (max-width: 520px) {
    .hero-grid,
    .hero-content {
      width: 100%;
      max-width: 100%;
      min-width: 0;
    }
    .hero-content {
      overflow: hidden;
    }
    .hero-content * {
      min-width: 0;
      overflow-wrap: anywhere;
    }
    .hero-live-tag { white-space: normal; }
    .hero-live-tag__text { white-space: normal; }
    .hero-kicker { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; width: 100%; }
    .hero-kicker span,
    .hero-kicker strong { white-space: normal; max-width: 100%; }
    .hero-kicker {
      max-width: 18.5rem;
      margin-left: auto;
      margin-right: auto;
      font-size: 0.84rem;
    }
    .hero-kicker__divider { width: 2rem; height: 1px; }
    .hero-title,
    .hero-headline {
      width: 100%;
      max-width: 8.9em;
      font-size: clamp(1.85rem, 8.4vw, 2.08rem);
      letter-spacing: -0.035em;
      text-wrap: normal;
      word-break: normal;
      overflow-wrap: normal;
    }
    .hero-headline::after {
      margin-inline: auto;
    }
    .hero-subtitle,
    .hero-sub {
      max-width: 19rem;
      font-size: 1rem;
      line-height: 1.6;
    }
}

/* Atom Hero Graphic */
.hero-visual { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; }
.floating-glass-composition { position: relative; width: 100%; height: 100%; isolation: isolate; }
.hero-atom-stage {
  position: absolute;
  inset: -16% -20% -10% -20%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
}
.hero-atom-stage::before {
  content: "";
  display: none;
}
.hero-atom-stage::after {
  content: "";
  display: none;
}
.hero-atom-canvas,
.hero-atom-tracker,
.hero-atom-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-atom-canvas {
  z-index: 2;
}
.hero-atom-tracker {
  z-index: 3;
}
.hero-atom-fallback {
  display: block;
  object-fit: contain;
  opacity: 0;
  transform: scale(1);
  transition: opacity 220ms ease, transform 220ms ease;
}
.hero-atom-stage.atom-ready .hero-atom-fallback {
  opacity: 0;
  transform: scale(0.98);
}
.hero-atom-stage.atom-failed .hero-atom-fallback,
.hero-atom-stage.atom-static .hero-atom-fallback {
  opacity: 0.92;
}
.animated-atom-wrapper { display: none; }
.animated-atom-wrapper:hover { transform: scale(1.04); }
.animated-atom-inner { width: 100%; height: 100%; animation: atomWiggle 10s ease-in-out infinite; }
.animated-atom { width: 100%; height: 100%; animation: atomSpin 40s linear infinite; }
@keyframes atomWiggle {  0%, 100% { transform: translate(0, 0); } 25% { transform: translate(15px, 10px); } 50% { transform: translate(5px, 20px); } 75% { transform: translate(-10px, 10px); } }
@keyframes atomSpin { 100% { transform: rotate(360deg); } }

/* Floaters */
.glass-ui-card { 
    position: absolute;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.56));
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 24px; z-index: 5; color: var(--color-text-primary);
    box-shadow:
      0 18px 42px rgba(10, 77, 255, 0.12),
      0 8px 22px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      inset 0 -1px 0 rgba(10, 77, 255, 0.08);
    backdrop-filter: blur(24px) saturate(1.55) brightness(1.08);
    -webkit-backdrop-filter: blur(24px) saturate(1.55) brightness(1.08);
}
.main-card { top: 35%; left: 1%; width: 230px; padding: 0.95rem; animation: floatSmall 6s ease-in-out infinite; z-index: 6; opacity: 0.82; transform-origin: left center; }
.ui-header { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 650; margin-bottom: 0.75rem; border-bottom: 1px solid var(--color-border); padding-bottom: 0.45rem; color: var(--color-text-primary); }
.data-skeleton { background: rgba(28, 28, 28, 0.08); height: 6px; border-radius: 999px; margin-bottom: 0.6rem; }
.s1 { width: 100%; } .s2 { width: 80%; } .s3 { width: 60%; }

.float-card { padding: 0.72rem 0.8rem; display: flex; align-items: center; gap: 0.7rem; width: 195px; opacity: 1; }
.f1 { bottom: 10%; left: 42%; animation: floatTiny 8s ease-in-out infinite reverse; transform-origin: center; }
.f2 { top: 10%; left: 19%; animation: floatTiny 7s ease-in-out infinite 2s; transform-origin: center; }
.f-icon { width: 26px; height: 26px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; background: var(--color-text-primary); color: #fff; box-shadow: var(--shadow-soft); flex: 0 0 auto; }
.f-text strong { display: block; font-size: 0.74rem; color: var(--color-text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.f-text span { display: block; font-size: 0.64rem; color: var(--color-text-secondary); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
@keyframes floatSlow { 50% { transform: translateY(-15px); } }
@keyframes floatSmall { 0%, 100% { transform: scale(0.86) translateY(0); } 50% { transform: scale(0.86) translateY(-10px); } }
@keyframes floatTiny { 0%, 100% { transform: scale(0.82) translateY(0); } 50% { transform: scale(0.82) translateY(-8px); } }

/* -------------------------------------
   GLOBAL SECTIONS
------------------------------------- */
.topics-section, .takeaways, .audience-section, .host-form-section, .section { padding: 6rem 0; position: relative; }
.section-heading { margin-bottom: 4rem; }
.section-heading.center { text-align: center; }
.section-title { font-size: clamp(2rem, 3vw, 2.5rem); margin-bottom: 1rem;}
.section-desc { font-size: 1.1rem; max-width: 600px; }
.section-heading.center .section-desc { margin-inline: auto; }
.webinar-main-title {
    max-width: 820px;
    margin-inline: auto;
    margin-bottom: 1rem;
}
.webinar-authority-title {
    max-width: 760px;
    margin: 0 auto 1.15rem;
    color: var(--color-text-primary);
    font-size: clamp(1.35rem, 2.1vw, 1.8rem);
    line-height: 1.25;
    font-weight: 750;
    letter-spacing: -0.045em;
}
.webinar-summary-title {
    max-width: 790px;
    margin: 0 auto;
    color: var(--color-text-secondary);
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.6;
    font-weight: 450;
}
.webinar-summary-title strong {
    color: var(--color-text-primary);
    font-weight: 800;
}
.webinar-topics-title {
    margin-top: 2.35rem;
    color: var(--color-text-primary);
    font-size: 1.35rem;
    font-weight: 800;
}
.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.75rem;
}

/* Grid Cards (Replaces glass-grid) */
.premium-glass-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.premium-glass-grid.four-col { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
@media (max-width: 768px) {
  .topics-section .premium-glass-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .topics-section .premium-glass-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .topics-section .premium-glass-card h3 {
    font-size: 1.05rem;
  }

  .topics-section .premium-glass-card p {
    font-size: 0.95rem;
  }

  .topics-section .card-icon-modern {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 980px) and (min-width: 769px) {
  .topics-section .premium-glass-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.premium-glass-card, .service-card {
    background: rgba(252, 252, 252, 0.9); border-radius: 24px; box-shadow: var(--shadow-card);
    padding: 40px 40px; border: 1px solid var(--color-border); transition: transform 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.premium-glass-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.audience-card { border-radius: 20px; padding: 32px 24px; text-align: left; }
.card-icon-modern { font-size: 1.8rem; color: var(--color-text-primary); margin-bottom: 1.5rem; }
.premium-glass-card h3 { font-size: 1.25rem; margin-bottom: 0.8rem; color: var(--color-text-primary); letter-spacing: -0.035em; }
.premium-glass-card p { font-size: 1rem; color: var(--color-text-secondary); }

/* Takeaways */
.takeaways-panel { background: var(--color-bg-elevated); border-radius: 24px; padding: 40px 48px; box-shadow: var(--shadow-card); border: 1px solid var(--color-border); }
.clean-check-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem;}
@media (max-width: 768px) { .clean-check-list { grid-template-columns: 1fr; } }
.clean-check-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 1rem; color: var(--color-text-secondary); }
.clean-check-list i { color: var(--color-text-primary); margin-top: 4px; font-size: 1.1rem;}
.clean-check-list strong { color: var(--color-text-primary); }

/* B2C Específicos */
.threat-section {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: #f5f5f5;
}
.threat-section::before {
    content: none;
}
.threat-section::after {
    content: none;
}
.threat-section .container {
    position: relative;
    z-index: 2;
}
.threat-box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    background: rgba(252, 252, 252, 0.78);
    border: 1px solid rgba(237, 237, 237, 0.92);
    border-radius: 28px;
    padding: clamp(2rem, 4vw, 2.45rem);
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px) saturate(150%) contrast(108%);
    -webkit-backdrop-filter: blur(18px) saturate(150%) contrast(108%);
}
.threat-box::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(118deg, rgba(255, 255, 255, 0.68), transparent 21%, rgba(255, 255, 255, 0.18) 48%, transparent 72%);
    mix-blend-mode: screen;
    opacity: 0.72;
}
.threat-box > * {
    position: relative;
    z-index: 1;
}
.threat-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.62); color: var(--color-text-primary); padding: 0.35rem 0.85rem; border-radius: 100px; font-size: 0.75rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }
.threat-title { font-size: clamp(1.95rem, 3.6vw, 2.65rem); color: var(--color-text-primary); margin-bottom: 0; font-family: var(--font-display); line-height: 1.18; max-width: 13ch; font-weight: 750;}
.threat-eyebrow {
    margin: 0 0 0.75rem;
    color: var(--color-text-secondary);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}
.threat-desc { color: var(--color-text-secondary); font-size: 1.05rem; max-width: 600px; margin: 0 auto;}
.threat-copy-block {
    display: grid;
    gap: 1.1rem;
    color: var(--color-text-primary);
    font-size: 0.95rem;
    line-height: 1.35;
    align-content: start;
}
.threat-copy-block p {
    margin: 0;
    color: var(--color-text-secondary);
}
.threat-body-title {
    margin: 0;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: clamp(1.12rem, 1.7vw, 1.42rem);
    font-weight: 700;
    line-height: 1.35;
}
.threat-copy-block strong {
    color: var(--color-text-primary);
    font-weight: 800;
}
.threat-source {
    margin-top: -0.65rem !important;
    color: var(--color-gray-500) !important;
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.threat-callout {
    grid-column: 1 / -1;
    margin: 0.25rem 0 0;
    border-radius: 5px;
    background: var(--color-text-primary);
    color: var(--color-white);
    padding: 0.42rem 1rem;
    font-size: 0.82rem;
    line-height: 1.2;
    text-align: center;
}
.threat-callout strong {
    color: inherit;
    font-weight: 800;
}
.threat-list {
    position: relative;
    z-index: 1;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    list-style: none;
    margin: 0.35rem 0 0;
    padding: 0;
}
.threat-list li {
    min-height: 100%;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 1rem 1.1rem 1rem 2.75rem;
    position: relative;
}
.threat-list li::before {
    content: "";
    position: absolute;
    top: 1.25rem;
    left: 1.15rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--color-text-primary);
    box-shadow: 0 0 0 5px rgba(28, 28, 28, 0.07);
}
.threat-cta {
    grid-column: 1 / -1;
    justify-content: flex-start;
    margin-top: 0.7rem;
}
@media (max-width: 768px) {
    .threat-section {
        min-height: auto;
        padding-block: 5rem;
    }
    .threat-section::before {
        background-size: cover;
        background-position: 58% center;
    }
    .threat-box {
        grid-template-columns: 1fr;
        margin-inline: auto;
        text-align: left;
        max-width: 720px;
    }
    .threat-title {
        max-width: 100%;
    }
    .threat-list {
        grid-template-columns: 1fr;
    }
    .threat-cta {
        justify-content: center;
    }
}

.takeaways .container { max-width: 1020px; }
.takeaways .section-heading { max-width: 760px; margin: 0 auto; }
.takeaways .section-title { margin-bottom: 1.15rem; }
.takeaways .section-desc { max-width: 600px; margin-inline: auto; font-size: 1.02rem; line-height: 1.7; }
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.9rem; margin-top: 3.6rem; align-items: stretch; }
@media (max-width: 768px) { .before-after-grid { grid-template-columns: 1fr; } }
.compare-card {
  background: rgba(252, 252, 252, 0.92);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 2.75rem 2.35rem 2.4rem;
  min-height: 418px;
  box-shadow: var(--shadow-card);
}
.compare-before { border-top: 1px solid var(--color-border); }
.compare-after { border-top: 1px solid var(--color-text-primary); }
.compare-header { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; margin-bottom: 2rem; display: flex; align-items: center; gap: 0.75rem; color: var(--color-text-primary); line-height: 1.3; }
.compare-before .compare-header i { color: var(--color-gray-500); }
.compare-after .compare-header i { color: var(--color-text-primary); }
.compare-list { list-style: none; padding: 0; margin: 0; }
.compare-list li { margin-bottom: 1.72rem; display: flex; gap: 0.95rem; align-items: flex-start; color: var(--color-text-secondary); font-size: 0.99rem; line-height: 1.58; }
.compare-list li:last-child { margin-bottom: 0; }
.compare-list li i { margin-top: 4px; font-size: 0.82rem; }
.compare-list li span { display: block; max-width: 28ch; }
.compare-before .compare-list li i { color: var(--color-gray-500); }
.compare-after .compare-list li i { color: var(--color-text-primary); }
.compare-after .compare-list li { color: var(--color-text-primary); }
.takeaways .container > div[style*="text-align: center"] { margin-top: 3.3rem !important; }
.takeaways .container > div[style*="text-align: center"] p:first-child { font-size: 1rem !important; }
.takeaways .container > div[style*="text-align: center"] p:last-child { max-width: 620px !important; line-height: 1.6; }
@media (max-width: 768px) {
  .compare-card { min-height: 0; padding: 2.1rem 1.5rem 1.8rem; }
  .compare-header { font-size: 1rem; }
  .compare-list li span { max-width: none; }
}

/* Host and Form */
.speakers-heading {
  max-width: 820px;
  margin-inline: auto;
}
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 3.2rem;
}
.speaker-card {
  display: grid;
  grid-template-rows: 360px 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: var(--color-bg-elevated);
  box-shadow: var(--shadow-card);
}
.speaker-photo {
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: 360px;
  background: rgba(28, 28, 28, 0.04);
}
.speaker-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.28), transparent 42%, rgba(255, 255, 255, 0.08));
}
.speaker-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.speaker-card:first-child .speaker-photo img {
  object-position: 67% 16%;
  transform: scale(1.08);
}
.speaker-card:nth-child(2) .speaker-photo img {
  object-position: center center;
}
.speaker-content {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1.7rem 1.8rem 2rem;
}
.speaker-content h3 {
  margin: 0;
  color: var(--color-text-primary);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.speaker-role {
  margin: 0;
  color: var(--color-text-primary);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}
.speaker-content p:not(.speaker-role) {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
}
.registration-wrap {
  display: flex;
  justify-content: center;
}
.registration-panel--centered {
  width: min(100%, 620px);
}
.host-form-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: stretch;}
@media (max-width: 900px) { .host-form-grid { grid-template-columns: 1fr; } }
.host-details { display: grid; grid-template-rows: auto minmax(0, 1fr); gap: 1rem; height: 100%; }
.host-profile-card {
    position: relative; min-height: 100%; height: 100%; overflow: hidden; border-radius: 28px;
    display: flex; flex-direction: column; padding: 0;
    background: var(--color-bg-elevated); box-shadow: var(--shadow-card); border: 1px solid var(--color-border);
}
.host-avatar {
    position: relative; inset: auto; width: 100%; flex: 1 1 auto; min-height: 460px; overflow: hidden;
    display: block; margin: 0; border: none; box-shadow: none; border-radius: 28px 28px 0 0;
}
.host-avatar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.24) 34%, rgba(255, 255, 255, 0.05) 58%, rgba(255, 255, 255, 0) 76%);
    pointer-events: none;
}
.host-avatar img {
    width: 100%; height: 100%; object-fit: cover; object-position: 67% 16%; display: block;
    transform: scale(1.1);
    transform-origin: 67% 18%;
}
.host-name,
.host-title,
.host-bio { position: relative; z-index: 1; padding-left: 2rem; padding-right: 2rem; background: var(--color-bg-elevated); }
.host-name { font-size: 2.1rem; padding-top: 1.5rem; margin-bottom: 0.35rem; font-family: var(--font-display); font-weight: 750; color: var(--color-text-primary); max-width: none; letter-spacing: -0.05em; }
.host-title { font-size: 1rem; color: var(--color-text-secondary); font-weight: 600; margin-bottom: 0.9rem; }
.host-bio { font-size: 1rem; color: var(--color-text-secondary); max-width: none; line-height: 1.6; padding-bottom: 2rem; }
@media (max-width: 900px) {
  .speakers-grid {
    grid-template-columns: 1fr;
  }
  .host-details { height: auto; }
  .host-profile-card { min-height: 620px; }
}
@media (max-width: 768px) {
  .speakers-grid {
    gap: 1.2rem;
    margin-bottom: 2.5rem;
  }
  .speaker-card {
    grid-template-rows: 300px auto;
    border-radius: 24px;
  }
  .speaker-photo,
  .speaker-photo img {
    height: 300px;
  }
  .speaker-content {
    padding: 1.45rem 1.35rem 1.7rem;
  }
  .host-profile-card { min-height: 520px; }
  .host-avatar { min-height: 360px; }
  .host-avatar::after {
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.16) 32%, rgba(255, 255, 255, 0.02) 56%, rgba(255, 255, 255, 0) 74%);
  }
  .host-avatar img { object-position: 65% 14%; transform: scale(1.08); transform-origin: 65% 16%; }
  .host-name,
  .host-title,
  .host-bio { padding-left: 1.5rem; padding-right: 1.5rem; }
  .host-name { font-size: 1.9rem; }
  .host-bio { font-size: 0.98rem; }
}

/* Form Styles */
.registration-panel { background: rgba(252, 252, 252, 0.94); padding: 2.5rem; border-radius: 28px; box-shadow: var(--shadow-card); border: 1px solid var(--color-border); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.registration-panel { align-self: center; }
.panel-header { margin-bottom: 2rem; }
.panel-header h2 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--color-text-primary);}
.panel-header p { font-size: 1rem; color: var(--color-text-secondary); }

.clean-form .form-group { margin-bottom: 1.5rem; }
.clean-form label { display: block; font-size: 0.82rem; font-weight: 650; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-text-primary);}
.clean-form input, .clean-form select {
    width: 100%; min-height: 52px; padding: 1rem; border-radius: 999px; background: rgba(255, 255, 255, 0.72); border: 1px solid var(--color-border);
    color: var(--color-text-primary); font-family: var(--font-body); font-size: 1rem; transition: all 0.2s;
}
.clean-form input:focus, .clean-form select:focus { outline: none; border-color: rgba(28, 28, 28, 0.32); box-shadow: 0 0 0 4px rgba(28, 28, 28, 0.04); background: #fff; }
.select-wrapper { position: relative; }
.select-wrapper select { appearance: none; }
.select-wrapper i { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); font-size: 0.9rem; pointer-events: none;}
.btn-block { width: 100%; margin-top: 1rem; }

/* Slide Footer */
.select-wrapper { position: relative; }
.select-wrapper select { appearance: none; }
.select-wrapper i { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); font-size: 0.9rem; pointer-events: none;}
.btn-block { width: 100%; margin-top: 1rem; }

/* Slide Footer */
.slide-footer { display: flex; align-items: center; gap: 16px; justify-content: center; padding: 4rem 0 2rem; }
.slide-footer__icon { font-size: 1.2rem; color: var(--color-text-primary); flex-shrink: 0; }
.slide-footer__line { width: 100px; height: 1px; background: var(--color-text-primary); opacity: 0.18; }
.slide-footer__meta { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-secondary); white-space: nowrap; font-family: var(--font-body); }

html,
body {
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

.container {
  width: 100%;
}

.glass-header {
  padding-top: calc(1rem + env(safe-area-inset-top, 0px));
}

.hero-grid > *,
.premium-glass-grid > *,
.host-form-grid > * {
  min-width: 0;
  overflow: visible;
}

@media (max-width: 768px) {
  .glass-header {
    padding-top: calc(0.9rem + env(safe-area-inset-top, 0px));
    padding-bottom: 1rem;
  }

  .hero {
    padding-top: 2rem;
    padding-bottom: 5rem;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .hero-visual {
    height: 430px;
    padding: 12px;
    overflow: visible;
  }

  .floating-glass-composition {
    overflow: visible;
    border-radius: 28px;
  }

  .hero-atom-stage {
    inset: -10% -20% -2%;
    border-radius: 28px;
    overflow: visible;
  }

  .hero-atom-stage::before {
    inset: 8% 0 2%;
    filter: blur(13px);
  }

  .hero-atom-fallback {
    padding: 0;
  }

  .hero-atom-tracker {
    opacity: 0.48;
  }

  .main-card {
    top: 34%;
    left: 0.5rem;
    right: auto;
    width: min(58vw, 210px);
    max-width: none;
    padding: 0.85rem;
    animation: none;
    transform: scale(0.82);
    transform-origin: left center;
    opacity: 0.78;
  }

  .float-card {
    width: min(48vw, 185px);
    padding: 0.68rem 0.74rem;
    animation: none;
    transform: scale(0.8);
    opacity: 1;
  }

  .f1 {
    left: auto;
    right: 0.25rem;
    bottom: 1.25rem;
  }

  .f2 {
    left: 0.25rem;
    top: 1rem;
  }

  .topics-section .premium-glass-grid,
  .premium-glass-grid.four-col {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------
   SPLINE INTRO SECTION
------------------------------------- */
.spline-intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.spline-intro.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
}

.intro-overlay-content {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    width: 100%;
    max-width: 1140px;
    padding: 0 5%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.spline-intro.fade-out .intro-overlay-content {
    transform: translateY(-20px);
}

.intro-logo img {
    height: 32px;
    width: auto;
    margin-bottom: 3rem;
    filter: grayscale(1) contrast(1.2);
}

.intro-kicker {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gray-600);
    margin-bottom: 1rem;
}

.intro-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: var(--color-text-primary);
    max-width: 18ch;
}

.intro-instruction {
    position: absolute;
    bottom: -15vh;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.5;
}


.spline-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden; /* Corta o selo da Spline no rodapé */
}

.spline-overlay-trigger {
    position: absolute;
    inset: 0;
    z-index: 5;
    background: transparent;
    cursor: pointer;
    pointer-events: none; /* Permite que o hover chegue no Spline */
}

.spline-container spline-viewer {
    width: 100%;
    height: calc(100% + 60px);
    display: block;
}

.skip-intro {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    background: rgba(28, 28, 28, 0.05);
    border: 1px solid rgba(28, 28, 28, 0.1);
    color: var(--color-text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    z-index: 10000;
    transition: all 0.2s ease;
}

.skip-intro:hover {
    background: var(--color-brand-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

.intro-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    pointer-events: none;
    z-index: 10000;
}

.intro-scroll-hint .mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(28, 28, 28, 0.15);
    border-radius: 20px;
    position: relative;
}

.intro-scroll-hint .mouse::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-brand-blue);
    border-radius: 2px;
    animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
    0% { transform: translate(-50%, 0); opacity: 0; }
    50% { transform: translate(-50%, 10px); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

@media (max-width: 768px) {
    .skip-intro {
        bottom: 1.5rem;
        right: 50%;
        transform: translateX(50%);
        width: 140px;
    }
}
