/* Estilos Globais - Profissão Inteligente */

:root {
  --primary-bg: #0d0d0d;
  --secondary-bg: #050505;
  --primary-accent: #00fff2;
  --secondary-accent: #00ff88;
  --alert-color: #ff4e4e;
  --text-color: #ffffff;
  --text-secondary: #cccccc;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--primary-bg);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  line-height: 1.3;
}

p {
  margin-bottom: 15px;
}

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

ul, ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

div[style*="overflow: hidden"] img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

div[style*="overflow: hidden"]:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 255, 242, 0.3);
}

.problem-list li i {
  color: #ff4e4e !important;
}


.my-cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(145deg, #00fff2, #00cfcf);
  color: #0a0a0a;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 255, 242, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.imagine-section .container {
  position: relative;
  overflow: hidden;
}


.my-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 255, 242, 0.3);
}

.card {
  display: flex;
  background: #0a0a0a;
  border: 1px solid rgba(0, 255, 242, 0.3);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 255, 242, 0.1);
  overflow: hidden;
  max-width: 100%;
  margin: 40px auto;
}

.card-image {
  width: 50%;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 20px;
  color: #fff;
  flex: 1;
}

.card-content h2 {
  color: #00fff2;
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(0,255,242,0.5);
}

.card-content p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 12px;
  line-height: 1.5;
}

.btn-saiba {
  background: #00fff2;
  color: #000;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0,255,242,0.5);
}

@media (max-width: 768px) {
  .card {
    flex-direction: column;
  }

  .card-image {
    width: 100%;
    height: auto;
  }
}


/* Partículas Flutuantes (Neons) */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 255, 242, 0.15);
  width: 6px;
  height: 6px;
  box-shadow: 0 0 12px rgba(0, 255, 242, 0.4);
  animation: floatUp 10s infinite ease-in-out alternate;
}

.particle.green {
  background: rgba(0, 255, 136, 0.15);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
}

@keyframes floatUp {
  0% { transform: translateY(0) translateX(0); opacity: 0.3; }
  50% { transform: translateY(-20px) translateX(10px) scale(1.2); opacity: 0.7; }
  100% { transform: translateY(0) translateX(0); opacity: 0.3; }
}

/* Animações */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Efeito de Digitação */
.typing-effect {
  display: inline-block;
  color: var(--primary-accent);
  font-weight: 600;
  min-height: 30px;
  font-size: 1.5rem;
  text-align: center;
  margin: 30px 0;
  width: 100%;
}

.typing-effect .txt {
  border-right: 2px solid var(--primary-accent);
  padding-right: 5px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: var(--primary-accent); }
}

/* Títulos de Seção */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 15px;
}

.section-title h2 span {
  color: var(--primary-accent);
  text-shadow: 0 0 15px rgba(0, 255, 242, 0.5);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.my-cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(145deg, #00fff2, #00cfcf);
  color: #0a0a0a;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 255, 242, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.my-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 255, 242, 0.3);
}


/* Botões e CTAs */
.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
  color: #000;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 242, 0.3);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 255, 242, 0.5);
}

.cta-button.large {
  font-size: 1.3rem;
  padding: 18px 36px;
}

.cta-button-container {
  text-align: center;
  margin: 40px 0;
}

/* Destaques e Boxes */
.highlight-box {
  background: rgba(0, 255, 242, 0.08);
  border-left: 4px solid var(--primary-accent);
  border-radius: 10px;
  padding: 25px;
  margin: 30px 0;
}

.highlight-box.light {
  background: rgba(255, 255, 255, 0.05);
}

.alert-box {
  background: rgba(255, 78, 78, 0.05);
  border-left: 4px solid var(--alert-color);
  border-radius: 10px;
  padding: 25px;
  margin: 30px 0;
}

.quote-box {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-color);
  text-align: center;
  padding: 20px;
  margin: 30px 0;
  border-top: 1px solid rgba(0, 255, 242, 0.3);
  border-bottom: 1px solid rgba(0, 255, 242, 0.3);
}

.stats-box {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 25px;
  margin: 30px 0;
}

/* Textos Destacados */
.highlight {
  color: var(--primary-accent);
  font-weight: 600;
}

.highlight-green {
  color: var(--secondary-accent);
  font-weight: 600;
}

.alert-text {
  color: var(--alert-color);
  font-weight: 600;
}

.highlight-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-accent);
  margin: 20px 0;
  text-align: center;
}

/* Footer */
.footer {
  background: var(--secondary-bg);
  padding: 60px 0 30px;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--primary-accent);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-accent);
  color: #000;
  transform: translateY(-3px);
}

.footer-copyright {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsividade */
@media (max-width: 1200px) {
  .container {
    max-width: 992px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 768px;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 576px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .cta-button {
    width: 100%;
    padding: 12px 20px;
  }
  
  .cta-button.large {
    font-size: 1.1rem;
    padding: 15px 25px;
  }
}
.titulo-ia {
  font-size: 2.3rem;
  text-align: center;
  color: #ff3c3c;
  text-shadow: 0 0 10px #ff3c3c88;
  animation: piscar 1.5s infinite;
  font-family: 'Inter', sans-serif;
  margin: 60px auto 20px;
  max-width: 90%;
}

.titulo-ia .destaque {
  color: #00bfff;
  text-shadow: 0 0 15px #00bfff99;
}

/* Animação para piscar */
@keyframes piscar {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
