/* 
  IA Pro Solutions - Premium Design System 
  Style: Tech Noir / Vivid Yellow (Updated)
*/

:root {
  /* Palette - Mentores Design System */
  --bg-dark: #000000;
  --bg-card: #0a0a0a;
  --bg-surface: #111111;

  --brand-primary: #e5bc33;
  /* Mentores Yellow */
  --brand-glow: rgba(229, 188, 51, 0.4);

  --text-main: #ffffff;
  --text-muted: #a3a3a3;

  --border-color: #262626;
  --border-active: #e5bc33;

  --font-heading: "Dela Gothic One", cursive;
  --font-body: "Manrope", sans-serif;

  --ease-fluid: cubic-bezier(0.19, 1, 0.22, 1);
  --site-gutter: 2rem;
}

@media (max-width: 768px) {
  :root {
    --site-gutter: 1.5rem;
  }
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

main {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

h1,
h2,
h3,
h4,
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  margin-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-fluid);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}

.section-padding {
  padding: 6rem 0;
}

.mb-header {
  margin-bottom: 4rem;
}

.mb-element {
  margin-bottom: 2.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, var(--brand-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent {
  color: var(--brand-primary);
}

.bg-surface {
  background-color: var(--bg-surface);
}

.max-w-800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 2rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

/* Noise Texture Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-nav a:not(.btn) {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.desktop-nav a:not(.btn):hover {
  color: white;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Buttons - Premium & Rounded */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-weight: 500;
  transition: all 0.4s var(--ease-fluid);
  border-radius: 30px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.btn-primary {
  background-color: var(--brand-primary);
  color: #000000;
  border: 1px solid var(--brand-primary);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--brand-primary);
  color: #000000;
  box-shadow: 0 0 30px var(--brand-glow), 0 10px 20px rgba(0,0,0,0.5);
  transform: translateY(-3px) scale(1.02);
  border-color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid var(--border-active);
}

.btn-outline:hover {
  border-color: var(--brand-secondary);
  background: var(--brand-secondary);
  color: white;
  box-shadow: 0 0 20px rgba(3, 174, 238, 0.3);
}

.btn-full {
  width: 100%;
  justify-content: center;
  background: white;
  color: black;
  border: 1px solid white;
}

.btn-full:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #000000;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-primary);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.link-arrow i {
  transition: transform 0.3s ease;
}

.link-arrow:hover {
  color: white;
}

.link-arrow:hover i {
  transform: translateX(5px);
}

/* Hero Section Mentores Replica */
.hero-mentores {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  background:
    radial-gradient(
      circle at right 40%,
      rgba(3, 174, 238, 0.15) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(229, 188, 51, 0.15) 0%,
      transparent 45%
    ),
    #030303;
}

.hero-grid-mentores {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-tags {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  color: #eeeed2;
  font-size: 0.9rem;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-heading);
  color: #eeeed2;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

.accent-highlight {
  color: var(--brand-primary);
}

.hero-subtitle {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 2rem;
  max-width: 600px;
}

.hero-abstract {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3vw;
  color: #eeeed2;
  opacity: 0.6;
}

.hero-abstract i {
  filter: drop-shadow(0 0 10px rgba(238, 238, 210, 0.1));
}

/* Hero Visual - Abstract Composition */
.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orb-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.orb-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    var(--brand-primary) 0%,
    var(--brand-secondary) 40%,
    transparent 70%
  );
  opacity: 0.6;
  filter: blur(20px);
  animation: pulse 4s infinite ease-in-out;
}

.orb-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(229, 188, 51, 0.15);
  border-radius: 50%;
  box-shadow: inset 0 0 20px rgba(3, 174, 238, 0.1);
}

.ring-1 {
  width: 300px;
  height: 300px;
  animation: spin 20s linear infinite;
  border-style: dashed;
}

.ring-2 {
  width: 220px;
  height: 220px;
  animation: spin-rev 15s linear infinite;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  color: white;
}

