:root {
    --neon-blue: #5390d9;
    --neon-pink: #56cfe1;
    --neon-purple: #72efdd;
    --neon-green: #80ffdb;
    --dark-bg: #010101;
    --darker-bg: #0a0a0a;
    --white-bg: #fff;
    --text-color: #eee;

    ---neon-red: #d95353;
    ---neon-rede: #e15656;
    --neon-reded: #ef7272;
    --dark-red: #8b0000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--whitw-bg);
    color: var(--text-color);
    overflow-x: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    z-index: 100;
    background-color: var(---neon-red);
    backdrop-filter: blur(10px);

}

.logo {
    font-size: 1.8rem;
    font-weight: 850;
    font-family:Georgia, 'Times New Roman', Times, serif;
    letter-spacing: 2px;
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
    color: white;
}
.nav-links {
    display: flex;
    gap: 2.3rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--dark-red);
}

.nav-links a ::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    transition: width 0.5s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    padding: 0 5%;
    padding-top: 80px;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 span {
    background: linear-gradient(90deg, var(---neon-red), var(---neon-rede), var(--neon-reded));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--dark-bg);
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(90deg, var(---neon-red), var(---neon-rede));
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3 ease;
    box-shadow: 0 0 15px rgba(255, 30, 0, 0.5);
    position: relative;
    overflow: hidden;
}

#foto {
    height: 80px;
    width: 79px;
    border-radius: 90px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.8);
}

.cta-button ::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover ::before {
    left: 100%;
}

.profile-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.profile-pic {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    object-fit:  cover;
    border: 5px solid transparent;
    box-shadow: 0 0 20px var(--white-bg), 0 0 40px var(--white-bg), 0 0 60px var(--white-bg);
    animation: glow 4s ease-in-out infinite alternate, float 6s ease-in-out infinite;
    z-index: 1;
}

.profile-border {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px dashed var(--neon-green);
    animation: spin 20s linear infinite;
}

.about {
    padding: 5rem 5%;
    background-color: var(--darker-bg);
    position: relative;
}

.about ::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    color: #8b0000;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    border-radius: 3px;
}

/* Project section */
.projects {
    padding: 5rem 5%;
    position: relative;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background-color: var(---neon-red);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid #333;

}

.projects-dir {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.diretoria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.membro {
    width: 140px;
    justify-content: center;
    text-align: center;
    font-size: 1.6rem;
}

.membro p{
    font-size: 0.9rem;
    margin: 0;
}

.membros{
    font-size: 2.5rem;
    margin: 0;
}

.foto {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-diretoria {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-51%);
    color: #8b0000;
}

.project-img{
    background-size: contain;
    height: 200px;
    margin: auto;
}