/* AI55 Solutions - Estilo Principal - Mobile First (95% mobile, 5% desktop) */
:root {
  /* Cores neon */
  --neon-purple: #b829f7;
  --neon-blue: #29b6f7;
  --neon-magenta: #f729b8;
  --neon-lime: #b8f729;
  
  /* Cores base */
  --bg-black: #000000;
  --bg-dark: #0a0a0a;
  --text-light: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.7);
  
  /* Efeitos */
  --glow-purple: 0 0 10px rgba(184, 41, 247, 0.7);
  --glow-blue: 0 0 10px rgba(41, 182, 247, 0.7);
  --glow-magenta: 0 0 10px rgba(247, 41, 184, 0.7);
  --glow-lime: 0 0 10px rgba(184, 247, 41, 0.7);
}

/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px; /* Base font size for mobile */
}

body {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  background-color: var(--bg-black);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(41, 182, 247, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184, 41, 247, 0.05) 0%, transparent 50%);
  padding-top: 70px; /* Space for fixed header */
}

/* Tipografia - Mobile First Otimizado */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  text-align: center;
}

h1 {
  font-size: 2.4rem; /* Aumentado para melhor legibilidade em mobile */
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: var(--glow-blue);
  line-height: 1.3;
}

h2 {
  font-size: 2rem; /* Aumentado para melhor legibilidade em mobile */
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
  line-height: 1.3;
}

h3 {
  font-size: 1.6rem; /* Aumentado para melhor legibilidade em mobile */
  color: var(--neon-purple);
  text-shadow: var(--glow-purple);
  line-height: 1.3;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem; /* Aumentado para melhor legibilidade em mobile */
  text-align: center;
  line-height: 1.7; /* Aumentado para melhor espaçamento em mobile */
}