.card-1 {
  top: 20%;
  left: -10%;
  animation: float 6s ease-in-out infinite;
}

.card-2 {
  bottom: 20%;
  right: -10%;
  animation: float 6s ease-in-out infinite 2s;
}

/* --- GLOBAL BLUEPRINT TEXTURE --- */
.blueprint-texture::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 20%,
    black 80%,
    transparent
  );
}

/* SECTION HEADERS - Technical Style */
.section-header h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

/* --- OPEN LAYOUT SERVICES (Mentores Style) --- */
.grid-mentores-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 2rem;
}

.service-mentores-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-index-outline {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.service-mentores-content h3 {
  font-size: 1.4rem;
  color: #eeeed2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.service-mentores-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  min-height: 100px;
}

@media (max-width: 968px) {
  .grid-mentores-services {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.module-id {
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 0.2rem 0.5rem;
}

/* --- TESTIMONIALS: DATA REPORTS --- */
.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  position: relative;
  padding: 3rem 2.5rem;
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
}

.author-avatar {
  border: 1px solid var(--brand-primary);
  padding: 2px;
  /* Space between border and image */
}

/* --- CONTACT: TERMINAL FORM --- */
.contact-form {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  position: relative;
  padding: 3rem 2.5rem 2.5rem;
  margin-top: 1rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: "Courier New", monospace;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid var(--border-color);
  color: var(--brand-primary);
  font-family: "Courier New", monospace;
  font-size: 1rem;
  border-radius: 0;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: rgba(229, 188, 51, 0.05);
  box-shadow: 0 0 15px rgba(229, 188, 51, 0.1);
}

.form-note {
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: right;
  opacity: 0.7;
}

/* --- FOOTER: SYSTEM FOOTER --- */
.footer {
  border-top: 1px solid var(--border-color);
  background: #000;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
}

.footer::before {
  /* Top technical barcode strip */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-image: linear-gradient(
    90deg,
    var(--brand-primary) 0%,
    var(--brand-primary) 20%,
    transparent 20%,
    transparent 30%,
    var(--brand-primary) 30%,
    var(--brand-primary) 35%,
    transparent 35%,
    transparent 50%,
    var(--brand-primary) 50%,
    var(--brand-primary) 70%,
    transparent 70%
  );
  background-size: 200px 100%;
  opacity: 0.5;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand h3 {
  font-family: "Courier New", monospace;
  color: var(--brand-primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* System Status Box in Footer */
.system-status-box {
  border: 1px solid var(--border-color);
  padding: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
}

.status-light {
  width: 6px;
  height: 6px;
  background: var(--brand-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brand-primary);
  animation: blink 3s infinite;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-links h4 {
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-links a {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a:hover {
  color: var(--brand-primary);
  padding-left: 10px;
  /* Slide effect */
}

.footer-links a:hover::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--brand-primary);
  font-family: monospace;
}

.copyright {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright p {
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.5;
}

.socials {
  display: flex;
  gap: 1.5rem;
}

.socials a {
  color: var(--text-muted);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  padding: 0.5rem;
}

.socials a:hover {
  color: var(--brand-primary);
  border-color: var(--border-color);
  background: rgba(255, 255, 255, 0.02);
}

/* --- UTILITY GRIDS --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 5rem;
}

.grid-2-bias {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: center;
}

/* --- AUTHOR & TESTIMONIAL LAYOUTS --- */
.author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  display: block;
  color: white;
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  font-family: serif;
}

/* --- CTA & CONTACT LAYOUTS --- */
.cta-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #1a0f0a 100%);
  border-top: 1px solid var(--border-color);
}

.cta-text {
  padding-right: 2rem;
}

.contact-info {
  margin-top: 2rem;
}

.contact-info .item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* --- BENEFITS: PROTOCOL LIST --- */
.feature-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-list li {
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin-bottom: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  position: relative;
}

.feature-list li::before {
  /* Top Left Bracket */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--text-muted);
  border-left: 1px solid var(--text-muted);
  transition: all 0.3s ease;
}

.feature-list li::after {
  /* Bottom Left Bracket */
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid var(--text-muted);
  border-left: 1px solid var(--text-muted);
  transition: all 0.3s ease;
}

.feature-list li:hover::before,
.feature-list li:hover::after {
  border-color: var(--brand-primary);
  width: 100%;
  /* Expand borders on hover */
  height: 100%;
}

.feature-content {
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  width: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-list li:hover .feature-content {
  border-left-color: var(--brand-primary);
  background: linear-gradient(90deg, rgba(250, 204, 21, 0.05), transparent);
}

.tech-index {
  font-family: "Courier New", monospace;
  color: var(--brand-primary);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: block;
  opacity: 0.7;
}

.feature-list h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}

.feature-list p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Hide old icons to use new structure */
.check-icon {
  display: none;
}

/* --- VISUAL RING (Restoring) --- */
.stats-panel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  width: 100%;
}

.ring-outer {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}

.ring-inner {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 2px solid var(--brand-primary);
  border-radius: 50%;
  box-shadow:
    0 0 30px var(--brand-glow),
    inset 0 0 30px var(--brand-glow);
  animation: pulse 4s ease-in-out infinite;
  opacity: 0.5;
}

.status-card {
  position: relative;
  z-index: 10;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  padding: 2rem;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.status-card .number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  text-shadow: 0 0 20px var(--brand-glow);
}

.status-card .label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: white;
  margin-top: 0.5rem;
}

.dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--brand-primary);
  border-radius: 50%;
}

