.elementor-1508 .elementor-element.elementor-element-8a9f108{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(max-width:767px){.elementor-1508 .elementor-element.elementor-element-8a9f108{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS */:root {
  --bg:        #0B0E14;
  --card:      #111621;
  --surface:   #1A2030;
  --t1:        #E8ECF4;
  --t2:        #9CA5B8;
  --t3:        #6B7589;
  --border:    rgba(255,255,255,0.08);
  --border-2:  rgba(255,255,255,0.16);
  --teal:      #14B8A6;
  --teal-dim:  rgba(20, 184, 166, 0.15);
  --teal-glow: rgba(20, 184, 166, 0.35);
  --amber:     #F59E0B;
  --red:       #EF4444;
  --green:     #22C55E;
  --green-dim: rgba(34, 197, 94, 0.12);
  --purple:    #8B5CF6;

  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--t1);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

main { position: relative; z-index: 1; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; color: #E8ECF4; font-family: 'DM Sans', system-ui, sans-serif;}
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(30px, 4vw, 42px); }
h3 { font-size: clamp(22px, 2.4vw, 26px); }

em { font-style: italic; color: var(--teal); }
strong { font-weight: 700; color: var(--t1); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--teal);
  text-transform: uppercase;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 0;
  text-align: center;
}
.btn-primary {
  background: var(--teal);
  color: var(--bg);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px var(--teal-glow);
}
.btn-lg {
  padding: 24px;
  font-size: 18px;
  letter-spacing: 0.04em;
  width: 100%;
  max-width: 520px;
}
.btn-mega {
  padding: 28px 40px;
  font-size: 20px;
  letter-spacing: 0.04em;
  width: 100%;
  max-width: 600px;
}

/* ============ HERO ============ */
.hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-content { text-align: left; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  background: var(--teal-dim);
}
.hero-eyebrow .label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--teal);
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4.5vw, 52px);
}

.hero-subhead {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--t2);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-subhead strong { color: var(--t1); }

.hero-event-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 36px;
}
.event-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--t1);
}
.event-pill .icon {
  font-size: 14px;
  line-height: 1;
}

/* Video slot 9/16 */
.hero-video-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-slot {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface) 0%, var(--card) 100%);
  border: 1px solid var(--border-2);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}

/* Placeholder do vídeo */
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px 24px;
  text-align: center;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(20, 184, 166, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(11, 14, 20, 0.4) 100%);
}
.play-button {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(20, 184, 166, 0.15), 0 0 0 16px rgba(20, 184, 166, 0.08);
  z-index: 1;
}
.play-button::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 22px solid var(--bg);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.video-placeholder .caption {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t2);
}
.video-placeholder .caption strong { color: var(--teal); }

.video-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 12px;
  background: rgba(11, 14, 20, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.video-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content { text-align: center; }
  .hero-subhead { margin-left: auto; margin-right: auto; }
  .hero-event-info { justify-content: center; }
  .video-slot { max-width: 280px; }
}

/* ============ SECTION (general) ============ */
section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) { section { padding: 60px 0; } }

.section-title { margin-bottom: 16px; }
.section-intro {
  color: var(--t2);
  font-size: 19px;
  margin-bottom: 48px;
  max-width: 680px;
  line-height: 1.55;
}

/* ============ TRANSFORMATION (saber vs fazer) ============ */
.transformation {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(20, 184, 166, 0.04) 0%, transparent 60%);
}
.transformation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .transformation-grid { grid-template-columns: 1fr; }
}

.transformation-col {
  padding: 36px 32px;
  border-radius: 16px;
  position: relative;
}
.transformation-col.before {
  background: var(--card);
  border: 1px solid var(--border);
  opacity: 0.85;
}
.transformation-col.after {
  background: linear-gradient(135deg, var(--card) 0%, rgba(20, 184, 166, 0.06) 100%);
  border: 1px solid var(--teal);
  box-shadow: 0 0 24px rgba(20, 184, 166, 0.08);
}
.transformation-col .tcol-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.transformation-col.before .tcol-label { color: var(--t3); }
.transformation-col.after .tcol-label { color: var(--teal); }

.transformation-col h3 {
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.transformation-col.before h3 { color: var(--t2); }
.transformation-col.after h3 { color: var(--t1); }
.transformation-col.after h3 em { color: var(--teal); font-style: italic; }

.transformation-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.transformation-col ul li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 15px;
  line-height: 1.5;
}
.transformation-col.before ul li.no {
  color: var(--t3);
}
.transformation-col.before ul li.no .icon {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--t3);
  font-size: 14px;
}
.transformation-col.before ul li.yes {
  color: var(--t1);
}
.transformation-col.before ul li.yes .icon {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--teal);
  font-size: 14px;
}
.transformation-col.after ul li { color: var(--t1); }
.transformation-col.after ul li .icon {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--teal);
  font-size: 14px;
}

