/* ==========================================================================
   DESIGN SYSTEM: DIAMOND (LINEAR/VERCEL ENTERPRISE AESTHETIC)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* 1. TOKENS (CSS Variables) */
:root {
  /* Colors - Pure Dark Mode */
  --bg-main: #000000;
  --bg-card: #0A0A0A;
  --bg-input: #0F0F0F;
  
  --text-main: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-tertiary: #666666;
  
  --border-subtle: #141414;
  --border-light: #1F1F1F;
  --border-input: #262626;
  
  --accent-blue: #3B82F6;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  
  /* Layout */
  --container-width: 1280px;
  --radius-card: 16px;
  --radius-input: 8px;
  --radius-pill: 32px;
}

/* Theme Light Overrides */
.theme-light {
  --bg-main: #FFFFFF;
  --bg-card: #F9FAFB;
  --bg-input: #F3F4F6;
  
  --text-main: #09090B;
  --text-secondary: #52525B;
  --text-tertiary: #A1A1AA;
  
  --border-subtle: #F4F4F5;
  --border-light: #E4E4E7;
  --border-input: #D4D4D8;
  
  background-color: var(--bg-main);
  color: var(--text-main);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip; /* Fixes sticky bug on iOS Safari while preventing horizontal scroll */
}

/* Subtle Grid Background (Vercel style) */
.bg-grid {
  background-size: 100px 100px;
  background-image: 
    linear-gradient(to right, var(--border-subtle) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-subtle) 1px, transparent 1px);
  background-position: center top;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--text-main);
  margin: 0;
  text-align: left;
}

/* Massive Headline */
h1 {
  font-size: 4rem; /* 64px mobile */
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 2rem; /* 32px mobile */
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
  h1 { 
    font-size: 7.5rem; /* 120px desktop */ 
    line-height: 0.95;
    letter-spacing: -0.05em;
  }
  h3 {
    font-size: 2.5rem; /* 40px desktop */
  }
}

.body-large {
  font-size: 1.25rem; /* 20px */
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .body-large { font-size: 1.375rem; /* 22px */ }
}

.body-regular {
  font-size: 1.0625rem; /* 17px */
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Technical Typography */
.eyebrow, .badge, .form-label, .section-number {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow {
  font-size: 0.8125rem; /* 13px */
  font-weight: 500;
  color: var(--text-tertiary);
}

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem; /* 12px */
  font-weight: 500;
  color: var(--text-secondary);
  background-color: var(--bg-input);
  border: 1px solid var(--border-light);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.section-number {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-bottom: 1.5rem;
  display: block;
}

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container { padding: 0 3rem; }
}

/* Section Spacing */
.section {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .section { padding: 10rem 0; }
}

/* Grid System */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

@media (min-width: 1024px) {
  .grid-2 { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 2rem;
  }
  .grid-3 { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.divider-horizontal {
  height: 1px;
  width: 100%;
  background-color: var(--border-light);
}

/* ==========================================================================
   5. COMPONENTS
   ========================================================================== */

/* Hero Section */
.hero-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-container {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center;
}

.hero-logo {
  height: 32px; 
  margin-bottom: 1.5rem; 
  width: auto;
}

.hero-title {
  margin-bottom: 1rem; 
  max-width: 1000px; 
  font-size: 1.75rem; 
  line-height: 1.2; 
  letter-spacing: -0.02em; 
  text-align: center;
}

.hero-subtitle {
  max-width: 750px; 
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.hero-btn-group {
  justify-content: center; 
  flex-direction: row; 
  margin-top: 0.5rem;
  width: 100%;
}

.hero-btn {
  padding: 1rem 2rem; 
  font-size: 1.125rem; 
  font-weight: 600;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 9rem;
    padding-bottom: 8rem;
  }
  .hero-logo {
    height: 48px;
    margin-bottom: 2rem;
  }
  .hero-title {
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 3.5vw, 3rem);
  }
  .hero-subtitle {
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
  }
  .hero-btn-group {
    margin-top: 1rem;
    width: auto;
  }
  .hero-btn {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    width: auto;
  }
}

/* Floating Navigation */
.floating-nav {
  position: absolute;
  top: 1.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 3rem);
  max-width: 1000px;
  background-color: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 1rem 2rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.floating-nav-logo {
  height: 24px;
  width: auto;
}

.floating-nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .floating-nav {
    display: flex;
  }
  .floating-nav-links {
    display: flex;
  }
}

.floating-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  text-decoration: none;
}

