/* Cortex CSS - Estilo moderno e sofisticado */

:root {
  --primary-color: #0056b3;
  --secondary-color: #7b38d8;
  --accent-color: #00d4ff;
  --dark-bg: #121a29;
  --light-bg: #f8f9fa;
  --text-light: #ffffff;
  --text-dark: #333333;
  --gray-light: #e9ecef;
  --gray-medium: #adb5bd;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-accent: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  --card-radius: 16px;
  --transition-speed: 0.3s;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
}

/* Estilos gerais para a página Cortex */
body {
  font-family: var(--font-primary);
  overflow-x: hidden;
  background-color: var(--light-bg);
}

/* Hero Banner Cortex - Redesign moderno */
#hero-banner-cortex {
  position: relative;
  min-height: 100vh;
  background: var(--dark-bg);
  background-image: linear-gradient(135deg, rgba(0, 20, 50, 0.95) 0%, rgba(10, 20, 60, 0.95) 100%);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(123, 56, 216, 0.15) 0%, rgba(0, 86, 179, 0.05) 60%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#banner-slider {
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.banner-text {
  color: var(--text-light);
  text-align: left;
  padding: 3rem;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--card-radius);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px var(--glass-shadow);
  animation: fadeIn 1s ease-in-out;
}

.about-cortex-logo {
  margin-bottom: 2rem;
  display: flex;
  justify-content: flex-start;
}

.about-cortex-logo img {
  max-width: 250px;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
  animation: pulse 3s infinite;
}

.banner-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.2;
}

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-text p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.banner-text .highlight {
  color: var(--accent-color);
  font-weight: 600;
  position: relative;
  padding: 0 2px;
}

.banner-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 25px rgba(123, 56, 216, 0.5));
  z-index: 2;
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.9) 0%, rgba(123, 56, 216, 0.9) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 3;
  animation: fadeInRight 1s ease-in-out;
}

.floating-animation {
  animation: floating 6s ease-in-out infinite;
}

.pulse-animation {
  animation: btnPulse 2s infinite;
}

.glow-animation {
  animation: btnGlow 3s infinite;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-width: 180px;
}

.btn.primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.4);
}

.btn.primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 86, 179, 0.6);
}

.btn.secondary {
  background: var(--text-light);
  color: var(--primary-color);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn.secondary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: var(--gray-light);
}

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

.btn.secondary.transparent:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

/* Seções de Features e Benefícios */
#cortex-features, #cortex-benefits {
  padding: 6rem 2rem;
  position: relative;
}

#cortex-features {
  background: var(--light-bg);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#cortex-benefits {
  background: var(--primary-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath fill-rule='evenodd' d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/svg%3E");
  color: #ffffff;
}

.cortex-features-container, .cortex-benefits-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cortex-features-text h3, .cortex-benefits-text h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#cortex-benefits .cortex-benefits-text h3 {
  color: #00d4ff;
}

.cortex-features-text h2, .cortex-benefits-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.3;
}

#cortex-benefits .cortex-benefits-text h2 {
  color: #ffffff;
}

.cortex-features-text ul, .cortex-benefits-text ul {
  list-style: none;
  padding: 0;
}

.cortex-features-text li, .cortex-benefits-text li {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.6;
}

#cortex-benefits .cortex-benefits-text li strong {
  color: #00d4ff;
  font-weight: 700;
}

#cortex-benefits .cortex-benefits-text li {
  color: #ffffff;
}

.cortex-features-text li:before, .cortex-benefits-text li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.cortex-features-img img, .cortex-benefits-img img {
  width: 100%;
  max-width: 600px;
  border-radius: var(--card-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-speed) ease;
}

.cortex-features-img img:hover, .cortex-benefits-img img:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Seção de Produtos */
#cortex-products {
  padding: 6rem 2rem;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.cortex-products-header {
  max-width: 1000px;
  margin: 0 auto 4rem;
  text-align: center;
  padding: 3rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--card-radius);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px var(--glass-shadow);
}

