 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
:root {
    --bg: #FDF3E9;
    --primary: #CE5F6D;
    --secondary: #F7C0C1;
    --neutral: #C9C2A8;
    --text: #3a2e2e;
}
  
body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    position: relative;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}
  
.menu {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 15px 0;
    z-index: 10;
    background: var(--neutral); 
}

.menu ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
}

.menu a {
    color: var(--text);
    font-weight: 500;
    position: relative;
}

/* underline animado */
.menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

.menu a:hover::after {
    width: 100%;
}
 
/* PERFIL */
.perfil {
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;

    margin-top: 70px;
    padding: 40px 20px;

    position: relative;
    z-index: 1;
}

/* BLOCO FOTO */
.eu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* FOTO */
.perfil img {
    width: 290px;
    height: 380px;  
    transition: 0.3s;
}

.perfil img:hover {
    transform: scale(1.03);
}

/* REDES */
.redes {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.redes li {
    list-style: none;
}

.redes a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--secondary);
    border-radius: 50%;
    color: var(--primary);

    transition: 0.3s;
}

.redes a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}
 
.descricao {
    max-width: 500px;
}

.descricao h1 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.cargo {
    font-weight: 500;
    color: var(--text);
    margin-bottom: 10px;
}
 
.info {
    list-style: none;
    margin-bottom: 15px;
}

.info li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--text);
}
.info li a:hover { 
    color: var(--primary);
}

.info i {
    color: var(--primary);
}
 
.descricao h2 {
    margin-top: 20px;
    font-size: 1.4rem;
    color: var(--primary);
}

.descricao p {
    line-height: 1.6;
}

.descricao h2 {
    margin-top: 20px;
    font-size: 1.4rem;
    color: var(--primary);
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .perfil {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 15px;
    }

    /* imagem menor */
    .perfil img {
        width: 200px;
        height: 260px;
    }

    /* centraliza redes */
    .redes {
        justify-content: center;
    }

    /* descrição ocupa tudo */
    .descricao {
        max-width: 100%;
    }

    .descricao h1 {
        font-size: 1.8rem;
    }

    .descricao h2 {
        font-size: 1.2rem;
    }

    /* info centralizada */
    .info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .info li {
        justify-content: center;
        text-align: center;
    }

}
.section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;

    border: 1px solid var(--neutral);

    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.card h3 {
    margin-bottom: 5px;
}

.card span {
    font-size: 0.9rem;
    color: var(--neutral);
}

footer {
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    background: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--bg);
}

footer ul.info{
    display: flex;
    gap: 10px; 
    margin-bottom: 0px;
}
footer ul.info li{ 
    color: var(--bg);
}
.copy{
    font-size: 12px; 
    margin-top: 15px
}
.copy a{
    text-decoration: underline;
}