.floating-nav-link:hover {
  color: var(--text-main);
}

/* Buttons (Linear Style Pill) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--text-main);
  color: var(--bg-main);
  border: 1px solid var(--text-main);
}

.btn-primary:hover {
  background-color: #E5E5E5;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--text-secondary);
  background-color: var(--bg-card);
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .btn-group {
    flex-direction: row;
    align-items: center;
  }
}

/* Pillar Cards */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--border-input);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Subtle gradient glow inside card */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card-number {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-tertiary);
  margin-bottom: 2rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-main);
}

@media (min-width: 1024px) {
  .card-title { font-size: 1.75rem; }
}

.card-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.card-list {
  list-style: none;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.card-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.card-list li:last-child {
  margin-bottom: 0;
}

/* Custom bullet */
.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--text-tertiary);
}

/* Pillar Cards Redesign (Animated Left Border & Spotlights) */
.pillar-card {
  background-color: #0A0A0A;
  background-image: radial-gradient(circle at top left, rgba(59,130,246,0.04), transparent 70%);
  border: none;
  border-left: 2px solid #3B82F6;
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  text-align: left;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .pillar-card {
    border: 1px solid #3B82F6;
  }
}

@keyframes drawBorderUp {
  0% { transform: scaleY(0); }
  100% { transform: scaleY(1); }
}

.pillar-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59,130,246,0.7);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 20px rgba(59,130,246,0.08);
  background-image: radial-gradient(circle at center, rgba(59,130,246,0.06), transparent 70%), 
                    radial-gradient(circle at top left, rgba(59,130,246,0.04), transparent 70%);
}

.pillar-card .card-watermark {
  position: absolute;
  top: 0;
  right: 1rem;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  font-family: var(--font-mono);
  line-height: 1;
  pointer-events: none;
}

.pillar-card .card-eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  color: #666666;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  display: block;
}

.pillar-card .card-title {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-align: left;
}

.pillar-card .card-desc {
  color: #A0A0A0;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  text-align: left;
}

.pillar-card .card-result {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #1F1F1F;
  font-size: 0.9375rem;
  text-align: left;
}

.pillar-card .card-result-label {
  color: #3B82F6;
  font-weight: 500;
}

.pillar-card .card-result-text {
  color: #666666;
}

/* Massive Numbers */
.metric-container {
  border-left: 1px solid var(--border-light);
  padding-left: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .metric-container {
    padding-left: 3rem;
    margin-bottom: 0;
  }
}

.metric-number {
  font-size: 5rem;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

@media (min-width: 1024px) {
  .metric-number { font-size: 9rem; }
}

.metric-context {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 300px;
}

/* Arquitetos Section (White Theme) */
.section-arquitetos {
  background-color: #FFFFFF;
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section-arquitetos {
    padding: 8rem 0;
  }
}

.arquitetos-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.arquitetos-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #3B82F6;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  text-align: center;
  width: 100%;
}

.arquitetos-title {
  font-family: var(--font-sans);
  font-weight: 600;
  color: #09090B;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
}

.arquitetos-subtitle {
  color: #52525B;
  font-size: 1.0625rem;
  line-height: 1.65;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem auto;
}

.arquitetos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .arquitetos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.arquitetos-card {
  background-color: #F9FAFB;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.arquitetos-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.arquitetos-photo-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.side-photo {
  aspect-ratio: 4/5;
}

.center-photo {
  aspect-ratio: 3/4;
}

.arquitetos-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arquitetos-photo-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #3B82F6;
  margin: 0 0 0 1.5rem;
}