.d-top {
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}

.d-bottom {
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
}

.d-left {
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
}

.d-right {
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
}

/* Animations */
@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin-rev {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Reveal Classes (handled by JS) */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.8s var(--ease-fluid);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.visual-side {
  display: flex;
  justify-content: flex-end;
}

.active {
  opacity: 1;
  transform: translate(0);
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .grid-3,
  .grid-2-bias,
  .grid-2,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .desktop-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: rgba(8, 8, 8, 0.96); /* Much darker to act as fallback if blur is unsupported */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 8rem;
    align-items: flex-start; /* Terminal aesthetic */
    gap: 2rem !important; /* Override inline gap */
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 3rem;
    z-index: 100;
    border-left: 1px solid rgba(229, 188, 51, 0.3); /* Brand accent border */
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8);
  }

  .desktop-nav.active {
    right: 0;
  }

  /* Enhancing typography and layout for mobile links */
  .desktop-nav a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.4s ease;
  }

  .desktop-nav.active a {
    opacity: 1;
    transform: translateX(0);
  }

  /* Cascading entrance animation */
  .desktop-nav a:nth-child(1) { transition-delay: 0.2s; }
  .desktop-nav a:nth-child(2) { transition-delay: 0.3s; }
  .desktop-nav a:nth-child(3) { transition-delay: 0.4s; }
  .desktop-nav a:nth-child(4) { transition-delay: 0.5s; }

  /* Tech bullet points */
  .desktop-nav a:not(:last-child)::before {
    content: "/// ";
    color: var(--brand-primary);
    font-size: 1rem;
    vertical-align: middle;
    margin-right: 0.5rem;
    opacity: 0.8;
  }

  /* Adjust the embedded Call to Action Button */
  .desktop-nav a:last-child {
    font-family: var(--font-body);
    font-size: 1.1rem !important;
    text-transform: none;
    width: 100%;
    margin-top: 2rem;
    text-align: center;
    padding: 1rem 2rem !important;
  }

  .mobile-menu-btn {
    display: block;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Specific Mobile Fixes for Buttons */
@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    padding: 0 1rem;
    /* Prevent edge touching */
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    /* Larger touch target */
  }

  .hero h1 {
    font-size: 2rem;
  }
}

