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

:root {
  --bg-color: #0b0c10;
  --bg-gradient: radial-gradient(circle at 15% 50%, rgba(98, 0, 234, 0.15), transparent 25%),
                 radial-gradient(circle at 85% 30%, rgba(0, 229, 255, 0.15), transparent 25%);
  --accent-primary: #6200ea;
  --accent-secondary: #00e5ff;
  --text-main: #ffffff;
  --text-muted: #a0aab2;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  padding: 15px 5%;
  background: rgba(11, 12, 16, 0.85);
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.logo span {
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--accent-secondary);
}

.cta-btn {
  background: linear-gradient(90deg, var(--accent-primary), #3b00b3);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(98, 0, 234, 0.4);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(98, 0, 234, 0.6);
  filter: brightness(1.2);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 5%;
  position: relative;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards 0.2s;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #fff, var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards 0.4s;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards 0.6s;
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  border: 1px solid var(--text-muted);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

/* Floating Elements (Micro-animations) */
.hero-graphic {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: var(--accent-primary);
  top: -10%;
  left: -5%;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-secondary);
  bottom: -10%;
  right: -5%;
  animation-delay: -5s;
}

/* Features Section */
.features {
  padding: 100px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

.card.visible {
  animation: fadeUp 0.8s forwards;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Architecture Section */
.architecture {
  padding: 100px 5%;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
}

.arch-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.arch-text {
  flex: 1;
}

.arch-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.arch-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.arch-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.core-orb {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 229, 255, 0.8), rgba(98, 0, 234, 0.4));
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.3), inset 0 0 30px rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse 4s infinite alternate ease-in-out;
}

.core-orb h3 {
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  z-index: 2;
}

.orbit {
  position: absolute;
  width: 350px;
  height: 350px;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.orbit-node {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--text-main);
  border-radius: 50%;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px white;
}

/* Integrations Section */
.integrations {
  padding: 100px 5%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.integrations-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 70px;
}

.stat-block {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-block:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-3px);
}

.stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.integration-group {
  margin-bottom: 50px;
  padding: 35px 30px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.integration-group:hover {
  border-color: rgba(98, 0, 234, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.group-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.group-header > i {
  font-size: 1.8rem;
  color: var(--accent-secondary);
  background: rgba(0, 229, 255, 0.1);
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.group-header h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.group-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-main);
  transition: all 0.3s ease;
  cursor: default;
}

.logo-chip:hover {
  border-color: var(--accent-secondary);
  background: rgba(0, 229, 255, 0.08);
  transform: translateY(-2px);
}

.logo-chip i {
  color: var(--accent-secondary);
  font-size: 1.05rem;
}

.logo-chip small {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-left: 4px;
}

.logo-chip.featured-chip {
  background: linear-gradient(90deg, rgba(98, 0, 234, 0.15), rgba(0, 229, 255, 0.08));
  border-color: rgba(98, 0, 234, 0.5);
}

.capability-line {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed rgba(255,255,255,0.08);
  font-family: 'Outfit', sans-serif;
}

.capability-line span {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.capability-line span i {
  color: var(--accent-secondary);
  font-size: 0.75rem;
}

.integrations-cta {
  margin-top: 40px;
  padding: 40px 30px;
  text-align: center;
  background: linear-gradient(135deg, rgba(98, 0, 234, 0.12), rgba(0, 229, 255, 0.05));
  border: 1px solid rgba(98, 0, 234, 0.25);
  border-radius: 20px;
}

.integrations-cta p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .group-header { flex-direction: column; }
  .integration-group { padding: 25px 20px; }
  .stat-number { font-size: 2.2rem; }
}

/* Pricing Section */
.pricing {
  padding: 100px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.price-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 50px 30px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(98, 0, 234, 0.4);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(98, 0, 234, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  border: 1px solid var(--accent-primary);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(98, 0, 234, 0.2);
  z-index: 2;
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.1);
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 20px;
  color: var(--text-muted);
}

.featured-badge {
  background: var(--accent-primary);
  color: white;
  font-weight: 600;
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.price {
  margin-bottom: 30px;
}

.price .amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.price .currency, .price .period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.features-list {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.features-list li {
  margin-bottom: 15px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list li i {
  color: var(--accent-secondary);
  font-size: 0.9rem;
}

.price-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.featured-btn {
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
  border: none;
}

.setup-fee {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 15px;
  font-style: italic;
}

/* Footer */
footer {
  padding: 50px 5%;
  text-align: center;
  color: var(--text-muted);
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 50px) scale(1.1); }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 40px rgba(0, 229, 255, 0.2); }
  100% { transform: scale(1.05); box-shadow: 0 0 80px rgba(0, 229, 255, 0.5); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .arch-content { flex-direction: column; }
  nav ul { display: none; } /* Simples mobile menu oculta por engajar no cta */
}


/* ============= Modal: Agendar Implantação ============= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 10, 0.78);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-card {
  background: #11131a;
  background-image: linear-gradient(160deg, rgba(98, 0, 234, 0.12), rgba(0, 229, 255, 0.05));
  border: 1px solid rgba(98, 0, 234, 0.4);
  border-radius: 22px;
  padding: 40px 36px 32px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 80px rgba(98, 0, 234, 0.18);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s ease;
}

.modal-overlay.is-open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.modal-close:hover {
  color: var(--text-main);
  background: rgba(255,255,255,0.05);
}

.modal-card h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.modal-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 26px;
}

.modal-field {
  display: block;
  margin-bottom: 18px;
}

.modal-field span {
  display: block;
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}

.modal-field span em {
  color: var(--accent-secondary);
  font-style: normal;
  margin-left: 2px;
}

.modal-field span small {
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 4px;
}

.modal-field input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s ease;
}

.modal-field input::placeholder {
  color: rgba(160, 170, 178, 0.5);
}

.modal-field input:focus {
  outline: none;
  border-color: var(--accent-secondary);
  background: rgba(0, 229, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.12);
}

.modal-field input:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 100, 100, 0.5);
}

.modal-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px 24px;
  font-size: 1rem;
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
  border: none;
  cursor: pointer;
}

.modal-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  font-style: italic;
}

body.modal-locked {
  overflow: hidden;
}

@media (max-width: 480px) {
  .modal-card { padding: 32px 24px 24px; }
  .modal-card h3 { font-size: 1.4rem; }
}


/* ============= Proprietary Engine Spotlight ============= */
.proprietary-spotlight {
  position: relative;
  background: linear-gradient(135deg, rgba(98, 0, 234, 0.18), rgba(0, 229, 255, 0.08));
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 18px;
  padding: 28px 28px 24px;
  margin-bottom: 24px;
  overflow: hidden;
}

.proprietary-spotlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.18), transparent 65%);
  pointer-events: none;
}