.arquitetos-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.arquitetos-role {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #3B82F6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.arquitetos-decorative-line {
  width: 24px;
  height: 1.5px;
  background-color: #3B82F6;
  margin-bottom: 1rem;
}

.arquitetos-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.5rem;
  color: #09090B;
  letter-spacing: -0.02em;
  margin-bottom: 0.875rem;
}

.arquitetos-desc {
  color: #52525B;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.arquitetos-cta {
  display: inline-flex;
  border-radius: 999px;
  background-color: #000000;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 3rem;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.arquitetos-cta:hover {
  background-color: #1a1a1a;
  transform: translateY(-1px);
}

/* Form (Linear Style) */
.form-container {
  max-width: 600px;
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.form-input {
  width: 100%;
  background-color: var(--bg-input);
  border: 1px solid var(--border-input);
  border-radius: var(--radius-input);
  padding: 1rem 1.25rem;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all 0.2s ease;
  outline: none;
}

.form-input::placeholder {
  color: var(--text-tertiary);
}

.form-input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 1px var(--accent-blue);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* Institutional Table (Diagnóstico) */
.inst-table {
  width: 100%;
  max-width: 960px;
  margin-top: 3rem;
  margin-bottom: 0;
  border-top: 1px solid #EAEAEA;
}

.inst-table-row {
  display: grid;
  grid-template-columns: 1fr;
  padding: 28px 16px;
  border-bottom: 1px solid #EAEAEA;
  transition: background-color 0.2s ease;
  gap: 12px;
}

.inst-table-mobile-header {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

@media (min-width: 768px) {
  .inst-table-row {
    grid-template-columns: 80px 180px 1fr;
    padding: 32px 16px;
    gap: 32px;
  }
  .inst-table-mobile-header {
    display: contents;
  }
}

.inst-table-row:hover {
  background-color: #FAFAFA;
}

.inst-table-col-1 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 15px;
  color: #777777;
  line-height: 1.4;
}

.inst-table-col-2 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #0A0A0A;
  text-transform: uppercase;
  line-height: 1.4;
}

.inst-table-col-3 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.4;
  color: #3B3B3B;
}

.diagnostico-footer {
  width: 100%;
  margin-top: 3rem;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.diagnostico-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
}

.diagnostico-ornament-line {
  width: 48px;
  height: 1px;
  background-color: #D4D4D8;
}

.diagnostico-ornament-diamond {
  color: #3B82F6;
  font-size: 10px;
  margin: 0 12px;
}

.diagnostico-closing-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  color: #09090B;
  text-align: center;
  max-width: 560px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.diagnostico-scroll-indicator {
  margin-top: 0.5rem;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* ==========================================================================
   DIAGNÓSTICO 2-COL LAYOUT
   ========================================================================== */
.diagnostico-layout {
  display: block; /* Changed from flex column to block to avoid iOS Safari sticky bugs */
}

.diagnostico-col-left h2,
.diagnostico-col-left p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1023px) {
  /* Whole left col (only the h2) becomes sticky on mobile */
  .diagnostico-col-left {
    position: -webkit-sticky;
    position: sticky;
    top: -1px;
    z-index: 10;
    background-color: var(--bg-main);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.03);
  }

  /* Hide the desktop-only paragraph from the sticky block */
  .diagnostico-p-desktop {
    display: none;
  }

  /* Show the mobile paragraph at the top of the right col (scrolls under the sticky h2) */
  .diagnostico-p-mobile {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 650px;
    padding: 1.75rem 0 0.5rem;
  }
}

@media (min-width: 1024px) {
  .diagnostico-col-left h2,
  .diagnostico-col-left p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .diagnostico-layout {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 160px;
  }

  .diagnostico-col-left {
    width: 35%;
    flex-shrink: 0;
    padding-right: 2rem;
  }

  .diagnostico-col-right {
    width: calc(65% - 160px);
    flex-shrink: 0;
    flex-grow: 1;
  }

  .diagnostico-sticky {
    position: sticky;
    top: 140px;
  }

  /* Hide mobile-only paragraph on desktop */
  .diagnostico-p-mobile {
    display: none;
  }

  /* Remove table top margin to align with left col text */
  .diagnostico-col-right .inst-table {
    margin-top: 0;
  }
}

