/* Estilos Globais e Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #1A1A1A; /* Preto Profundo */
    color: #FFFFFF; /* Branco */
    overflow-x: hidden; /* Prevenir scroll horizontal causado por animações */
}

* {
    box-sizing: border-box;
}

a {
    color: #00FFFF; /* Azul Ciano Vibrante */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FF007F; /* Rosa Choque */
}

/* Header e Navegação */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    background-color: rgba(26, 26, 26, 0.8); /* Preto Profundo com transparência */
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav .logo span {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 2em;
    color: #FFFFFF;
    letter-spacing: 1px;
}

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

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

nav ul li a {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1em;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FF007F; /* Rosa Choque */
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden; /* Para conter as formas animadas */
    background: linear-gradient(135deg, #7F00FF, #FF007F, #00FFFF);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

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

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 3.5em; /* Ajustar conforme necessário */
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 1.2em;
    color: #FFFFFF;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 2px 5px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out 0.5s;
    animation-fill-mode: backwards; /* Garante que o elemento não apareça antes da animação */
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFFF00; /* Amarelo Neon */
    color: #1A1A1A; /* Preto Profundo */
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1em;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0px 5px 15px rgba(255, 255, 0, 0.4);
    animation: pulse 2s infinite ease-in-out 1s;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #FFFFFF;
}

/* Animações de Entrada */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0px 5px 15px rgba(255, 255, 0, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0px 8px 25px rgba(255, 255, 0, 0.6); }
    100% { transform: scale(1); box-shadow: 0px 5px 15px rgba(255, 255, 0, 0.4); }
}

/* Formas de Fundo Animadas (Exemplo Simples) */
.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Para ficar atrás do conteúdo */
}

.hero-background-shapes::before, .hero-background-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.hero-background-shapes::before {
    width: 300px;
    height: 300px;
    background-color: #FF007F; /* Rosa Choque */
    top: 10%;
    left: 10%;
    animation-duration: 25s;
}

.hero-background-shapes::after {
    width: 200px;
    height: 200px;
    background-color: #00FFFF; /* Azul Ciano */
    bottom: 15%;
    right: 15%;
    animation-duration: 18s;
    animation-delay: -5s; /* Para não começarem juntas */
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-20px) translateX(15px) rotate(45deg); }
    50% { transform: translateY(10px) translateX(-10px) rotate(90deg); }
    75% { transform: translateY(-15px) translateX(20px) rotate(135deg); }
    100% { transform: translateY(0px) translateX(0px) rotate(180deg); }
}


/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #111;
    color: #aaa;
    font-size: 0.9em;
}

footer p {
    margin: 5px 0;
}

/* Adicionar mais estilos para outras seções conforme necessário */

