/* Variáveis CSS para o tema espacial/futurista */
:root {
    /* Tema escuro (padrão) */
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --text-primary: #f0f0f0;
    --text-secondary: #b0b0b0;
    --accent-color: #00ff41; /* Verde neon */
    --accent-hover: #00cc33;
    --card-bg: #121212;
    --card-border: #1e1e1e;
    --nav-bg: rgba(10, 10, 10, 0.95);
    --shadow: 0 4px 6px rgba(0, 255, 65, 0.1);
    --separator: #1e1e1e;
    --star-color: rgba(255, 255, 255, 0.5);
}

/* Tema claro (opcional) */
.light-mode {
    --bg-primary: #f0f0f0;
    --bg-secondary: #e0e0e0;
    --text-primary: #121212;
    --text-secondary: #333333;
    --accent-color: #00cc33; /* Verde mais escuro para tema claro */
    --accent-hover: #00aa22;
    --card-bg: #ffffff;
    --card-border: #cccccc;
    --nav-bg: rgba(240, 240, 240, 0.95);
    --shadow: 0 4px 6px rgba(0, 204, 51, 0.2);
    --separator: #cccccc;
    --star-color: rgba(0, 0, 0, 0.1);
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('imagens/seta-mouse.png') 12 12, auto;
}

/* Notificações */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: linear-gradient(135deg, #00ff41, #00cc33);
    border-left: 4px solid #00ff41;
}

.notification.error {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    border-left: 4px solid #ff4444;
}

.notification.loading {
    background: linear-gradient(135deg, #0099ff, #0066cc);
    border-left: 4px solid #0099ff;
}

/* Cursor de mãozinha verde para elementos clicáveis */
a, button, .btn, [role="button"], input[type="submit"], input[type="button"], .clickable {
    cursor: url('imagens/mao-mouse.png') 12 12, auto !important;
}

/* Ícone de telefone fixo no canto inferior direito */
.phone-icon-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    color: var(--bg-primary);
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.phone-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 255, 65, 0.5);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--bg-primary);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 255, 65, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 255, 65, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 255, 65, 0.3);
    }
}

/* Chat do WhatsApp no canto */
.whatsapp-modal {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 2000;
    width: 350px;
    max-width: calc(100vw - 40px);
}

.whatsapp-modal-content {
    position: relative;
    background: var(--bg-secondary);
    padding: 0;
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.3);
    animation: chatSlideUp 0.3s ease-out;
}

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

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .whatsapp-modal {
        bottom: 80px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
    }
    
    .whatsapp-modal-content {
        border-radius: 10px;
    }
    
    .whatsapp-modal-header {
        padding: 15px;
        border-radius: 8px 8px 0 0;
    }
    
    .whatsapp-modal-body {
        padding: 20px 15px;
    }
}

.whatsapp-modal-header {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--bg-primary);
    padding: 20px;
    border-radius: 13px 13px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-modal {
    background: none;
    border: none;
    color: var(--bg-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-modal-body {
    padding: 30px 20px;
    text-align: center;
}

.whatsapp-modal-body p {
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.whatsapp-chat-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--bg-primary);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.3);
}

.whatsapp-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 65, 0.5);
}

/* Botão de voltar ao topo */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    width: auto;
}

.back-to-top-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    color: var(--accent-color);
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: url('imagens/mao-mouse.png') 12 12, auto !important;
}

.back-to-top-btn:hover {
    background: var(--accent-color);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 65, 0.4);
}

.back-to-top-btn.show {
    display: flex !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'VT323', 'Courier New', monospace;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
    position: relative;
    overflow-x: hidden;
}

/* Efeito de estrelas no fundo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(var(--star-color) 1px, transparent 1px),
        radial-gradient(var(--star-color) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    z-index: -1;
    opacity: 0.3;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.3s, text-shadow 0.3s;
}

a:hover {
    color: var(--accent-hover);
    text-shadow: 0 0 8px var(--accent-color);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho e Navegação */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--accent-color);
    box-shadow: 0 0 15px var(--accent-color);
    transition: background-color 0.3s, box-shadow 0.3s;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
    letter-spacing: 1px;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--accent-color));
    transition: all 0.3s ease;
    display: block;
    vertical-align: middle;
}

.logo-img2 {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--accent-color));
    transition: all 0.3s ease;
    display: block;
    vertical-align: middle;
}

.logo-img:hover {
    filter: drop-shadow(0 0 15px var(--accent-color));
    transform: scale(1.05);
}