.text-diamond-blue {
  color: #1D4ED8 !important;
}

/* Fit Section Redesign */
#fit {
  background-color: #000000;
  padding-top: 5rem;
  padding-bottom: 0;
}

.fit-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 768px) {
  .fit-container {
    flex-direction: row;
    position: relative;
  }
  
  .fit-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #1F1F1F;
    transform: translateX(-50%);
  }
}

.fit-col {
  position: relative;
  width: 100%;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (min-width: 768px) {
  .fit-col {
    width: 50%;
    padding: 5rem 4rem;
  }
}

.fit-col-left {
  background-image: radial-gradient(circle at top left, rgba(16,185,129,0.06), transparent 70%);
  border-bottom: 1px solid #1F1F1F;
}

@media (min-width: 768px) {
  .fit-col-left {
    border-bottom: none;
  }
}

.fit-col-right {
  background-image: radial-gradient(circle at top right, rgba(239,68,68,0.05), transparent 70%);
}

.fit-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
  text-align: center;
  width: 100%;
}

.fit-col-left .fit-eyebrow { color: #10B981; }
.fit-col-right .fit-eyebrow { color: #EF4444; }

.fit-watermark {
  display: none;
}

@media (min-width: 768px) {
  .fit-watermark {
    display: block;
    position: absolute;
    font-size: 9rem;
    font-weight: 800;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
  }
  
  .fit-col-left .fit-watermark {
    bottom: 0;
    right: 2rem;
    color: rgba(16,185,129,0.04);
  }
  
  .fit-col-right .fit-watermark {
    bottom: 0;
    left: 2rem;
    color: rgba(239,68,68,0.04);
  }
}

.fit-list {
  list-style: none;
  position: relative;
  z-index: 1;
}

.fit-item {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: stretch;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  background-color: transparent;
  opacity: 0;
  transform: translateY(16px);
  transition: background-color 0.2s ease, opacity 0.6s ease, transform 0.6s ease;
}

.fit-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fit-col-left .fit-item:hover {
  background-color: rgba(16,185,129,0.06);
}

.fit-col-right .fit-item:hover {
  background-color: rgba(239,68,68,0.06);
}

.fit-item::before {
  content: '';
  width: 3px;
  border-radius: 2px;
  flex-shrink: 0;
}

.fit-col-left .fit-item::before {
  background-color: #10B981;
}

.fit-col-right .fit-item::before {
  background-color: #EF4444;
}

.fit-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}

.fit-text-main {
  color: #FFFFFF;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.fit-text-sub {
  font-size: 0.75rem;
  font-weight: 400;
}

.fit-col-left .fit-text-sub {
  color: #10B981;
}

.fit-col-right .fit-text-sub {
  color: #EF4444;
}

.fit-footer {
  width: 100%;
  background-color: #000000;
  padding-bottom: 5rem;
}

.fit-divider {
  width: 100%;
  height: 1px;
  background-color: #1F1F1F;
}

.fit-paragraph {
  max-width: 600px;
  margin: 0 auto;
  color: #666666;
  font-size: 0.9375rem;
  line-height: 1.6;
  text-align: center;
  padding-top: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.fit-cta {
  display: inline-flex;
  border-radius: 999px;
  background-color: #FFFFFF;
  color: #000000;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 3rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.fit-cta:hover {
  opacity: 0.9;
}

/* Timeline Processo */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
  position: relative;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  position: relative;
}

.timeline-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--border-input);
  margin-bottom: 1rem;
  line-height: 1;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.timeline-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .timeline {
    flex-direction: row;
    gap: 2rem;
  }
  
  .timeline-step {
    flex: 1;
  }

  /* Connecting line */
  .timeline::before {
    content: '';
    position: absolute;
    top: 1.25rem;
    left: 4rem;
    right: 4rem;
    height: 1px;
    background-color: var(--border-light);
    z-index: 0;
  }
  
  .timeline-number {
    position: relative;
    z-index: 1;
    background-color: var(--bg-main);
    display: inline-block;
    padding-right: 1rem;
  }
}

