/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --bg-color: #ffffff;
    --accent-color: #3b82f6;
    --gray-light: #f3f4f6;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #13141f 0%, #1a1b26 100%);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Header e Navegação */
.header {
    position: fixed;
    width: 100%;
    background: linear-gradient(135deg, #13141f 0%, #1a1b26 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo .dev-text {
    background: linear-gradient(90deg, #ff0000, #00ff00, #0000ff, #ff0000);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rgb-animation 5s linear infinite;
}

.logo .name-text {
    background: linear-gradient(90deg, #ff0000, #00ff00, #0000ff, #ff0000);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rgb-animation 5s linear infinite;
    animation-delay: 0.5s;
}

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

.logo:hover {
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(37, 99, 235, 0.8);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.5rem;
}

.menu-btn:hover {
    color: var(--accent-color);
}

/* Botão CTA global */
.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://media1.giphy.com/media/v1.Y2lkPTc5MGI3NjExcDhvNHFkeDVkdjJvYTlvb2hobWFpNnc0cDFqczJyOHRmcGEyb3Y5MSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/OLPQ6z2hlHmwFc4Hso/giphy.gif') center/cover no-repeat fixed;
    padding: 0 1rem;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 1s ease-out;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero h1, .hero p {
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, #ff007f, #7fff00, #00ffff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: textGlow 3s infinite alternate;
}

.hero h1::after, .hero p::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero h1:hover::after, .hero p:hover::after {
    opacity: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

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

@keyframes textGlow {
    0% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 255, 255, 0.3);
    }
    100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.6);
    }
}

