 body {
     background-color: #05050a;
     color: #ffffff;
     overflow-x: hidden;
 }

 /* Scrollbar Customizada */
 ::-webkit-scrollbar {
     width: 8px;
 }

 #hero-texto {
     min-height: 200px;
     /* Reduzi altura mínima para mobile */
 }

 @media (min-width: 768px) {
     #hero-texto {
         min-height: 288px;
     }
 }

 ::-webkit-scrollbar-track {
     background: #0a0a12;
 }

 ::-webkit-scrollbar-thumb {
     background: #00f3ff;
     border-radius: 4px;
 }

 /* Efeitos de Glow e Vidro */
 .glass-panel {
     background: rgba(255, 255, 255, 0.03);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(0, 243, 255, 0.1);
     box-shadow: 0 0 20px rgba(0, 243, 255, 0.05);
 }

 .neon-border {
     position: relative;
 }

 .neon-border::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 100%;
     height: 2px;
     background: linear-gradient(90deg, transparent, #00f3ff, transparent);
     box-shadow: 0 0 10px #00f3ff;
 }

 .cyber-btn {
     background: transparent;
     border: 1px solid #00f3ff;
     color: #00f3ff;
     text-transform: uppercase;
     letter-spacing: 2px;
     position: relative;
     overflow: hidden;
     transition: 0.3s;
     clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
 }

 .cyber-btn:hover {
     background: #00f3ff;
     color: #000;
     box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
 }

 .cyber-btn-purple {
     border: 1px solid #bc13fe;
     color: #bc13fe;
 }

 .cyber-btn-purple:hover {
     background: #bc13fe;
     color: #fff;
     box-shadow: 0 0 30px rgba(188, 19, 254, 0.6);
 }

 /* Canvas Background */
 #neural-canvas {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
     opacity: 0.4;
 }

 /* Glitch Effect on Text Hover */
 .glitch-hover:hover {
     animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
     color: #00f3ff;
 }

 .section-title {
     background: -webkit-linear-gradient(45deg, #00f3ff, #bc13fe);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .card-hoverable {
     transition: transform 0.3s ease, border-color 0.3s ease;
 }

 .card-hoverable:hover {
     transform: translateY(-10px);
     border-color: #bc13fe;
 }

 /* Cursor Effect */
 @keyframes blink {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0;
     }
 }

 .cursor-blink::after {
     animation: blink 1s step-end infinite;
 }

 .typing-cursor::after {
     content: '│';
     color: #bc13fe;
     margin-left: 2px;
 }

 /* Ajuste para quebra de texto suave no mobile */
 @media (max-width: 640px) {
     .typing-cursor {
         white-space: normal !important;
         word-break: break-word;
     }
 } 
