* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a2e;
    color: white;
}


.cabecalho {
    background-color: #16213e;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #00d4ff;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.menu a:hover {
    color: #00d4ff;
}

.btn-resume {
    background-color: #4ade80;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

.btn-resume:hover {
    background-color: #22c55e;
}


.elementos {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 50px;
    background: linear-gradient(to right, #1a1a2e, #16213e);
}

.conteudo {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    align-items: center;
}


.texto {
    flex: 1;
}

.texto h3 {
    font-size: 48px;
    color: #fbbf24;
    margin-bottom: 10px;
}

.texto h1 {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 20px;
}

.profissao {
    font-size: 20px;
    color: #4ade80;
    margin-bottom: 15px;
    font-weight: bold;
}

.descricao {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-contrate {
    background-color: #4ade80;
    color: black;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
}

.btn-contrate:hover {
    background-color: #22c55e;
}

.foto {
    flex: 1;
    display: flex;
    justify-content: center;
    object-position: top;
}

.circulo-foto {
    width: 350px;
    height: 350px;
    background-color: #030115;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circulo-foto img {
    width: 100%;
    height: 100%;
    border-radius: 20%;
    object-fit: contain;
}
