/* Este arquivo CSS contém estilos personalizados que complementam o Tailwind CSS.
  A maior parte da responsividade (layout, fontes, espaçamentos) é controlada 
  diretamente no arquivo HTML através das classes utilitárias do Tailwind (ex: sm:, md:, lg:).
*/

:root {
    --dot: #1DF9E2;
    --line: #0CDDEC;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0A0A;
    color: #EAEAEA;
    scroll-behavior: smooth;
}

.gradient-text {
    background: linear-gradient(90deg, #00B4FE, #1DF9E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-button {
    background: linear-gradient(90deg, #008bcc, #17c7b5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 139, 204, 0.25), 0 6px 6px rgba(23, 199, 181, 0.25);
}

.card {
    background-color: #1A1A1A;
    border: 1px solid #2a2a2a;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    border-color: #0CDDEC;
    transform: translateY(-4px);
}

.icon-gradient-1 {
    color: #0CDDEC;
}

.icon-gradient-2 {
    color: #1DF9E2;
}

/* Neural Field Animation Styles */
main {
    position: relative;
    overflow: hidden; /* Garante que a animação não vaze */
}

.neural-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(1200px 800px at 10% 10%, #142031 0%, #0d1522 45%, #0A0A0A 100%);
}

.neural-wrap canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(29, 249, 226, .25));
}

main > section {
    position: relative;
    z-index: 1;
}