.cortex-products-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}

.cortex-products-header p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.cortex-products-header ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cortex-products-header li {
  font-size: 1.1rem;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 86, 179, 0.1);
  border-radius: 50px;
  color: var(--primary-color);
  font-weight: 500;
}

/* Seção de Personas */
#personas-cortex-section {
  display: block;
  padding: 6rem 2rem 8rem;
  background: var(--dark-bg);
  background-image: linear-gradient(135deg, rgba(0, 86, 179, 0.1) 0%, rgba(123, 56, 216, 0.1) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

#perso-cortex-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  width: 100%;
  animation: fadeIn 1s ease-out;
}

#perso-cortex-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  border-radius: 3px;
}

#perso-cortex-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

/* Categorias de agentes */
.agents-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.category-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  text-align: center;
}

.category-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.category-btn.active {
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.2), rgba(123, 56, 216, 0.2));
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

/* Layout dos agentes */
.agents-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "title title"
    "agents description";
  gap: 1.5rem;
  width: 100%;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.agent-title-card {
  grid-area: title;
}

#persona-table {
  grid-area: agents;
}

#persona-details {
  grid-area: description;
}

/* Grid de agentes */
#persona-table {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 1.2rem;
  width: 100%;
  padding: 2.5rem;
  background: rgba(10, 81, 115, 0.5);
  border-radius: var(--card-radius);
  border: 1px solid var(--glass-border);
  position: relative;
  z-index: 1;
  overflow: auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  min-height: 300px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

#persona-table:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

#persona-table::before {
  content: 'AGENTES';
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 3px;
  pointer-events: none;
}

.persona-avatar {
  position: relative;
  width: 75px;
  height: 75px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 56, 216, 0.1));
  padding: 3px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.persona-avatar::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #00d4ff, #7b38d8);
  z-index: -1;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.persona-card:hover .persona-avatar::before {
  opacity: 1;
}

.persona-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
  filter: grayscale(30%);
  background: rgba(15, 20, 40, 0.8);
  border: 2px solid transparent;
}

.persona-card:hover .persona-avatar img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.persona-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  height: 90px;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.persona-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.persona-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.25);
  border-color: rgba(0, 212, 255, 0.4);
}

.persona-card:hover::after {
  opacity: 0.7;
}

.persona-card:hover .persona-avatar {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.persona-card:hover .persona-avatar img {
  filter: brightness(1.1) contrast(1.1);
  transform: scale(1.05);
}

.persona-name {
  display: none;
}

/* Estilos para a seção de Personas/Agentes - Redesign completo */
#personas-cortex-section {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, rgba(9, 9, 36, 0.98) 0%, rgba(26, 32, 64, 0.98) 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#personas-cortex-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 10%, rgba(123, 56, 216, 0.15), transparent 70%);
  z-index: 0;
}

#personas-cortex-section.glass-effect {
  position: relative;
  z-index: 1;
}

.bg-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><rect fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2" x="25" y="25" width="50" height="50" transform="rotate(45 50 50)"/></svg>');
  background-size: 60px 60px;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

.agent-title-card {
  text-align: center;
  margin-bottom: 0;
  width: 100%;
  position: relative;
  z-index: 2;
  background: #0a5173;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  grid-area: title;
}

.agent-title-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #00d4ff;
  line-height: 1.3;
}

.gradient-text {
  background: linear-gradient(90deg, #00d4ff, #7b38d8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.gradient-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #7b38d8);
  transform: scaleX(0.8);
  opacity: 0.7;
  border-radius: 2px;
}

.personas-header p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-light);
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

/* Estilos para o card de detalhes do agente */
#persona-details {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  grid-area: description;
}

#generic-card {
  background: rgba(10, 81, 115, 0.5) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--card-radius);
  backdrop-filter: blur(10px);
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#generic-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-weight: 600;
}

#generic-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
}

