html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
    background: #FFF6CB;
}

img {
    max-width: 100%;
    display: block;
}

header {
    background: linear-gradient(135deg, #2893C8, #1d7fb1);
    margin: 0;
    padding: 0;
    width: 100%;
    border: none;
}

header h2 {
    color: #0f2a3a;
    text-align: center;
    padding: 16px 0 0;
    margin: 0;
    font-weight: 600;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    cursor: default;
}

.nome {
    max-width: 1450px;
    margin: 0 auto;
    padding: 24px 16px 16px;
    cursor: default;
}

.foto {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.foto-perfil {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-left: 0;
}

header h3 {
    margin: 8px 0 0;
    color: #ffffff;
    font-weight: 500;
    cursor: default;
}

.foto h1 {
    font-weight: 700;
    letter-spacing: 0.2px;
    margin: 8px;
    justify-content: left;
    color: #ffffff;
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
}

header section {
    background-color: #00A1F1;
    padding: 16px;
    margin: 16px auto;
    border-radius: 12px;
    max-width: 1450px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contato-header {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.redes-sociais-header {
    color: #ffffff;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contato-header li,
.redes-sociais-header li {
    margin: 0;
    padding: 0;
}

hr {
    border: 0;
    height: 1px;
    background: rgb(255, 255, 255);
    margin: 16px 0;
}

header hr,
footer hr {
    background: rgba(255, 255, 255, 0.25);
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
}

nav ul li a {
    border: 2px solid transparent;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #ffffff;
    font-weight: 500;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    text-decoration: none;
}

header a:hover,
header a:focus-visible,
footer a:hover,
footer a:focus-visible {
    background-color: #1a1a1a;
    border: 2px solid #ffffff;
    border-radius: 5px;
    outline: 2px solid transparent;
}


main {
    margin: 0;
    background-color: #FFF6CB;
    padding: 24px 16px;
}

main>div {
    max-width: 1100px;
    margin: 0 auto 20px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

main h2 {
    margin: 0 0 10px;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: #0f2a3a;
    cursor: default;
}

.sobre-mim p {
    margin: 0;
    color: #000000;
    cursor: default;
}

main .sobre-mim {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform .15s ease, box-shadow .15s ease;
    cursor: default;
}

main .sobre-mim:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.experiencia {
    cursor: default;
}

main .experiencia {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform .15s ease, box-shadow .15s ease;
    cursor: default;
}

main .experiencia:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.formacao {
    cursor: default;
}

main .formacao {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform .15s ease, box-shadow .15s ease;
    cursor: default;
}

main .formacao:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.skils {
    cursor: default;
}

main .sikls {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform .15s ease, box-shadow .15s ease;
    cursor: default;
}

main .skils:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.skill {
    text-align: center;
    background: #FFF6CB;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

main .skill {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform .15s ease, box-shadow .15s ease;
    cursor: default;
}

main .skill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

main .nivel-habilidades {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform .15s ease, box-shadow .15s ease;
    cursor: default;
}

main .nivel-habilidades h2 {
    text-align: center;
}

main .nivel-habilidades:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.circle {
    --size: 100px;
    --percent: 0;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: conic-gradient(#2893C8 calc(var(--percent) * 1%), #ddd 0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
    transition: background 1s ease-out;
}

.circle::after {
    content: attr(data-label);
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #2893C8;
    font-size: 1rem;
}


footer {
    background-color: #00A1F1;
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
    padding-bottom: 20px;
}

footer h2 {
    color: #0f2a3a;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    margin: 0;
    letter-spacing: 0.3px;
    cursor: default;
}

footer ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 16px;
    margin: 10px 0 20px;
    flex-wrap: wrap;
    justify-content: center;
}