/* Footer */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Utilities */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.highlight-blue {
  background: linear-gradient(to right, #60A5FA, var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 24px rgba(59, 130, 246, 0.3);
}

/* Animations */
.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(20px);
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   6. MODAL APLICAÇÃO
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  background-color: var(--bg-main);
  z-index: 10;
}

.modal-header h3 {
  font-size: 1.25rem;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--text-main);
}

.modal-body {
  padding: 2rem;
}

/* Custom scrollbar for modal content */
.modal-content::-webkit-scrollbar {
  width: 8px;
}
.modal-content::-webkit-scrollbar-track {
  background: var(--bg-main);
}
.modal-content::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--border-input);
}

/* ==========================================================================
   WORKSHOP PRÉ-VENDAS DIAMOND (LP)
   ========================================================================== */

/* Hero com foto: metade esquerda = retrato no BG; conteúdo a partir do centro, alinhado à esquerda */
.page-workshop header.hero-section.hero-workshop-bg {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  background-color: #020617;
  background-image: url("images/hero-lp-pre-vendas.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 26% center;
  min-height: clamp(32rem, 85svh, 52rem);
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  box-sizing: border-box;
  overflow: hidden;
}

/* Camada estilo .bg-grid só à direita: do centro em diante o preto + grade aparecem via máscara; esquerda intocada */
.page-workshop header.hero-section.hero-workshop-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--bg-main);
  background-size: 100px 100px;
  background-image:
    linear-gradient(to right, var(--border-subtle) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-subtle) 1px, transparent 1px);
  background-position: center top;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 44%,
    rgba(0, 0, 0, 0.12) 50%,
    rgba(0, 0, 0, 0.45) 64%,
    rgba(0, 0, 0, 0.88) 82%,
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 44%,
    rgba(0, 0, 0, 0.12) 50%,
    rgba(0, 0, 0, 0.45) 64%,
    rgba(0, 0, 0, 0.88) 82%,
    #000 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

.page-workshop .hero-workshop-layout {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  align-self: stretch;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  min-height: 0;
}

.page-workshop .hero-workshop-spacer {
  min-height: 1px;
  pointer-events: none;
}

.page-workshop .hero-workshop-bg .hero-workshop-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 36rem;
  margin-left: 0;
  margin-right: 0;
  align-items: flex-start;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-workshop .hero-workshop-bg .hero-title,
.page-workshop .hero-workshop-bg .hero-subtitle {
  text-align: left;
}

/* Subtítulo da hero: tag h2 sem herdar o tamanho global de h2 */
.page-workshop .hero-workshop-bg h2.hero-subtitle {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .page-workshop .hero-workshop-bg h2.hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .page-workshop .hero-workshop-bg h2.hero-subtitle {
    font-size: 1.375rem;
  }
}

.page-workshop .hero-workshop-bg .hero-btn-group {
  justify-content: flex-start;
}

.page-workshop .hero-workshop-bg .workshop-hero-meta {
  text-align: left;
  width: 100%;
}

/* Bullet “AO VIVO”: no fluxo acima do H1, alinhado à esquerda como o H1 (desktop); no mobile fixo no topo da hero */
.page-workshop .hero-workshop-bg .hero-workshop-inner .workshop-live-tag--hero-top {
  z-index: 4;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 100%;
  width: max-content;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  text-align: left;
  padding: 0.4rem 0.9rem;
  background-color: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  box-sizing: border-box;
  align-self: flex-start;
  position: relative;
  left: auto;
  right: auto;
  transform: none;
}