/* Mission Blueprint Section (New) */
.blueprint-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.mission-mentores {
  padding: 2rem 0;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-grid {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.big-number-outline {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.mission-title {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  line-height: 1.1 !important;
  margin-bottom: 2rem !important;
  text-transform: uppercase;
  color: #eeeed2;
}

.mission-text-premium {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 950px;
}

.tech-specs-mentores {
  display: flex;
  gap: 4rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

/* Technical Header */
.blueprint-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-primary);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand-primary);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* Content Layout */
.blueprint-content {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 3rem;
}

/* Visual Side */
.blueprint-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid var(--border-color);
  padding-right: 2rem;
}

.big-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.vertical-line {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, var(--brand-primary), transparent);
  margin-top: 1rem;
}

/* Text Side */
.blueprint-text h2 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.strike-through {
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  color: var(--brand-primary);
}

.blueprint-sub {
  font-family: "Courier New", monospace;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.mission-text {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.mission-text .highlight {
  background: rgba(250, 204, 21, 0.1);
  color: var(--brand-primary);
}

.mission-text-secondary {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* Tech Specs Footer */
.tech-specs {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.spec-item .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.spec-item .value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: white;
}

/* Mobile Adjustments for Blueprint */
@media (max-width: 768px) {
  .blueprint-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blueprint-visual {
    display: block;
    border-right: none;
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .blueprint-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .mission-blueprint {
    padding: 1.5rem;
  }
}

/* --- TERMINAL DE DADOS VIVOS: REAL-TIME AI VISUAL --- */
.terminal-viva {
  overflow: hidden;
  background: radial-gradient(
    circle at center,
    rgba(229, 188, 51, 0.05) 0%,
    transparent 80%
  );
}

.code-stream-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  opacity: 0.15;
  z-index: 1;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 20%,
    black 80%,
    transparent
  );
}

.code-column {
  display: flex;
  flex-direction: column;
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  color: var(--brand-primary);
  animation: scroll-code 15s linear infinite;
  gap: 1rem;
}

.code-column span {
  white-space: nowrap;
}

@keyframes scroll-code {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.pulsing-node {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--brand-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand-primary);
  z-index: 5;
}

.node-1 {
  top: 20%;
  left: 15%;
  animation: pulse-glow 2s infinite;
}

.node-2 {
  bottom: 30%;
  right: 20%;
  animation: pulse-glow 2s infinite 0.7s;
}

.node-3 {
  top: 10%;
  right: 40%;
  animation: pulse-glow 2s infinite 1.4s;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(2.5);
    opacity: 1;
    box-shadow: 0 0 20px var(--brand-primary);
  }
}

.terminal-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(229, 188, 51, 0.1);
  border-radius: 50%;
  z-index: 2;
  animation: rotate-slow 30s linear infinite;
}

.terminal-ring::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--brand-primary);
  border-radius: 50%;
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* --- ISOLATED CASES CSS (PREMIUM HOVERS) --- */
.case-card-hero {
  transition: all 0.5s var(--ease-fluid);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
}

.case-card-hero:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  border-color: var(--brand-primary) !important;
}

.case-compact {
  transition: all 0.4s var(--ease-fluid);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(20, 20, 20, 0.5);
  display: flex;
  flex-direction: column;
}

.case-compact:hover {
  background: rgba(229, 188, 51, 0.03) !important;
  border-color: rgba(229, 188, 51, 0.3) !important;
  transform: translateY(-5px);
}

.case-compact:hover .link-arrow i {
  transform: translateX(8px);
}

.case-compact:hover .link-arrow {
  color: white;
}

.check-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.sebrae-stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  background: rgba(229, 188, 51, 0.05);
  border: 1px dashed var(--brand-primary);
  color: var(--brand-primary);
  font-size: 0.7rem;
  font-family: "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  transition: all 0.3s ease;
}

.accent-title,
.module-id {
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  display: block;
  opacity: 0.8;
}