/* ============ DELIVERABLES (3 cards principais) ============ */
.deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}
.deliverable {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.2s;
}
.deliverable:hover { border-color: var(--border-2); }

.deliverable .num {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 500;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.deliverable h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--t1);
}
.deliverable h3 em { color: var(--teal); font-style: italic; }
.deliverable p {
  font-size: 16px;
  color: var(--t2);
  line-height: 1.6;
}
.deliverable p strong { color: var(--t1); }

@media (max-width: 600px) {
  .deliverable {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 24px;
  }
  .deliverable .num { font-size: 32px; }
}

/* ============ PROCESS / what happens in workshop ============ */
.process {
  background: radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 60%);
}
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal) 0%, var(--border) 100%);
  opacity: 0.4;
}
.process-step .marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  position: relative;
  z-index: 1;
}
.process-step .marker-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--t3);
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 6px;
}
.process-step .content {
  padding-bottom: 8px;
}
.process-step h4 {
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--t1);
}
.process-step p {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.5;
}

/* ============ EXCLUSIVE / scarcity ============ */
.exclusive {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(245, 158, 11, 0.06) 0%, transparent 55%);
}
.exclusive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 768px) { .exclusive-grid { grid-template-columns: 1fr; } }

.exclusive-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
}
.exclusive-card .e-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.exclusive-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--t1);
  line-height: 1.2;
}
.exclusive-card p {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.5;
}
.exclusive-card p strong { color: var(--t1); }

/* ============ OFFER (price + CTA) ============ */
.offer {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(20, 184, 166, 0.08) 0%, transparent 60%);
}
.offer-card {
  max-width: 640px;
  margin: 48px auto 0;
  background: linear-gradient(135deg, var(--card) 0%, rgba(20, 184, 166, 0.05) 100%);
  border: 2px solid var(--teal);
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px rgba(20, 184, 166, 0.1);
}
@media (max-width: 600px) { .offer-card { padding: 36px 24px; } }

.offer-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 7px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}

.offer-card h3 {
  font-size: clamp(24px, 3vw, 30px);
  margin-bottom: 12px;
  margin-top: 16px;
}
.offer-card .sub {
  color: var(--t2);
  font-size: 16px;
  margin-bottom: 36px;
}

.summary {
  background: rgba(11, 14, 20, 0.5);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 32px;
  text-align: left;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
  gap: 12px;
}
.summary-row:last-of-type { border-bottom: 0; padding-bottom: 6px; }
.summary-row .label {
  color: var(--t2);
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.summary-row .label .check {
  color: var(--teal);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
}
.summary-row .val { font-family: var(--font-mono); color: var(--t1); white-space: nowrap; font-size: 13px; }

.price-block {
  margin: 32px 0 24px;
}
.price-from {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--t2);
  margin-bottom: 8px;
  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.6);
  text-decoration-thickness: 1.5px;
}
.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}
.price-main .currency {
  font-family: var(--font-mono);
  font-size: 24px;
  color: var(--t2);
}
.price-main .amount {
  font-family: var(--font-mono);
  font-size: clamp(56px, 7vw, 72px);
  font-weight: 700;
  line-height: 1;
  color: var(--teal);
}
.price-save {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-dim);
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

.offer-card .btn { margin: 0 auto; }

.payment-info {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--t3);
  letter-spacing: 0.06em;
  margin-top: 18px;
}

/* ============ GUARANTEE ============ */
.guarantee {
  max-width: 640px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 14px;
  text-align: left;
}
@media (max-width: 600px) {
  .guarantee {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .guarantee .seal { margin: 0 auto; }
}
.guarantee .seal {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guarantee .seal svg {
  width: 36px;
  height: 36px;
  stroke: var(--green);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.guarantee h4 {
  font-size: 17px;
  color: var(--t1);
  margin-bottom: 6px;
}
.guarantee p {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.55;
}
.guarantee p strong { color: var(--t1); }

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 100px 0;
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
}
.final-cta h2 {
  font-size: clamp(34px, 4.5vw, 48px);
  margin-bottom: 14px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta h2 em { color: var(--teal); font-style: italic; }
.final-cta .lead {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--t2);
  margin-bottom: 40px;
  font-style: italic;
}

/* ============ FOOTER ============ */
footer {
  padding: 40px 0 32px;
  text-align: center;
  border-top: 1px solid var(--border);
}
footer .logo {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--t2);
  font-size: 13px;
  margin-bottom: 14px;
}
footer .legal {
  font-size: 12px;
  color: var(--t3);
  line-height: 1.6;
}/* End custom CSS */