<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset bÃ¡sico */
* {
    margin: 0;
    padding: 0;
    padding: -1px 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Estilo do corpo da pÃ¡gina */
body {
    background: linear-gradient(45deg, #ffffff, #ff0000, #ffffff);
    background-size: 450% 400%;
    animation: gradientAnimation 10s ease infinite;
    color: #000000;
    line-height: 1.6;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* CabeÃ§alho da seÃ§Ã£o hero */
.hero-header {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    padding: 10px 20px;
}

.nav-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    background-color: #6e00ff;
    color: #fff;
    border-radius: 5px;
}

/* SeÃ§Ã£o de HerÃ³i */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    max-width: 600px;
    color: #fff;
}

.hero h1 {
    font-size: 3em;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.2em;
    margin: 20px 0;
    color: #000000;
}

.cta-button {
    text-decoration: none;
    background-color: #6e00ff;
    color: #fff;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #00ffea;
}

.hero-image {
    max-width: 500px;
}

.hero-image img {
    width: 110%;
}

/* SeÃ§Ã£o de Recursos */
.features {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.feature-item {
    background-color: #1e1d32;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 30%;
    transition: transform 0.3s;
}

.feature-item h2 {
    color: #6e00ff;
    margin-bottom: 10px;
}

.feature-item p {
    color: #bbb;
}

.feature-item:hover {
    transform: scale(1.05);
}

/* RodapÃ© */
footer {
    background-color: #1e1d32;
    text-align: center;
    padding: 20px 0;
    color: #777;
    margin-top: 50px;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3; /* Coloca o canvas no fundo, atrÃ¡s de outros elementos */
}








</pre></body></html>