/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #9ca3af;
    --secondary-color: #6b7280;
    --text-color: #e5e7eb;
    --light-bg: #1f2937;
    --border-color: #374151;
    --white: #111827;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

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

/* Header */
.header {
    background-color: #050505;
    color: var(--text-color);
    padding: 40px 0;
    box-shadow: var(--shadow-lg);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px; /* Duplicado de 60px para 120px */
    height: 120px; /* Duplicado de 60px para 120px */
    background-color: transparent;
    border-radius: 12px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter:
        drop-shadow(1px 0 0 #2a2a2a)
	drop-shadow(-1px 0 0 #2a2a2a)
	drop-shadow(0 1px 0 #2a2a2a)
	drop-shadow(0 -1px 0  #2a2a2a);
}

.logo:hover {
    transform: scale(1.15);
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Navbar */
.navbar {
    background-color: #080808;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

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

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0;
}

.nav-menu li {
    flex: 1;
}

.nav-link {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: #d1d5db;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: #101010;
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

/* Seção Sobre */
.about-section {
    padding: 80px 0;
    background-color: #000000;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #e5e7eb;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #d1d5db;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-item {
    background-color: #050505;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
    border: 2px solid #010550;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.highlight-item p {
    font-size: 0.95rem;
    color: #9ca3af;
    margin: 0;
}

/* Seção de Projetos */
.projects-section {
    padding: 80px 0;
}

.projects-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
    color: #e5e7eb;
}

.section-subtitle {
    text-align: center;
    color: #9ca3af;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: #050505;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid #010550;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    width: 100%;
    height: 200px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-image {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
}

.project-card h3 {
    padding: 20px 20px 10px;
    color: #e5e7eb;
    font-size: 1.3rem;
}

.project-card p {
    padding: 0 20px 20px;
    color: #9ca3af;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: #080808;
    color: #d1d5db;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

.footer p {
    margin: 0;
    font-size: 0.95rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .title {
        font-size: 1.8rem;
    }

    .nav-menu {
        flex-wrap: wrap;
    }

    .nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .about-section,
    .projects-section {
        padding: 50px 0;
    }

    .about-section h2,
    .projects-section h2 {
        font-size: 1.5rem;
    }

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

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
    }

    .header {
        padding: 30px 0;
    }

    .logo {
        width: 100px; /* Ajuste leve para mobile */
        height: 100px;
    }
}

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

    .nav-menu {
        flex-direction: column;
    }

    .nav-link {
        text-align: left;
        padding: 12px 15px;
    }

    .about-content p {
        font-size: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}