#persona-card {
  background: rgba(10, 81, 115, 0.5) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--card-radius);
  backdrop-filter: blur(10px);
  padding: 2rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease-out;
}

.cortex-agent-detail-card {
  background: #0a5173 !important;
  border-radius: 20px;
  padding: 2.5rem;
  border: none !important;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

.cortex-agent-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  opacity: 0;
  z-index: -1;
  border-radius: 20px;
}

.cortex-agent-detail-card:hover::before {
  opacity: 0;
  background: none;
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(123, 56, 216, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.card-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.cortex-agent-detail-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cortex-agent-detail-card h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #7b38d8);
  border-radius: 2px;
}

.cortex-agent-detail-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.2), rgba(123, 56, 216, 0.2));
  border-radius: 50px;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
}

.persona-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.persona-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1.5rem;
  border: 3px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.persona-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.persona-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.skill-tag {
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: rgba(0, 212, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hidden {
  display: none;
}

/* Animação para os cards de agentes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
}

.persona-card.active {
  border-color: rgba(0, 212, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.15);
}

.persona-card.active .persona-avatar::before {
  opacity: 1;
}

.hidden {
  display: none;
}

/* Media Queries para Responsividade */
@media (max-width: 1400px) {
  #persona-table {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    padding: 1.5rem;
  }
}

@media (max-width: 1200px) {
  #perso-cortex-container {
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
  }
  
  #persona-table {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
  
  .persona-avatar {
    width: 70px;
    height: 70px;
  }
  
  .persona-card {
    height: 85px;
  }
  
  .cortex-agent-detail-card {
    padding: 2rem;
    min-height: 400px;
  }
}

@media (max-width: 992px) {
  #perso-cortex-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  #persona-table {
    grid-template-columns: repeat(5, 1fr);
    padding: 1.5rem;
    max-height: none;
  }
  
  .persona-avatar {
    width: 65px;
    height: 65px;
  }
  
  .persona-card {
    height: 80px;
    padding: 0.4rem;
  }
  
  .cortex-agent-detail-card {
    padding: 2rem;
    min-height: 320px;
  }
  
  #persona-details {
    position: relative;
    top: 0;
  }
  
  .agents-categories {
    gap: 0.5rem;
  }
  
  .category-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    min-width: 100px;
  }
}

@media (max-width: 768px) {
  #personas-cortex-section {
    padding: 4rem 1rem;
  }
  
  .personas-header h2 {
    font-size: 2rem;
  }
  
  #perso-cortex-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  #persona-table {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin-bottom: 2rem;
    padding: 1.25rem;
    max-height: 450px;
  }
  
  .persona-avatar {
    width: 55px;
    height: 55px;
  }
  
  .persona-card {
    padding: 0.4rem;
    height: 70px;
  }
  
  .cortex-agent-detail-card {
    padding: 1.75rem;
    margin: 0 auto;
    min-height: 300px;
  }
  
  .cortex-agent-detail-card h3 {
    font-size: 1.5rem;
  }
  
  .cortex-agent-detail-card p {
    font-size: 1rem;
  }
  
  #persona-details {
    position: relative;
    top: 0;
    margin-top: 0;
  }
  
  .agents-categories {
    flex-wrap: wrap;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .category-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    min-width: auto;
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 576px) {
  #persona-table {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    padding: 1rem;
    max-height: 400px;
  }
  
  .persona-card {
    height: 65px;
    padding: 0.3rem;
  }
  
  .persona-avatar {
    width: 50px;
    height: 50px;
  }
  
  .cortex-agent-detail-card {
    padding: 1.5rem;
    min-height: 280px;
  }
  
  .agents-categories {
    margin-bottom: 1rem;
  }
  
  .category-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 400px) {
  #persona-table {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .persona-card {
    height: 60px;
  }
  
  .persona-avatar {
    width: 45px;
    height: 45px;
  }
  
  .cortex-agent-detail-card {
    padding: 1.25rem;
    min-height: 250px;
  }
  
  .cortex-agent-detail-card h3 {
    font-size: 1.3rem;
  }
  
  .cortex-agent-detail-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  #personas-cortex-section {
    padding: 4rem 0.5rem;
  }

  #perso-cortex-container {
    padding: 0 0.5rem;
  }

  #persona-table {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 1rem 0.5rem;
  }
  
  #persona-table img {
    max-width: 60px;
    height: 60px;
    padding: 0.2rem;
  }
  
  .persona-name {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
  
  .cortex-agent-detail-card {
    padding: 1.25rem;
    min-width: 100%;
    max-width: 100%;
  }
  
  #generic-card h3, .persona-header h3 {
    font-size: 1.5rem;
  }
  
  #generic-card p, #persona-desc {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  #persona-table {
    grid-template-columns: repeat(3, 1fr);
    max-height: 350px;
  }

  #persona-table img {
    max-width: 50px;
    height: 50px;
  }
  
  .cortex-agent-detail-card {
    padding: 1rem;
    min-height: 280px;
  }
  
  #generic-card h3, .persona-header h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  #generic-card p, #persona-desc {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  
  .skill-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .persona-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .persona-header img {
    margin-right: 0;
  }
}