@media (min-width: 768px) {
  .page-workshop .hero-workshop-bg .hero-workshop-inner .workshop-live-tag--hero-top {
    margin-bottom: 1.125rem;
  }

  .page-workshop header.hero-section.hero-workshop-bg {
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: clamp(36rem, 88svh, 54rem);
    background-size: cover;
    background-position: 24% center;
  }

  .page-workshop .hero-workshop-layout {
    padding: 0 clamp(1.5rem, 4vw, 3rem);
  }
}

@media (max-width: 767px) {
  /* Tamanho único dos títulos “display” no mobile (~4 linhas na hero + mesmo corpo visual nas demais seções) */
  .page-workshop {
    --workshop-mobile-display-title: clamp(1.6rem, 4.2vw, 2.25rem);
  }

  .page-workshop .hero-workshop-bg .hero-workshop-inner .workshop-live-tag--hero-top {
    position: absolute;
    top: calc(0.5rem + env(safe-area-inset-top, 0px));
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    align-self: center;
    justify-content: center;
    text-align: center;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    max-width: calc(100% - 1.5rem);
  }

  .page-workshop header.hero-section.hero-workshop-bg {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
    max-height: none;
    background-image: url("images/hero-lp-pre-vendas-mobile.jpg");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: var(--bg-main);
    padding-top: 0;
    /* Gap padrão entre o botão e o final da seção (referência bottom-up) */
    padding-bottom: 2rem;
    justify-content: flex-end;
    box-sizing: border-box;
    overflow: hidden;
  }

  /* Mesmas margens laterais do .container (1.5rem); flex col + flex-end para empurrar o conteúdo para o fim */
  .page-workshop .hero-workshop-layout {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    grid-template-columns: unset;
    grid-template-rows: unset;
    padding: 0 1.5rem;
    width: 100%;
    min-height: 0;
    flex: 1 1 auto;
    align-self: stretch;
    position: relative;
    align-items: unset;
  }

  .page-workshop .hero-workshop-spacer {
    display: none;
  }

  /* Inner ancorado no fim do layout: o espaçamento entre os elementos segue as margens padrão (H1/H2/btn) */
  .page-workshop .hero-workshop-bg .hero-workshop-inner {
    /* static: o bullet absoluto ancora no .hero-workshop-layout (relative), topo da hero */
    position: static;
    margin-top: 0;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    box-sizing: border-box;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    gap: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .page-workshop .hero-workshop-bg .hero-title,
  .page-workshop .hero-workshop-bg .hero-subtitle {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  /* Degradê + grade alinhado à faixa onde o texto cobre a foto */
  .page-workshop header.hero-section.hero-workshop-bg::after {
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 6%,
      rgba(0, 0, 0, 0.08) 24%,
      rgba(0, 0, 0, 0.28) 38%,
      rgba(0, 0, 0, 0.58) 50%,
      rgba(0, 0, 0, 0.9) 66%,
      #000 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 6%,
      rgba(0, 0, 0, 0.08) 24%,
      rgba(0, 0, 0, 0.28) 38%,
      rgba(0, 0, 0, 0.58) 50%,
      rgba(0, 0, 0, 0.9) 66%,
      #000 100%
    );
  }

  /* Tipografia e ritmo: títulos como .arquitetos-title; corpo como .body-large; botão/meta como no design system */

  .page-workshop .hero-workshop-bg .hero-title {
    font-size: var(--workshop-mobile-display-title);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.14;
    margin-bottom: 1.125rem;
  }

  .page-workshop .arquitetos-title,
  .page-workshop .workshop-section-title {
    font-size: var(--workshop-mobile-display-title);
  }

  .page-workshop .hero-workshop-bg .hero-subtitle {
    margin-bottom: 1.125rem;
  }

  .page-workshop .hero-workshop-bg h2.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.42;
    font-weight: 400;
    letter-spacing: normal;
  }

  .page-workshop .hero-workshop-bg .hero-btn-group {
    margin-top: 0.25rem;
    width: 100%;
    justify-content: center;
  }

  .page-workshop .hero-workshop-bg .hero-btn {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .page-workshop .hero-workshop-bg .hero-title,
  .page-workshop .hero-workshop-bg .hero-subtitle {
    text-align: center;
  }

  .page-workshop .hero-workshop-bg .workshop-hero-meta {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
  }
}

.page-workshop .hero-radial {
  position: relative;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.14), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(139, 92, 246, 0.08), transparent),
    linear-gradient(to right, var(--border-subtle) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-subtle) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100px 100px, 100px 100px;
  background-position: center top, center top, center top, center top;
}