.logo-img2:hover {
    filter: drop-shadow(0 0 15px var(--accent-color));
    transform: scale(1.05);
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-right: 20px;
}

.nav-links a {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

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

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

/* Dropdown menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--card-bg);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.3);
    min-width: 200px;
    padding: 10px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background-color: var(--bg-secondary);
    color: var(--accent-color);
    text-shadow: 0 0 8px var(--accent-color);
    transform: translateX(5px);
}

.dropdown-menu a::after {
    display: none;
}

/* Submenu aninhado */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.dropdown-submenu .dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown-submenu:hover .dropdown-toggle i {
    transform: translateX(3px);
}

.dropdown-submenu-content {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: var(--card-bg);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.3);
    min-width: 180px;
    padding: 10px 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.dropdown-submenu:hover .dropdown-submenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu-content a {
    display: block;
    padding: 10px 15px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dropdown-submenu-content a:hover {
    background-color: var(--bg-secondary);
    color: var(--accent-color);
    text-shadow: 0 0 8px var(--accent-color);
    transform: translateX(3px);
}

.theme-toggle {
    cursor: pointer;
    font-size: 1.32rem; /* Aumentado em 10% de 1.2rem */
    color: var(--accent-color);
    background: transparent;
    border: none;
    outline: none;
    transition: color 0.3s, text-shadow 0.3s;
}

/* Controles de navegação (idioma e tema) */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Seletor de idiomas */
.language-selector {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 1.32rem;
    color: var(--accent-color);
    background: transparent;
    border: none;
    outline: none;
    transition: color 0.3s, text-shadow 0.3s;
    padding: 5px;
}

.language-toggle:hover {
    color: var(--accent-hover);
    text-shadow: 0 0 8px var(--accent-color);
}

.current-lang {
    font-size: 0.99rem;
    font-weight: bold;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--card-bg);
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    box-shadow: 0 0 10px var(--accent-color);
    width: 150px;
    padding: 10px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown li {
    padding: 8px 15px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-size: 0.99rem;
}

.language-dropdown li:hover {
    background-color: var(--bg-secondary);
    color: var(--accent-color);
}

.language-dropdown li.active {
    color: var(--accent-color);
    background-color: var(--bg-secondary);
}

.theme-toggle:hover {
    color: var(--accent-hover);
    text-shadow: 0 0 8px var(--accent-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    box-shadow: 0 0 5px var(--accent-color);
    transition: transform 0.3s, opacity 0.3s;
}

/* Animação do menu hamburger quando ativo */
.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Seção Hero */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    box-shadow: 0 0 10px var(--accent-color);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.hero h2 {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 500;
}

.highlight {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
    position: relative;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 0 10px var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--accent-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--accent-color);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s, text-shadow 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-5px);
    text-shadow: 0 0 10px var(--accent-color);
}

/* Seções comuns */
section {
    padding: 100px 0;
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    box-shadow: 0 0 10px var(--accent-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

/* Seção Sobre */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.developer-profile {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.profile-image {
    flex: 0 0 250px;
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--accent-color);
    box-shadow: 0 0 20px var(--accent-color);
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.profile-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--accent-color);
    filter: brightness(1.2) contrast(1.2);
}

.profile-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), transparent, var(--accent-color));
    z-index: -1;
    opacity: 0.3;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.profile-info {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.developer-quote {
    background: linear-gradient(135deg, var(--bg-secondary), rgba(0, 255, 65, 0.1));
    border-left: 4px solid var(--accent-color);
    padding: 25px 30px;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 5px 15px rgba(0, 255, 65, 0.2);
    position: relative;
    overflow: hidden;
}

.developer-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 65, 0.05), transparent);
    z-index: 0;
}

.developer-quote blockquote {
    position: relative;
    z-index: 1;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
}

.developer-quote blockquote p {
    position: relative;
    margin: 0;
}

.developer-quote blockquote p::before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    left: -30px;
    top: -20px;
    color: var(--accent-color);
    opacity: 0.6;
    font-family: serif;
}

.developer-quote blockquote p::after {
    content: '\201D';
    font-size: 4rem;
    position: absolute;
    right: -30px;
    bottom: -40px;
    color: var(--accent-color);
    opacity: 0.6;
    font-family: serif;
}

.skills {
    margin-top: 20px;
}

