 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
:root {
    --primary: #000000;
    --dark: #000610;
    --light: #9f79a3;
    --text: #00060e;
}
 
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
}
 
 
header {
    background: #f4eff5;
    box-shadow: 0 2px 10px rgba(214, 196, 196, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
 
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}
 
nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
}
 

section {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}
 
h2 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary);
}
 
/* Apresentação */
.hero {
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #640357 100%);
    max-width: 100%;
}
 
.about-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    max-width: 700px;
    margin: 0 auto;
}

.avatar {
    width: 9.5rem; 
    height: 9.5rem; 
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid rgb(0, 0, 0);
    object-fit: cover;
    object-position: center;
}
 
/* Habilidades */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}
 
.skill-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
 
/* Projetos  */
.project-card {
    background: white;
    padding: 2rem;
    border-left: 5px solid var(--primary);
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
 
 

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 2rem 5%;
    }
}
 

#contact {
    background: linear-gradient(135deg, #ffffff 0%, #640357 100%);
    padding: 4rem 5%;
    border-radius: 1rem;
}
 
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 1rem; 
    max-width: 35rem; 
    margin: 2rem auto;
}

 
.custom-contact-card {
    background-color: #1a0f12; 
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-radius: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s;
}
 
.custom-contact-card:hover {
    transform: scale(1.02);
}
 
.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #2d161d;
    border: 2px solid #ff007f;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}
 
.icon-box i {
    color: #ff007f;
    font-size: 1.5rem;
}
 
.contact-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
 
.label {
    color: #ff007f;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    margin-bottom: 0.3rem;
}
 
.detail {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}
 
.arrow {
    color: white;
    font-size: 1.2rem;
}
 
/* Ajuste para telas menores */
@media (max-width: 600px) {
    .detail {
        font-size: 0.9rem; 
    }
}