/* Estilos para os cards de detalhes das personas */

/* Classe glass-card removida para evitar duplicação de estilos */

/* Estilos específicos para o card genérico */
#generic-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.1);
  height: auto;
}

#generic-card h3 {
  color: #00d4ff;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
  width: 100%;
}

#generic-card p {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 100%;
  word-wrap: break-word;
}

#generic-card .card-badge {
  background: linear-gradient(135deg, #0056b3, #7b38d8);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#generic-card .card-icon {
  font-size: 3rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  background: rgba(0, 212, 255, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

#persona-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 280px;
  padding: 2rem;
}

.persona-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.persona-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #00d4ff;
  margin-right: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.persona-header h3 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
}

#persona-desc {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 100%;
  word-wrap: break-word;
}

.persona-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.skill-tag {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.hidden {
  display: none;
}

.cortex-agent-detail-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  margin: 0;
  height: auto;
  min-height: 450px;
}

/* Estilos específicos para o card de persona */
#persona-card {
  text-align: center;
  border: 1px solid rgba(0, 212, 255, 0.2);
  height: auto;
}

#persona-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--accent-color);
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
}

#persona-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

#persona-card p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.hidden {
  display: none;
}

/* Seção de Integração */
#cortex-integration {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(9, 9, 36, 0.97) 0%, rgba(26, 32, 64, 0.97) 100%);
  position: relative;
  color: var(--text-light);
  overflow: hidden;
}

#cortex-integration .bg-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230056b3' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 0;
}

.cortex-integration-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cortex-integration-text h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.cortex-integration-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.3;
  color: var(--text-light);
}

.cortex-integration-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cortex-integration-text ul {
  list-style: none;
  padding: 0;
}

.cortex-integration-text li {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cortex-integration-text li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.cortex-integration-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-highlight-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.2) 0%, rgba(123, 56, 216, 0.1) 40%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  opacity: 0.7;
  animation: pulse 5s infinite alternate;
}

.cortex-integration-img img {
  width: 100%;
  max-width: 600px;
  border-radius: var(--card-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2),
              0 0 30px rgba(0, 212, 255, 0.3);
  transition: all var(--transition-speed) ease;
  border: 2px solid rgba(0, 212, 255, 0.3);
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.2));
  position: relative;
  z-index: 1;
}

.cortex-integration-img img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25),
              0 0 40px rgba(0, 212, 255, 0.4);
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

/* Estilos para os passos do processo */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.process-step {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 0 15px rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.3);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.step-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.step-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cortex-integration-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .cortex-integration-img {
    order: -1;
  }
  
  .cortex-integration-img img {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* Seção de Estatísticas */
#cortex-stats {
  padding: 6rem 2rem;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  color: var(--text-dark);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--card-radius);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px var(--glass-shadow);
  padding: 4rem;
}