.skills h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
    text-align: center;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.skill-tag {
    background-color: var(--bg-secondary);
    color: var(--accent-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 5px var(--accent-color);
    transition: all 0.3s;
}

.skill-tag:hover {
    background-color: var(--accent-color);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 0 10px var(--accent-color);
}

/* Seção Projetos */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--accent-color);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px var(--accent-color);
}

.project-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-secondary);
}

.project-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
}

.project-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.5;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.project-links {
    display: flex;
    gap: 15px;
}

/* Seção Contato */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
}

.contact-social h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
}

.contact-form {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--text-secondary);
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--card-border);
    border-radius: 5px;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    font-family: 'VT323', 'Courier New', monospace;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

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

/* Rodapé */
footer {
    background-color: var(--bg-secondary);
    padding: 50px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info p {
    margin-top: 15px;
    color: var(--text-secondary);
    max-width: 400px;
    font-size: 1rem;
}

.footer-links h3, .footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s, transform 0.3s, text-shadow 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    text-shadow: 0 0 5px var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--separator);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Efeito de citação */
.quote {
    position: relative;
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    color: var(--text-secondary);
}

.quote::before, .quote::after {
    content: '"';
    font-size: 3rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
    position: absolute;
    opacity: 0.5;
}

.quote::before {
    top: -20px;
    left: -20px;
}

.quote::after {
    bottom: -40px;
    right: -20px;
}

/* Media Queries para Responsividade */
@media (max-width: 992px) {
    .developer-profile {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .profile-image {
        flex: 0 0 200px;
        margin: 0 auto;
    }

    .profile-image img {
        height: 200px;
    }

    .developer-quote blockquote p::before,
    .developer-quote blockquote p::after {
        font-size: 3rem;
    }

    .developer-quote blockquote p::before {
        left: -20px;
        top: -15px;
    }

    .developer-quote blockquote p::after {
        right: -20px;
        bottom: -30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-social h3 {
        text-align: center;
    }

    .contact-info {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-info .logo-img2 {
        margin: 0 auto;
        display: block;
    }

    .footer-info p {
        margin: 15px auto;
    }

    .footer-links ul {
        align-items: center;
    }
}

/* Garantir que o menu seja visível em telas maiores */
@media (min-width: 769px) {
    .nav-links {
        position: static !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        background-color: transparent !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        transition: none !important;
        margin-right: 20px !important;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--nav-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s;
        margin-right: 0;
    }

    .nav-links.active {
        left: 0;
    }
    
    /* Dropdown responsivo */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin-top: 10px;
    }
    
    .dropdown-menu a {
        padding: 10px 0;
        text-align: center;
    }
    
    .dropdown-toggle i {
        display: none;
    }
    
    /* Submenu responsivo */
    .dropdown-submenu-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin-left: 20px;
    }
    
    .dropdown-submenu-content a {
        padding: 8px 0;
        text-align: center;
        font-size: 0.9rem;
    }

    .menu-toggle {
        display: flex;
        margin-right: 20px;
    }
    
    .nav-controls {
        display: flex;
        align-items: center;
        gap: 15px;
    }

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

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

    .hero h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .profile-image {
        flex: 0 0 180px;
    }

    .profile-image img {
        height: 180px;
    }

    .developer-quote {
        padding: 20px 25px;
        margin: 0 10px;
    }

    .developer-quote blockquote {
        font-size: 1.1rem;
    }

    .developer-quote blockquote p::before,
    .developer-quote blockquote p::after {
        font-size: 2.5rem;
    }

    .developer-quote blockquote p::before {
        left: -15px;
        top: -10px;
    }

    .developer-quote blockquote p::after {
        right: -15px;
        bottom: -25px;
    }

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

    .hero h2 {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
        left: auto;
        transform: none;
        display: block;
        margin: 0 auto 30px auto;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Animações */
@keyframes glow {
    0% {
        text-shadow: 0 0 5px var(--accent-color);
    }
    50% {
        text-shadow: 0 0 20px var(--accent-color), 0 0 30px var(--accent-color);
    }
    100% {
        text-shadow: 0 0 5px var(--accent-color);
    }
}

.logo, .highlight, .section-title {
    animation: glow 2s infinite;
}

/* Efeito de revelação ao rolar */
.revealed {
    animation: reveal 0.8s ease forwards;
}

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

/* Notificações */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.notification.success {
    border-left-color: #28a745;
}

.notification.error {
    border-left-color: #dc3545;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 12px;
}

.notification-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification.success .notification-content i {
    color: #28a745;
}

.notification.error .notification-content i {
    color: #dc3545;
}

.notification-content span {
    flex: 1;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.notification-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}