.proprietary-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
  color: #0b0c10;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(0, 229, 255, 0.3);
}

.proprietary-badge i {
  font-size: 0.75rem;
}

.proprietary-content {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.proprietary-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-primary), #3b00b3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: white;
  box-shadow: 0 8px 24px rgba(98, 0, 234, 0.45);
}

.proprietary-text {
  flex: 1;
}

.proprietary-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.proprietary-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(0, 229, 255, 0.15);
  color: var(--accent-secondary);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.proprietary-text > p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 16px;
  line-height: 1.65;
}

.proprietary-text > p strong {
  color: var(--text-main);
  font-weight: 600;
}

.proprietary-perks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px 24px;
  padding: 0;
  margin: 0;
}

.proprietary-perks li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.proprietary-perks li i {
  color: var(--accent-secondary);
  font-size: 0.85rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.alt-engines-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 14px;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .proprietary-content { flex-direction: column; gap: 16px; }
  .proprietary-icon { width: 56px; height: 56px; font-size: 1.4rem; }
  .proprietary-text h4 { font-size: 1.25rem; }
  .proprietary-perks { grid-template-columns: 1fr; }
}


/* ============= Subgroup labels (ERPs, Contratos, etc) ============= */
.subgroup-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin: 22px 0 12px;
  padding-left: 10px;
  border-left: 2px solid var(--accent-secondary);
}

.subgroup-label:first-of-type {
  margin-top: 8px;
}


/* ============= Zero-Code · Done For You Banner ============= */
.zerocode-banner {
  padding: 80px 5%;
  position: relative;
  background: linear-gradient(180deg, rgba(98, 0, 234, 0.06) 0%, transparent 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.zerocode-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.zerocode-headline {
  text-align: center;
  margin-bottom: 50px;
}

.zc-eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-secondary);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.zerocode-headline h2 {
  font-size: 2.6rem;
  line-height: 1.15;
  max-width: 780px;
  margin: 0 auto;
}

.zerocode-headline .gradient-text {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.zerocode-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.zc-pillar {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: left;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.zc-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-secondary), var(--accent-primary));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.zc-pillar:hover {
  border-color: rgba(0, 229, 255, 0.35);
  transform: translateY(-4px);
}

.zc-pillar:hover::before {
  transform: scaleY(1);
}

.zc-pillar > i {
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
  display: block;
}

.zc-pillar h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.zc-pillar p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Tag alternativa (verde-ciano) para complemento Done For You */
.proprietary-tag.tag-alt {
  background: rgba(98, 0, 234, 0.18);
  color: #b399ff;
  border-color: rgba(98, 0, 234, 0.5);
}

@media (max-width: 768px) {
  .zerocode-headline h2 { font-size: 1.9rem; }
  .zerocode-banner { padding: 60px 5%; }
}


/* ============= Use-case cards (Web em Tempo Real) ============= */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-bottom: 8px;
}