/* Atualização do botão CTA para combinar com o novo visual */
.hero .cta-btn {
    background: rgba(59, 130, 246, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.hero .cta-btn:hover {
    background: rgba(59, 130, 246, 1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Seções */
section {
    background: linear-gradient(135deg, #13141f 0%, #1a1b26 100%);
    padding: 5rem 1rem;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* Sobre */
.sobre {
    background: linear-gradient(135deg, #13141f 0%, #1a1b26 100%);
    color: #fff;
    padding: 6rem 1rem;
}

.sobre-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.sobre-header {
    text-align: center;
    margin-bottom: 4rem;
}

.sobre-header h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sobre-subtitle {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 500;
}

.sobre-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.profile-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-image:hover img {
    transform: scale(1.1);
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

.profile-info {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.location {
    color: #a0aec0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: center;
}

.stat {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #a0aec0;
}

.sobre-text-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-block {
    margin-bottom: 2rem;
    opacity: 0.7;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.text-block.active {
    opacity: 1;
    transform: translateY(0);
}

.text-block h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.text-block h3 i {
    transition: transform 0.3s ease;
}

.text-block h3:hover i {
    transform: rotate(20deg);
}

.text-block p {
    color: #e4e4e4;
    line-height: 1.8;
    font-size: 1rem;
}

.skill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
}

.skill-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.skill-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.skill-item span {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.skill-level {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.skill-level::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--accent-color);
    width: var(--level);
    transition: width 1s ease;
}

.skill-item[data-skill="Java"] .skill-level::before { --level: 90%; }
.skill-item[data-skill="Python"] .skill-level::before { --level: 85%; }
.skill-item[data-skill="HTML"] .skill-level::before { --level: 95%; }
.skill-item[data-skill="CSS"] .skill-level::before { --level: 90%; }
.skill-item[data-skill="JavaScript"] .skill-level::before { --level: 85%; }
.skill-item[data-skill="L2J"] .skill-level::before { --level: 95%; }
.skill-item[data-skill="MySQL"] .skill-level::before { --level: 88%; }
.skill-item[data-skill="OOP"] .skill-level::before { --level: 92%; }
.skill-item[data-skill="Git"] .skill-level::before { --level: 85%; }

@media (max-width: 1024px) {
    .sobre-content {
        grid-template-columns: 1fr;
    }

    .profile-card {
        max-width: 400px;
        margin: 0 auto 2rem;
    }

    .projetos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .nav-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        margin-bottom: 1rem;
    }

    .projetos-grid {
        grid-template-columns: 1fr;
    }

    .projeto-card {
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3rem 1rem;
    }

    .education {
        margin-top: 2rem;
    }

    .skill-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 1rem;
    }

    .skill-item i {
        font-size: 2rem;
    }

    .skill-item span {
        font-size: 0.8rem;
    }

    .projeto-img {
        height: 200px;
    }

    .projeto-card h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .projeto-card h4 {
        font-size: 1rem;
    }

    .projetos-grid {
        grid-template-columns: 1fr;
    }
}

/* Projetos */
.projetos {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 1rem;
}

.projeto-categoria {
    margin-bottom: 4rem;
}

.projeto-categoria h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.l2-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.l2-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.projeto-card {
    background: #1a1b26;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.projeto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.projeto-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.projeto-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(19, 20, 31, 0) 0%, rgba(19, 20, 31, 0.2) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.projeto-img:hover::before {
    background: linear-gradient(180deg, rgba(19, 20, 31, 0.2) 0%, rgba(19, 20, 31, 0.4) 100%);
}

.projeto-img:hover {
    transform: scale(1.05);
}

.projeto-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.75rem;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

.projeto-card h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.projeto-card h4 a:hover {
    color: var(--accent-color);
}

.projeto-card p {
    padding: 0 1.5rem;
    color: #a0aec0;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.tech-stack {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tech-stack span {
    background: rgba(59, 130, 246, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #60a5fa;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.tech-stack span:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

/* Cores específicas para o card do L2 GALACTIC */
.projeto-card.galactic {
    background: #13141f;
    border: 1px solid rgba(96, 165, 250, 0.1);
}

.galactic .tech-stack span {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.2);
}

.galactic .tech-stack span:hover {
    background: rgba(96, 165, 250, 0.2);
}

.galactic-img {
    background-image: url('assets/l2-galactic-login.jpg');
}

.projeto-logo {
    max-width: 80%;
    height: auto;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

.projeto-card.galactic:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(96, 165, 250, 0.15);
    border-color: rgba(96, 165, 250, 0.3);
}

/* Contato */
.contato {
    background: var(--bg-color);
}

.contato-content {
    max-width: 600px;
    margin: 0 auto;
}

#contato-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contato-form input,
#contato-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

#contato-form textarea {
    min-height: 150px;
    resize: vertical;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    font-size: 2rem;
    color: #ffffff;
    transition: transform 0.3s, color 0.3s;
    background: linear-gradient(90deg, #ff0000, #00ff00, #0000ff, #ff0000);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rgb-animation 5s linear infinite;
}

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

.social-icon:hover {
    transform: scale(1.2);
    color: #f39c12;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #13141f 0%, #1a1b26 100%);
    color: white;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(90deg, #ff0000, #00ff00, #0000ff, #ff0000);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rgb-animation 5s linear infinite;
}

/* Utilitários */
.mt-4 {
    margin-top: 1.5rem;
}

/* Sobre Section Atualizações */
.sobre-text {
    line-height: 1.8;
    color: #e4e4e4;
    font-size: 1.1rem;
    text-align: justify;
}

.sobre-text p {
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.sobre-text p:hover {
    opacity: 1;
}

.education {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.education-item {
    margin-top: 1rem;
}

.education-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.education-status {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Projetos Atualizações */
.web-img {
    background-image: url('assets/portfolio.jpg');
    background-color: #2563eb;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.projeto-card p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Skills Grid */
.skill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.skill-item i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.skill-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Cores específicas para ícones não-colored */
.skill-item .fa-gamepad {
    color: #ff6b6b;
}

.skill-item .fa-code {
    color: #4c6ef5;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3rem 1rem;
    }

    .education {
        margin-top: 2rem;
    }

    .skill-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 1rem;
    }

    .skill-item i {
        font-size: 2rem;
    }

    .skill-item span {
        font-size: 0.8rem;
    }

    .projetos-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .projeto-img {
        height: 200px;
    }

    .projeto-card h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .projetos-grid {
        grid-template-columns: 1fr;
    }
}

.l2j-img {
    background-image: url('assets/l2jnbr.jpg');
    background-color: #1a1a2e;
}

/* Modal de Imagem */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.modal-close {
    position: fixed;
    right: 25px;
    top: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.modal-close:hover {
    color: #fff;
}

/* Cursor pointer na imagem do projeto */
.galactic-img {
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8) translateY(-50%);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(-50%);
        opacity: 1;
    }
}

.modal-content {
    animation: zoomIn 0.3s ease-out;
}

.visit-site-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    margin: 0 1.5rem 1.5rem;
    transition: all 0.3s ease;
}

.visit-site-btn i {
    font-size: 1rem;
}

.visit-site-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.profile-name {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.profile-name .dev-text {
    background: linear-gradient(90deg, #ff0000, #00ff00, #0000ff, #ff0000);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rgb-animation 5s linear infinite;
}

.profile-name .name-text {
    background: linear-gradient(90deg, #ff0000, #00ff00, #0000ff, #ff0000);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rgb-animation 5s linear infinite;
    animation-delay: 0.5s;
}

.portal-pecas-img {
    background-image: url('assets/tr-pegasus.jpg');
}

.portal-pecas-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(19, 20, 31, 0) 0%, rgba(19, 20, 31, 0.2) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.portal-pecas-img:hover::before {
    background: linear-gradient(180deg, rgba(19, 20, 31, 0.2) 0%, rgba(19, 20, 31, 0.4) 100%);
}

.project-label {
    width: 70px;
    height: auto;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.project-image-container {
    position: relative;
}
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('assets/codando1.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0); /* mais claro */
    z-index: 2;
}


.hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.project-image-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: highlight 1.5s infinite alternate;
}

@keyframes highlight {
    0% {
        transform: scale(1);
        color: #ffcc00;
    }
    100% {
        transform: scale(1.1);
        color: #ff9900;
    }
}

.dynamic-subtitle {
    background-image: url('https://cdn.jsdelivr.net/gh/devicons/devicon/icons/java/java-original.svg');
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 500px;
    display: block;
    text-align: center;
    margin: 0 auto;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 10px 20px;
    width: fit-content;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background-color: white;
}

.dynamic-subtitle.java {
    background-image: url('https://cdn.jsdelivr.net/gh/devicons/devicon/icons/java/java-original.svg');
}

.dynamic-subtitle.swing {
    background-image: url('https://cdn.jsdelivr.net/gh/devicons/devicon/icons/swing/swing-original.svg');
}

.dynamic-subtitle.web {
    background-image: url('https://cdn.jsdelivr.net/gh/devicons/devicon/icons/html5/html5-original.svg');
}

.dynamic-subtitle.lineage2 {
    background-image: none;
    padding-left: 0;
    text-align: center;
    margin: 0 auto;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 10px 20px;
    width: fit-content;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background-color: white;
    content: 'Projeto gamer - Java OO';
}

.project-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 300px; /* Adjust this value as needed */
}

.botao-inovador {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff, #ff0000);
    background-size: 600% 600%;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: gradientShift 3s ease infinite;
}

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

.botao-inovador:hover {
    transform: scale(1.1);
    color: gold;
} 