a {
  color: var(--neon-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover, a:active, a:focus {
  color: var(--neon-purple);
  text-shadow: var(--glow-purple);
}

/* Container - Mobile First Otimizado */
.container {
  width: 94%; /* Aumentado para usar mais espaço em telas pequenas */
  margin: 0 auto;
  padding: 0 10px;
}

/* Header e Navegação - Mobile First Otimizado */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(41, 182, 247, 0.3);
  box-shadow: 0 4px 30px rgba(41, 182, 247, 0.1);
  height: 70px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  height: 100%;
}

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

.logo img {
  height: 40px;
  margin-right: 8px;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: all 0.5s ease;
  z-index: 1000;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.nav-links.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.nav-links li {
  list-style: none;
  margin: 1.2rem 0; /* Aumentado para melhor espaçamento em mobile */
  width: 100%;
  text-align: center;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
  display: block;
  padding: 1rem 1.2rem; /* Aumentado para área de toque maior */
  font-size: 1.2rem; /* Aumentado para melhor legibilidade em mobile */
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::after, .nav-links a:active::after, .nav-links a:focus::after {
  width: 60%;
  left: 20%;
}

.language-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 1.2rem 0; /* Aumentado para melhor espaçamento em mobile */
}

.language-selector select {
  background-color: rgba(10, 10, 10, 0.8);
  color: var(--text-light);
  border: 1px solid var(--neon-blue);
  padding: 12px 18px; /* Aumentado para área de toque maior */
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  font-size: 1.1rem; /* Aumentado para melhor legibilidade em mobile */
  width: 85%; /* Aumentado para melhor uso em mobile */
  max-width: 280px; /* Aumentado para melhor uso em mobile */
  text-align: center;
  text-align-last: center;
  -webkit-appearance: none;
  appearance: none;
}

.language-selector select option {
  background-color: var(--bg-dark);
  text-align: center;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem; /* Aumentado para área de toque maior */
  cursor: pointer;
  z-index: 1001;
  width: 50px; /* Aumentado para área de toque maior */
  height: 50px; /* Aumentado para área de toque maior */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section - Mobile First Otimizado */
.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, rgba(41, 182, 247, 0.1) 0%, transparent 50%),
    linear-gradient(225deg, rgba(184, 41, 247, 0.1) 0%, transparent 50%);
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-image {
  width: 100%;
  max-width: 380px; /* Aumentado para melhor visualização em mobile */
  margin-bottom: 2.5rem; /* Aumentado para melhor espaçamento em mobile */
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px; /* Aumentado para melhor visual em mobile */
  box-shadow: 0 0 30px rgba(103, 232, 249, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover, .hero-img:active {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(103, 232, 249, 0.5);
}

.hero-text {
  width: 100%;
}

.hero-title {
  font-size: 2.4rem; /* Aumentado para melhor legibilidade em mobile */
  margin-bottom: 1.8rem; /* Aumentado para melhor espaçamento em mobile */
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem; /* Aumentado para melhor legibilidade em mobile */
  color: var(--text-dim);
  margin-bottom: 2.5rem; /* Aumentado para melhor espaçamento em mobile */
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  color: var(--text-light);
  padding: 18px 32px; /* Aumentado para área de toque maior */
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: var(--glow-blue);
  transition: all 0.3s ease;
  font-size: 1.1rem; /* Aumentado para melhor legibilidade em mobile */
  min-width: 240px; /* Aumentado para melhor uso em mobile */
  text-align: center;
}

.hero-cta:hover, .hero-cta:active, .hero-cta:focus {
  transform: translateY(-3px);
  box-shadow: var(--glow-purple);
  color: var(--text-light);
}

/* Seções - Mobile First Otimizado */
section {
  padding: 4.5rem 0; /* Aumentado para melhor espaçamento em mobile */
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem; /* Aumentado para melhor espaçamento em mobile */
}

.section-subtitle {
  text-align: center;
  color: var(--text-dim);
  margin: 0 auto 2.5rem; /* Aumentado para melhor espaçamento em mobile */
  font-size: 1.2rem; /* Aumentado para melhor legibilidade em mobile */
}

.section-description {
  font-size: 1.1rem; /* Aumentado para melhor legibilidade em mobile */
  line-height: 1.7; /* Aumentado para melhor espaçamento em mobile */
  margin-bottom: 25px; /* Aumentado para melhor espaçamento em mobile */
  color: #e0e0e0;
  text-align: center;
}

/* Cards com Glassmorphism - Mobile First Otimizado */
.card {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 18px; /* Aumentado para melhor visual em mobile */
  padding: 2.2rem; /* Aumentado para melhor espaçamento em mobile */
  margin-bottom: 2.5rem; /* Aumentado para melhor espaçamento em mobile */
  border: 1px solid rgba(41, 182, 247, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover, .card:active {
  transform: translateY(-5px);
  border-color: var(--neon-blue);
  box-shadow: var(--glow-blue);
}

.card-title {
  color: var(--neon-blue);
  margin-bottom: 1.2rem; /* Aumentado para melhor espaçamento em mobile */
}

.card-content {
  color: var(--text-dim);
  font-size: 1.1rem; /* Aumentado para melhor legibilidade em mobile */
}

.card-icon {
  font-size: 2.5rem; /* Aumentado para melhor visual em mobile */
  margin-bottom: 25px; /* Aumentado para melhor espaçamento em mobile */
  color: #67e8f9;
}

/* Grid para cards - Mobile First Otimizado */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem; /* Aumentado para melhor espaçamento em mobile */
}

/* Botões - Mobile First Otimizado */
.btn {
  display: inline-block;
  padding: 18px 30px; /* Aumentado para área de toque maior */
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1rem; /* Aumentado para melhor legibilidade em mobile */
  min-width: 240px; /* Aumentado para melhor uso em mobile */
  text-align: center;
  margin: 0.8rem auto; /* Aumentado para melhor espaçamento em mobile */
  display: block;
}

.btn-primary {
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  color: var(--text-light);
  box-shadow: var(--glow-blue);
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  transform: translateY(-3px);
  box-shadow: var(--glow-purple);
  color: var(--text-light);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--neon-blue);
  color: var(--neon-blue);
}

.btn-outline:hover, .btn-outline:active, .btn-outline:focus {
  background: var(--neon-blue);
  color: var(--bg-black);
  box-shadow: var(--glow-blue);
}

/* Formulário de Contato - Mobile First Otimizado */
.contact-form {
  max-width: 100%;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 2rem; /* Aumentado para melhor espaçamento em mobile */
}

.form-label {
  display: block;
  margin-bottom: 1rem; /* Aumentado para melhor espaçamento em mobile */
  color: var(--neon-blue);
  font-size: 1.2rem; /* Aumentado para melhor legibilidade em mobile */
  text-align: left;
}

.form-input {
  width: 100%;
  padding: 18px; /* Aumentado para área de toque maior */
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(41, 182, 247, 0.3);
  border-radius: 10px; /* Aumentado para melhor visual em mobile */
  color: var(--text-light);
  font-family: inherit;
  transition: all 0.3s ease;
  font-size: 1.1rem; /* Aumentado para melhor legibilidade em mobile */
}

.form-input:focus {
  outline: none;
  border-color: var(--neon-purple);
  box-shadow: var(--glow-purple);
}

textarea.form-input {
  min-height: 180px; /* Aumentado para melhor uso em mobile */
  resize: vertical;
}

/* Planos de Preços - Mobile First Otimizado */
.pricing-table {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem; /* Aumentado para melhor espaçamento em mobile */
}

.pricing-card {
  width: 100%;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 18px; /* Aumentado para melhor visual em mobile */
  padding: 2.5rem 1.8rem; /* Aumentado para melhor espaçamento em mobile */
  text-align: center;
  border: 1px solid rgba(41, 182, 247, 0.2);
  transition: all 0.3s ease;
}

.pricing-card:hover, .pricing-card:active {
  transform: translateY(-10px);
  border-color: var(--neon-purple);
  box-shadow: var(--glow-purple);
}

.pricing-card.featured {
  border-color: var(--neon-blue);
  box-shadow: var(--glow-blue);
  position: relative;
  z-index: 1;
  order: -1; /* Featured plan appears first on mobile */
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -15px; /* Ajustado para melhor posicionamento */
  right: 20px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  color: var(--text-light);
  padding: 8px 18px; /* Aumentado para melhor visual em mobile */
  border-radius: 20px;
  font-size: 0.9rem; /* Aumentado para melhor legibilidade em mobile */
  font-weight: 700;
}

.pricing-title {
  font-size: 1.8rem; /* Aumentado para melhor legibilidade em mobile */
  margin-bottom: 1.2rem; /* Aumentado para melhor espaçamento em mobile */
  color: var(--neon-blue);
}

.pricing-price {
  font-size: 2.8rem; /* Aumentado para melhor legibilidade em mobile */
  font-weight: 700;
  margin-bottom: 1.8rem; /* Aumentado para melhor espaçamento em mobile */
  color: var(--text-light);
}

.pricing-price span {
  font-size: 1.1rem; /* Aumentado para melhor legibilidade em mobile */
  color: var(--text-dim);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem; /* Aumentado para melhor espaçamento em mobile */
  text-align: left;
}

.pricing-features li {
  padding: 12px 0; /* Aumentado para melhor espaçamento em mobile */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 30px; /* Aumentado para melhor visual em mobile */
  font-size: 1.1rem; /* Aumentado para melhor legibilidade em mobile */
}

.pricing-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--neon-blue);
  font-size: 1.2rem; /* Aumentado para melhor visual em mobile */
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Seções de conteúdo - Mobile First Otimizado */
.intro-section, .features-section, .immersive-section, .products-section, .use-cases-section, .cta-section {
  padding: 4.5rem 0; /* Aumentado para melhor espaçamento em mobile */
}

.intro-content, .immersive-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem; /* Aumentado para melhor espaçamento em mobile */
}

.intro-text, .immersive-text {
  width: 100%;
  text-align: center;
}

.intro-image, .immersive-image {
  width: 100%;
  max-width: 380px; /* Aumentado para melhor visualização em mobile */
  margin: 0 auto;
}

.intro-img, .immersive-img {
  width: 100%;
  height: auto;
  border-radius: 12px; /* Aumentado para melhor visual em mobile */
  box-shadow: 0 0 30px rgba(186, 104, 200, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-img:hover, .intro-img:active, .immersive-img:hover, .immersive-img:active {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(186, 104, 200, 0.5);
}

/* Casos de uso - Mobile First Otimizado */
.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem; /* Aumentado para melhor espaçamento em mobile */
  margin-top: 2.5rem; /* Aumentado para melhor espaçamento em mobile */
}

.use-case-card {
  background: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(103, 232, 249, 0.2);
  border-radius: 12px; /* Aumentado para melhor visual em mobile */
  padding: 2.2rem; /* Aumentado para melhor espaçamento em mobile */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.use-case-card:hover, .use-case-card:active {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(103, 232, 249, 0.2);
}

.use-case-icon {
  font-size: 2.3rem; /* Aumentado para melhor visual em mobile */
  margin-bottom: 25px; /* Aumentado para melhor espaçamento em mobile */
  color: #ba68c8;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem; /* Aumentado para melhor espaçamento em mobile */
  margin-top: 2rem; /* Aumentado para melhor espaçamento em mobile */
}

/* Footer - Mobile First Otimizado */
footer {
  background: var(--bg-dark);
  padding: 3.5rem 0 2.5rem; /* Aumentado para melhor espaçamento em mobile */
  border-top: 1px solid rgba(41, 182, 247, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem; /* Aumentado para melhor espaçamento em mobile */
  margin-bottom: 2.5rem; /* Aumentado para melhor espaçamento em mobile */
}

.footer-column {
  text-align: center;
}

.footer-column h4 {
  color: var(--neon-blue);
  margin-bottom: 1.5rem; /* Aumentado para melhor espaçamento em mobile */
  font-size: 1.3rem; /* Aumentado para melhor legibilidade em mobile */
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem; /* Aumentado para melhor espaçamento em mobile */
}

.footer-links a {
  color: var(--text-dim);
  transition: all 0.3s ease;
  display: inline-block;
  padding: 8px 0; /* Aumentado para área de toque maior */
  font-size: 1.1rem; /* Aumentado para melhor legibilidade em mobile */
}

.footer-links a:hover, .footer-links a:active, .footer-links a:focus {
  color: var(--neon-blue);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.8rem; /* Aumentado para melhor espaçamento em mobile */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  font-size: 1rem; /* Aumentado para melhor legibilidade em mobile */
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem; /* Aumentado para melhor espaçamento em mobile */
  margin-bottom: 2rem; /* Aumentado para melhor espaçamento em mobile */
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; /* Aumentado para área de toque maior */
  height: 60px; /* Aumentado para área de toque maior */
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(41, 182, 247, 0.3);
  color: var(--text-light);
  transition: all 0.3s ease;
  font-size: 1.4rem; /* Aumentado para melhor visual em mobile */
}

.social-links a:hover, .social-links a:active, .social-links a:focus {
  background: var(--neon-blue);
  color: var(--bg-black);
  transform: translateY(-3px);
  box-shadow: var(--glow-blue);
}

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

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Efeitos de partículas */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

/* Página de Demonstração de Agentes */
.agents-demo-section {
  padding: 4.5rem 0; /* Aumentado para melhor espaçamento em mobile */
}

.agents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem; /* Aumentado para melhor espaçamento em mobile */
}

.agent-card {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 18px; /* Aumentado para melhor visual em mobile */
  padding: 2.2rem; /* Aumentado para melhor espaçamento em mobile */
  border: 1px solid rgba(41, 182, 247, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.agent-card:hover, .agent-card:active {
  transform: translateY(-5px);
  border-color: var(--neon-purple);
  box-shadow: var(--glow-purple);
}

.agent-icon {
  font-size: 2.5rem; /* Aumentado para melhor visual em mobile */
  margin-bottom: 25px; /* Aumentado para melhor espaçamento em mobile */
  color: var(--neon-purple);
}

.agent-title {
  color: var(--neon-blue);
  margin-bottom: 1.2rem; /* Aumentado para melhor espaçamento em mobile */
  font-size: 1.6rem; /* Aumentado para melhor legibilidade em mobile */
}

.agent-description {
  color: var(--text-dim);
  margin-bottom: 1.8rem; /* Aumentado para melhor espaçamento em mobile */
  flex-grow: 1;
  font-size: 1.1rem; /* Aumentado para melhor legibilidade em mobile */
}

.agent-demo-btn {
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  color: var(--text-light);
  padding: 15px 25px; /* Aumentado para área de toque maior */
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: var(--glow-blue);
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: auto;
  font-size: 1.1rem; /* Aumentado para melhor legibilidade em mobile */
}

.agent-demo-btn:hover, .agent-demo-btn:active, .agent-demo-btn:focus {
  transform: translateY(-3px);
  box-shadow: var(--glow-purple);
  color: var(--text-light);
}

.agent-category {
  margin-top: 3.5rem; /* Aumentado para melhor espaçamento em mobile */
  margin-bottom: 2rem; /* Aumentado para melhor espaçamento em mobile */
}

.agent-category-title {
  color: var(--neon-magenta);
  margin-bottom: 1.2rem; /* Aumentado para melhor espaçamento em mobile */
  text-align: center;
  font-size: 1.8rem; /* Aumentado para melhor legibilidade em mobile */
}

.agent-category-description {
  color: var(--text-dim);
  margin-bottom: 2.5rem; /* Aumentado para melhor espaçamento em mobile */
  text-align: center;
  font-size: 1.1rem; /* Aumentado para melhor legibilidade em mobile */
}

/* Estilos para tablets e desktop (apenas quando necessário) - Reduzido para 5% do uso */
@media (min-width: 768px) {
  html {
    font-size: 17px;
  }
  
  .container {
    width: 90%;
  }
  
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  html {
    font-size: 18px;
  }
  
  .container {
    width: 85%;
    max-width: 1200px;
  }
  
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .use-cases-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .agents-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .pricing-table {
    flex-direction: row;
    align-items: stretch;
  }
  
  .pricing-card.featured {
    order: 0;
  }
  
  .hero-content {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
  }
  
  .hero-text {
    text-align: left;
  }
  
  .hero-text h1, .hero-text p {
    text-align: left;
  }
  
  .intro-content, .immersive-content {
    flex-direction: row;
    text-align: left;
  }
  
  .intro-text, .immersive-text {
    text-align: left;
  }
  
  .intro-text p, .immersive-text p {
    text-align: left;
  }
  
  .immersive-content {
    flex-direction: row-reverse;
  }
  
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  /* Navegação para desktop */
  .mobile-menu-btn {
    display: none;
  }
  
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: none;
    clip-path: none;
    padding: 0;
    max-height: none;
    overflow: visible;
  }
  
  .nav-links li {
    margin: 0 1rem;
    width: auto;
  }
  
  .nav-links a {
    padding: 0.5rem;
    font-size: 1rem;
  }
  
  .language-selector {
    margin: 0 0 0 1rem;
    width: auto;
  }
  
  .language-selector select {
    width: auto;
    padding: 5px 10px;
  }
}