.usecase-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 18px 18px 16px;
  transition: all 0.3s ease;
}

.usecase-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-2px);
}

.usecase-card > i {
  font-size: 1.2rem;
  color: var(--accent-secondary);
  background: rgba(0, 229, 255, 0.08);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.usecase-card h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.usecase-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ============= Tela de Obrigado (modal step success) ============= */
.modal-step[hidden] { display: none; }
.modal-step-success { text-align: center; padding-top: 6px; }

.success-icon-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 8px auto 22px;
}

.success-icon {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  box-shadow: 0 10px 40px rgba(0, 229, 255, 0.4);
  z-index: 2;
  animation: success-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.success-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(0, 229, 255, 0.4);
  animation: success-ring 1.4s ease-out 0.2s infinite;
}

@keyframes success-pop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes success-ring {
  0% { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

.modal-step-success h3 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.success-msg {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
  line-height: 1.6;
}

.success-msg strong {
  color: var(--text-main);
  font-weight: 600;
}

.success-next {
  list-style: none;
  text-align: left;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  margin-bottom: 24px;
}

.success-next li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-main);
  padding: 6px 0;
}

.success-next li i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.12);
  color: var(--accent-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============= Orquestrador novo ============= */
.orchestrator-stage {
  position: relative;
  width: 460px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orchestrator-stage .core-orb {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 229, 255, 0.85), rgba(98, 0, 234, 0.5));
  box-shadow: 0 0 70px rgba(0, 229, 255, 0.45),
              inset 0 0 30px rgba(255,255,255,0.18),
              0 0 0 1px rgba(0, 229, 255, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse 4s infinite alternate ease-in-out;
  z-index: 5;
}

.core-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.orchestrator-stage .core-orb h3 {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  z-index: 2;
  color: white;
}

.core-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(0, 229, 255, 0.5);
  animation: corepulse 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes corepulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Órbitas */
.orchestrator-stage .orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.18);
  pointer-events: none;
}

.orchestrator-stage .orbit-in {
  width: 290px;
  height: 290px;
  border-color: rgba(0, 229, 255, 0.25);
  animation: spin 28s linear infinite;
}

.orchestrator-stage .orbit-out {
  width: 440px;
  height: 440px;
  border-color: rgba(98, 0, 234, 0.28);
  animation: spin 38s linear infinite reverse;
}

/* Ícones em órbita */
.orbit-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  border-radius: 50%;
  background: rgba(11, 12, 16, 0.92);
  border: 1px solid rgba(0, 229, 255, 0.5);
  color: var(--accent-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 4px 18px rgba(0, 229, 255, 0.25), inset 0 0 12px rgba(0,229,255,0.08);
  transform: rotate(var(--angle)) translate(145px) rotate(calc(-1 * var(--angle)));
  pointer-events: auto;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orbit-out .orbit-icon {
  border-color: rgba(98, 0, 234, 0.55);
  color: #c9a8ff;
  box-shadow: 0 4px 18px rgba(98, 0, 234, 0.3), inset 0 0 12px rgba(98,0,234,0.12);
  transform: rotate(var(--angle)) translate(220px) rotate(calc(-1 * var(--angle)));
}

.orbit-icon::after {
  content: attr(data-label);
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s ease;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px;
  pointer-events: none;
}

.orbit-icon:hover {
  box-shadow: 0 6px 24px rgba(0, 229, 255, 0.5), inset 0 0 12px rgba(0,229,255,0.15);
  transform: rotate(var(--angle)) translate(145px) rotate(calc(-1 * var(--angle))) scale(1.15);
}

.orbit-out .orbit-icon:hover {
  box-shadow: 0 6px 24px rgba(98, 0, 234, 0.5), inset 0 0 12px rgba(98,0,234,0.18);
  transform: rotate(var(--angle)) translate(220px) rotate(calc(-1 * var(--angle))) scale(1.15);
}

.orbit-icon:hover::after { opacity: 1; }

/* Legenda */
.orchestrator-legend {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 22px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.4px;
  background: rgba(11, 12, 16, 0.7);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(6px);
}

.orchestrator-legend span { display: inline-flex; align-items: center; gap: 6px; }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dot-in { background: var(--accent-secondary); box-shadow: 0 0 8px var(--accent-secondary); }
.dot-out { background: var(--accent-primary); box-shadow: 0 0 8px var(--accent-primary); }

@media (max-width: 768px) {
  .orchestrator-stage { width: 320px; height: 320px; transform: scale(0.78); margin: -40px 0; }
}