.stats-header {
  text-align: center;
  margin-bottom: 4rem;
}

.stats-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}

.stats-header p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-dark);
  opacity: 0.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--card-radius);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px var(--glass-shadow);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, rgba(123, 56, 216, 0.05) 100%);
  z-index: -1;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-dark);
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.stat-unit {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: inline-block;
  vertical-align: top;
  margin-left: 0.25rem;
}

/* Seção CTA */
#cortex-cta {
  padding: 6rem 2rem;
  background: var(--dark-bg);
  background-image: linear-gradient(135deg, rgba(0, 86, 179, 0.2) 0%, rgba(123, 56, 216, 0.2) 100%);
  position: relative;
}

.cortex-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  color: var(--text-light);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--card-radius);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px var(--glass-shadow);
  padding: 4rem;
}

.cortex-cta-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
  text-align: left;
}

.cortex-cta-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 800px;
  text-align: left;
}

.cta-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cta-feature i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.cta-feature span {
  font-size: 1rem;
  font-weight: 500;
}

.cortex-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cortex-cta-buttons .btn {
  font-size: 1.1rem;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}

.cortex-cta-buttons .btn.primary {
  background: var(--text-light);
  color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cortex-cta-buttons .btn.secondary {
  background: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
}

.cortex-cta-buttons .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsividade */
@media (max-width: 1200px) {
  .cortex-features-container, 
  .cortex-benefits-container,
  .cortex-integration-container,
  #perso-cortex-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .cortex-features-text, 
  .cortex-benefits-text,
  .cortex-integration-text {
    order: 1;
  }
  
  .cortex-features-img, 
  .cortex-benefits-img,
  .cortex-integration-img {
    order: 2;
    display: flex;
    justify-content: center;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .banner-text {
    text-align: center;
    padding: 2rem;
  }
  
  .about-cortex-logo {
    justify-content: center;
  }
  
  .banner-buttons {
    justify-content: center;
  }
  
  .banner-text h1 {
    font-size: 2.8rem;
  }
  
  .cortex-features-text h2, 
  .cortex-benefits-text h2,
  .cortex-integration-text h2,
  .cortex-products-header h2,
  .cortex-cta-text h2,
  .stats-header h2,
  #perso-cortex-title {
    font-size: 2.2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .cortex-cta-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cortex-cta-text h2,
  .cortex-cta-text p {
    text-align: center;
  }
  
  .cta-features {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  #hero-banner-cortex,
  #cortex-features, 
  #cortex-benefits,
  #cortex-products,
  #personas-cortex-section,
  #cortex-integration,
  #cortex-stats,
  #cortex-cta {
    padding: 4rem 1.5rem;
  }
  
  .banner-text {
    padding: 2rem;
  }
  
  .banner-text h1 {
    font-size: 2.2rem;
  }
  
  .banner-text p {
    font-size: 1.1rem;
  }
  
  .banner-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cortex-features-text h2, 
  .cortex-benefits-text h2,
  .cortex-integration-text h2,
  .cortex-products-header h2,
  .cortex-cta-text h2,
  #perso-cortex-title {
    font-size: 1.8rem;
  }
  
  .cortex-features-text h3, 
  .cortex-benefits-text h3,
  .cortex-integration-text h3 {
    font-size: 1.3rem;
  }
  
  .cortex-products-header {
    padding: 2rem;
  }
  
  .cortex-cta-container {
    padding: 3rem 1.5rem;
  }
  
  #persona-table {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 1rem;
  }
  
  .stats-container {
    padding: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* Animações */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes btnPulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

@keyframes btnGlow {
  0% { box-shadow: 0 0 5px rgba(255, 255, 255, 0.3); }
  50% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.6); }
  100% { box-shadow: 0 0 5px rgba(255, 255, 255, 0.3); }
}