.case-card-hero:hover .sebrae-stamp {
  background: var(--brand-primary);
  color: #000;
}

@media (max-width: 1024px) {
  .case-card-hero {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
    padding: 3rem !important;
  }
}

.terminal-core {
  background: rgba(10, 10, 10, 0.8) !important;
  border: 2px solid var(--brand-glow) !important;
  box-shadow: 0 0 50px rgba(229, 188, 51, 0.1) !important;
  position: relative;
  overflow: hidden;
}

.core-grid {
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(var(--brand-glow) 1px, transparent 1px);
  background-size: 15px 15px;
  opacity: 0.2;
  animation: drift 20s linear infinite;
}

@keyframes drift {
  from {
    transform: translate(-10%, -10%);
  }

  to {
    transform: translate(0, 0);
  }
}

.active-scanner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 45%,
    var(--brand-primary) 50%,
    transparent 55%
  );
  background-size: 100% 200%;
  animation: scanning-v2 4s ease-in-out infinite;
  mix-blend-mode: screen;
  opacity: 0.3;
}

@keyframes scanning-v2 {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

.hud-overlay {
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 40px;
  pointer-events: none;
  z-index: 10;
}

.hud-item {
  position: absolute;
  font-family: monospace;
  font-size: 0.6rem;
  color: var(--text-muted);
  padding: 2px 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.top-left {
  top: -10px;
  left: 20px;
}

.bottom-right {
  bottom: -10px;
  right: 20px;
}

/* --- PREMIUM FORM MODULE --- */
.form-container-premium {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  padding: 3rem;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.form-container-premium::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--brand-primary);
  border-left: 2px solid var(--brand-primary);
}

.form-container-premium::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid var(--brand-primary);
  border-right: 2px solid var(--brand-primary);
}

/* --- RESPONSIVE DESIGN (MOBILE ADAPTATION) --- */
@media (max-width: 1024px) {
  /* Container padding handled by --site-gutter variable */

  .hero-grid-mentores,
  .mission-grid,
  .grid-2,
  .grid-2-bias,
  .grid-mentores-services {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .grid-2-bias {
    grid-template-columns: 1fr !important;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .big-number-outline {
    font-size: 5rem;
  }

  .mission-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }

  /* Navbar Mobile Fix */
  .navbar {
    padding: 1rem 0;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 101;
  }

  /* Drawer logic has been unified into the 968px breakpoint for tablet/mobile consistency */

  /* Hero Section Mobile adjustments */
  .hero-mentores {
    padding-top: 140px !important;
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .hero-tags span {
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: 2rem !important;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-abstract {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .hero-abstract i {
    width: 40px !important;
    height: 40px !important;
  }

  /* Sections Mobile */
  .mission-grid,
  .grid-2,
  .grid-2-bias,
  .grid-mentores-services {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }

  .mission-title {
    font-size: 1.75rem !important;
  }

  .mission-text-premium {
    font-size: 1.2rem !important;
    line-height: 1.4 !important;
  }

  .tech-specs-mentores {
    flex-direction: column;
    gap: 2rem !important;
    margin-top: 3rem !important;
  }

  .spec-item {
    width: 100%;
  }

  .blueprint-header {
    text-align: left;
  }

  .blueprint-content {
    padding: 0 !important;
    /* Unified with container */
  }

  /* Testimonials/Cards Mobile */
  .testimonial-card,
  .service-mentores-item {
    padding: 1.5rem !important;
  }

  /* Terminal/Visual Side handling */
  .visual-side {
    width: 100% !important;
    justify-content: center !important;
    overflow: hidden;
    margin-top: 2rem;
  }

  .stats-panel {
    height: 300px;
    transform: scale(0.7);
  }

  /* Footer Mobile */
  .footer {
    padding-top: 3rem !important;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .system-status-box {
    width: 100% !important;
  }

  .copyright div {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start !important;
  }
}