.workshop-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: var(--text-main);
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.8125rem;
}

.workshop-logo-mark {
  color: var(--accent-blue);
  font-size: 1rem;
  line-height: 1;
}

.workshop-live-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.workshop-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.65);
  flex-shrink: 0;
}

.workshop-hero-meta {
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.workshop-light-head {
  text-align: center;
  margin-bottom: 2rem;
}

.workshop-category-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.workshop-category-pill {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3f3f46;
  border: 1px solid #e4e4e7;
  background-color: #fafafa;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-pill);
}

.workshop-audience-copy {
  max-width: 820px;
  margin: 0 auto;
}

.workshop-audience-lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: #09090b;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.25rem;
}

.workshop-audience-secondary {
  font-size: 1rem;
  line-height: 1.65;
  color: #52525b;
  text-align: center;
}

.workshop-frustration {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .workshop-frustration {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.workshop-section-title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.workshop-frustration-intro {
  max-width: 720px;
  margin-bottom: 3rem !important;
}

.workshop-problem-grid {
  align-items: stretch;
}

.workshop-dark-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 2rem 2rem 2.25rem;
  position: relative;
  overflow: hidden;
}

.workshop-dark-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.25), transparent);
}

.workshop-box-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-blue);
  display: block;
  margin-bottom: 1rem;
}

.workshop-box-text {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

.workshop-deliverables {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .workshop-deliverables {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.workshop-deliverables-sub {
  max-width: 640px;
  margin-bottom: 3rem !important;
}

.workshop-deliverables-head .workshop-section-title {
  margin-bottom: 1rem;
}

.workshop-inline-cta {
  margin-top: 3rem;
}

.workshop-mentor-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
  background-color: #f9fafb;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid #e4e4e7;
}

@media (min-width: 900px) {
  .workshop-mentor-card {
    grid-template-columns: minmax(260px, 340px) 1fr;
    align-items: stretch;
  }
}

.workshop-mentor-photo-wrap {
  position: relative;
  min-height: 280px;
}

.workshop-mentor-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 40%, #1d4ed8 100%);
  color: #fff;
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.workshop-mentor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.workshop-mentor-body {
  padding: 2rem 1.75rem 2.25rem;
}

@media (min-width: 900px) {
  .workshop-mentor-body {
    padding: 2.5rem 2.5rem 2.5rem 0;
  }
}

.workshop-mentor-bio + .workshop-mentor-bio {
  margin-top: 1rem;
}

.workshop-mentor-stats {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e4e4e7;
}

@media (min-width: 640px) {
  .workshop-mentor-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.workshop-mentor-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.workshop-stat-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  color: #3b82f6;
  text-transform: uppercase;
}

.workshop-stat-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: #09090b;
  letter-spacing: -0.02em;
}

.workshop-stat-desc {
  font-size: 0.8125rem;
  color: #71717a;
  line-height: 1.45;
}

.workshop-form-wrap {
  max-width: 560px;
  padding: 2rem 0 4rem;
}

.workshop-form-title {
  margin-bottom: 0.75rem;
}

.workshop-form-sub {
  margin-bottom: 2rem !important;
}

.theme-light .form-label {
  color: #52525b;
}

.theme-light .form-input {
  background-color: #f3f4f6;
  border-color: #d4d4d8;
  color: #09090b;
}

.workshop-footer {
  background-color: #000000;
  padding: 2.5rem 0 3rem;
}

.workshop-btn-block {
  width: 100%;
}

#inscricao.theme-light {
  border-top: 1px solid #e4e4e7;
}
