:root {
    --primary-color: #0A1128;
    --white-color: #FFFFFF;
    --light-gray-color: #EEEEEE;
    --gap: 3rem;
    --black-color: #000000;
    --gray-color: #1F1F1F;
    --purple-color: #7843e9;
    --gray-weak-color: rgb(102, 102, 102);
    --skill-color: rgba(255, 255, 255, 0.2);
    --whitesmoke-color: #fafafa;
    --project-background-color: rgb(245 245 245);
}

/* Scrollbar personalizada para todo o site */
::-webkit-scrollbar {
    width: 1.2rem;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.8);
    border-radius: 1rem;
    border: 1px solid rgba(120, 67, 233, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7843e9, #43e97b);
    border-radius: 1rem;
    border: 2px solid rgba(10, 10, 10, 0.8);
    box-shadow: 
        0 0 10px rgba(120, 67, 233, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #8a4fff, #4fffa3);
    box-shadow: 
        0 0 20px rgba(120, 67, 233, 0.8),
        0 0 10px rgba(67, 233, 123, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #9c4fff, #5fffa3);
    box-shadow: 
        0 0 30px rgba(120, 67, 233, 1),
        0 0 15px rgba(67, 233, 123, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Scrollbar para Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #7843e9 rgba(10, 10, 10, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-size: 2rem;
    font-family: 'Source Sans Pro', sans-serif;
    background-color: var(--white-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Source Sans Pro', sans-serif;
}

h2 {
    letter-spacing: 0.2rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.main-content {
    max-width: 120rem;
    margin: 0 auto;
    padding: var(--gap);
}

/* Acessibilidade */
.error-message {
    color: #d32f2f;
    font-size: 1.4rem;
    margin-top: 0.5rem;
    display: block;
}

/* Foco visível para acessibilidade */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--purple-color);
    outline-offset: 2px;
}

/* Remove outline dos links do menu */
.menu a:focus {
    outline: none;
}

.menu {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom: 1px solid rgba(120, 67, 233, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.menu h1 {
    font-weight: 900;
    letter-spacing: 0.1rem;
    font-size: 2.3rem;
    background: linear-gradient(45deg, #7843e9, #43e97b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.menu h1 a {
    color: inherit;
    font-weight: inherit;
}

.menu-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.section {
    min-height: 100vh;
}

.menu ul {
    list-style: none;
    display: flex;
}

.menu ul li a {
    display: block;
    padding: 2rem;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
}

.menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 1rem;
    left: 50%;
    width: 0;
    height: 0.3rem;
    background: linear-gradient(90deg, #7843e9, #43e97b);
    transition: all 300ms ease-in-out;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(120, 67, 233, 0.5);
}

.menu ul li a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(120, 67, 233, 0.5);
}

.menu ul li a:hover::after {
    width: 50%;
    left: 25%;
}

.menu-spacing {
    height: 6.5rem;
}

.start {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.start::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 67, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(67, 233, 120, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(233, 67, 120, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.start-content {
    position: relative;
    z-index: 1;
}

.start-text-content {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
}

.start-text-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    background: linear-gradient(45deg, #7843e9, #43e97b, #e943a7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    font-weight: 800;
    margin-bottom: 2rem;
}

.start-text-content p {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    letter-spacing: 0.01rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.about {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0a0a0a 100%);
    color: var(--white-color);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(120, 67, 233, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(67, 233, 120, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about-title-content {
    text-align: center;
    padding: 0 0 6rem;
    max-width: 70rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-title-content h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 0.4rem;
    background: linear-gradient(90deg, #7843e9, #43e97b);
    border-radius: 2rem;
    box-shadow: 0 0 20px rgba(120, 67, 233, 0.6);
}

.about-title-content h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    text-transform: uppercase;
    background: linear-gradient(45deg, #7843e9, #43e97b, #e943a7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: 0.2rem;
    position: relative;
}

.about-title-content p {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-top: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    max-width: 120rem;
    margin: 0 auto;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-formation-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 3rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.about-formation-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.4rem;
    background: linear-gradient(90deg, #7843e9, #43e97b, #e943a7);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.about-formation-content:hover {
    transform: translateY(-1rem);
    box-shadow: 
        0 2rem 6rem rgba(120, 67, 233, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(120, 67, 233, 0.4);
}

.about-formation-content h3 {
    margin-bottom: 2rem;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    background: linear-gradient(45deg, #7843e9, #43e97b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    font-weight: 700;
}

.about-formation-content p {
    letter-spacing: 0.01rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1.6rem;
}

.about-formation-content ul {
    list-style: none;
    padding-left: 0;
    max-height: 65rem;
    overflow-y: auto;
    overflow-x: hidden;
    display: grid;
    gap: 2rem;
}

/* Scrollbar moderno para a lista de formação */
.about-formation-content ul::-webkit-scrollbar {
    width: 0.8rem;
}

.about-formation-content ul::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
}

.about-formation-content ul::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #7843e9, #43e97b);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.about-formation-content ul::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #8a4fff, #4fffa3);
    box-shadow: 0 0 10px rgba(120, 67, 233, 0.5);
}

.about-formation-content ul li {
    margin-bottom: 0;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(120, 67, 233, 0.2);
    border-radius: 1.5rem;
    font-size: 1.4rem;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.about-formation-content ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #7843e9, #43e97b);
}

.about-formation-content ul li:hover {
    background: rgba(120, 67, 233, 0.05);
    border-color: rgba(120, 67, 233, 0.3);
    transform: scale(1.02);
}

.about-formation-content ul li strong {
    color: #fff;
    font-size: 1.8rem;
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    background: linear-gradient(45deg, #7843e9, #43e97b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.about-formation-content ul li br + strong {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    background: none;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    font-weight: 500;
}

/* Estilo dos links de certificado */
.about-formation-content ul li a {
    color: #43e97b;
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    padding: 0.8rem 1.6rem;
    background: rgba(67, 233, 123, 0.1);
    border: 1px solid rgba(67, 233, 123, 0.3);
    border-radius: 2rem;
    backdrop-filter: blur(5px);
}

.about-formation-content ul li a::before {
    content: "🎓";
    margin-right: 0.8rem;
    font-size: 1.4rem;
}

.about-formation-content ul li a:hover {
    color: #fff;
    background: rgba(67, 233, 123, 0.2);
    border-color: rgba(67, 233, 123, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 233, 123, 0.3);
}

.about-skills-content {
    padding: 2rem;
}

.about-skills-content h3 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 3rem;
}


.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding: 2rem 0;
}

.skills-skill {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(120, 67, 233, 0.3);
    border-radius: 2rem;
    color: #7843e9;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1.2rem 2.4rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: fit-content;
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.skills-skill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 67, 233, 0.2), transparent);
    transition: left 0.6s ease;
}

.skills-skill:hover::before {
    left: 100%;
}

.skills-skill:hover {
    background: rgba(120, 67, 233, 0.1);
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(120, 67, 233, 0.6);
    box-shadow: 
        0 10px 30px rgba(120, 67, 233, 0.3),
        0 0 20px rgba(120, 67, 233, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Projetos */
.projects {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--white-color);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 67, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(67, 233, 120, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(233, 67, 120, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.project-title-content {
    text-align: center;
    padding: 0 0 6rem;
    max-width: 70rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.project-title-content h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    text-transform: uppercase;
    background: linear-gradient(45deg, #7843e9, #43e97b, #e943a7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: 0.2rem;
    position: relative;
}

.project-title-content h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 0.4rem;
    background: linear-gradient(90deg, #7843e9, #43e97b);
    border-radius: 2rem;
    box-shadow: 0 0 20px rgba(120, 67, 233, 0.6);
}

.project-title-content p {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-top: 2rem;
}

.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    margin-bottom: 5rem;
    align-items: center;
    padding: 3rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.project-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.3rem;
    background: linear-gradient(90deg, #7843e9, #43e97b, #e943a7);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.project-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 2rem 6rem rgba(120, 67, 233, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(120, 67, 233, 0.4);
}

.project-text-content h3 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(120, 67, 233, 0.3);
}

.project-text-content p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.6rem;
}

.project-img-content {
    margin-top: 2rem;
}

.project-img-content img {
    width: 100%;
    border-radius: 1.2rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(120, 67, 233, 0.2);
    transition: all 0.3s ease;
}

.project-img-content img:hover {
    transform: scale(1.05);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(120, 67, 233, 0.4);
}

.project-icon-content {
    text-align: center;
}

.project-icon-content h4 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(120, 67, 233, 0.3);
}

.tech-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tech-icons img {
    width: 6rem;
    height: 6rem;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-icons img:hover {
    transform: scale(1.2) translateY(-5px);
    background: rgba(120, 67, 233, 0.1);
    border-color: rgba(120, 67, 233, 0.3);
    box-shadow: 0 10px 25px rgba(120, 67, 233, 0.3);
}

.project-background {
    background: rgba(255, 255, 255, 0.02);
}

.project-margin {
    margin-top: 5rem;
}

.project-padding-bottom {
    padding-bottom: 5rem;
}

/* Seção de Experiência */
.experience {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--white-color);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 67, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(67, 233, 120, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(233, 67, 120, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.experience-title-content {
    text-align: center;
    padding: 0 0 6rem;
    max-width: 70rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.experience-title-content h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    text-transform: uppercase;
    background: linear-gradient(45deg, #7843e9, #43e97b, #e943a7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: 0.2rem;
    position: relative;
}

.experience-title-content h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 0.4rem;
    background: linear-gradient(90deg, #7843e9, #43e97b);
    border-radius: 2rem;
    box-shadow: 0 0 20px rgba(120, 67, 233, 0.6);
}

.experience-title-content p {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-top: 2rem;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.experience-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 3rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.4rem;
    background: linear-gradient(90deg, #7843e9, #43e97b, #e943a7);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.experience-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(120, 67, 233, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    animation: rotate 4s linear infinite;
}

.experience-card:hover {
    transform: translateY(-1rem) scale(1.02);
    box-shadow: 
        0 2rem 6rem rgba(120, 67, 233, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(120, 67, 233, 0.4);
}

.experience-card:hover::after {
    opacity: 1;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.experience-header {
    margin-bottom: 2rem;
}

.experience-company {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.experience-company h3 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(120, 67, 233, 0.3);
}

.experience-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.experience-duration {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.experience-type {
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.experience-type.remote {
    background: linear-gradient(45deg, #43e97b, #38d9a9);
    color: #000;
    box-shadow: 0 0 15px rgba(67, 233, 123, 0.4);
}

.experience-type.presencial {
    background: linear-gradient(45deg, #7843e9, #9c88ff);
    color: #fff;
    box-shadow: 0 0 15px rgba(120, 67, 233, 0.4);
}

.experience-role {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
    border-left: 4px solid #7843e9;
}

.experience-role h4 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    color: #7843e9;
    margin-bottom: 1rem;
    font-weight: 600;
}

.experience-period {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.experience-dates {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.experience-status {
    padding: 0.4rem 1rem;
    background: rgba(120, 67, 233, 0.2);
    border: 1px solid rgba(120, 67, 233, 0.4);
    border-radius: 1rem;
    font-size: 1.2rem;
    color: #fff;
}

.experience-status.current {
    background: linear-gradient(45deg, #43e97b, #38d9a9);
    color: #000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(67, 233, 123, 0.4); }
    50% { box-shadow: 0 0 20px rgba(67, 233, 123, 0.8); }
}

.experience-employment,
.experience-location {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.experience-description {
    margin-bottom: 3rem;
}

.experience-description ul {
    list-style: none;
    padding: 0;
}

.experience-description li {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 0;
}

.experience-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-tag {
    padding: 0.8rem 1.6rem;
    background: rgba(120, 67, 233, 0.1);
    border: 1px solid rgba(120, 67, 233, 0.3);
    border-radius: 2rem;
    font-size: 1.3rem;
    color: #7843e9;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.skill-tag:hover {
    background: rgba(120, 67, 233, 0.2);
    border-color: rgba(120, 67, 233, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(120, 67, 233, 0.2);
}

/* Contato */
.contact {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--white-color);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 67, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(67, 233, 120, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(233, 67, 120, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-title-content {
    text-align: center;
    padding: 0 0 6rem;
    max-width: 70rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-title-content h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    text-transform: uppercase;
    background: linear-gradient(45deg, #7843e9, #43e97b, #e943a7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: 0.2rem;
    position: relative;
}

.contact-title-content h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 0.4rem;
    background: linear-gradient(90deg, #7843e9, #43e97b);
    border-radius: 2rem;
    box-shadow: 0 0 20px rgba(120, 67, 233, 0.6);
}

.contact-title-content p {
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-top: 2rem;
}

.contact-content {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 2rem;
    box-shadow: 
        0 2rem 6rem rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.3rem;
    background: linear-gradient(90deg, #7843e9, #43e97b, #e943a7);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.contact-form-field {
    margin-bottom: 3rem;
}

.contact-form-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.contact-form-input {
    color: #fff;
    padding: 2rem;
    width: 100%;
    border: 1px solid rgba(120, 67, 233, 0.3);
    font-size: 1.6rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form-input:focus {
    border-color: #7843e9;
    background: rgba(120, 67, 233, 0.1);
    box-shadow: 
        0 0 0 3px rgba(120, 67, 233, 0.2),
        0 0 20px rgba(120, 67, 233, 0.3);
    outline: none;
}

.contact-form-input:invalid {
    border-color: #e94374;
    box-shadow: 0 0 0 3px rgba(233, 67, 116, 0.2);
}

.btn-contact {
    padding: 2rem 4rem;
    font-size: 1.6rem;
    background: linear-gradient(45deg, #7843e9, #43e97b);
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-weight: 700;
    border-radius: 1.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    margin: 3rem auto 0;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    min-width: 20rem;
    box-shadow: 
        0 10px 30px rgba(120, 67, 233, 0.4),
        0 0 20px rgba(120, 67, 233, 0.2);
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-contact:hover::before {
    left: 100%;
}

.btn-contact:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(120, 67, 233, 0.5),
        0 0 30px rgba(120, 67, 233, 0.4);
    background: linear-gradient(45deg, #8a4fff, #4fffa3);
}

.btn-contact:active {
    transform: translateY(-1px) scale(1.02);
}

/* Footer */
.credits {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a2e 100%);
    color: var(--white-color);
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.credits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(120, 67, 233, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(67, 233, 120, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.credits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 var(--gap);
    align-items: start;
    position: relative;
    z-index: 1;
}

.credits-text-content {
    max-width: 50rem;
}

.credits-text-content h2 {
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: clamp(2rem, 3vw, 2.8rem);
    background: linear-gradient(45deg, #7843e9, #43e97b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    font-weight: 700;
}

.credits-text-content p {
    line-height: 1.6;
    font-size: clamp(1.4rem, 1.8vw, 1.6rem);
    color: rgba(255, 255, 255, 0.8);
}

.credits-social-content {
    text-align: center;
}

.credits-social-content h3 {
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    color: #fff;
    font-weight: 600;
}

.credits-icon {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.credits-icon a {
    transition: all 0.3s ease;
    display: block;
    padding: 1rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.credits-icon a:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(120, 67, 233, 0.1);
    border-color: rgba(120, 67, 233, 0.3);
    box-shadow: 
        0 10px 25px rgba(120, 67, 233, 0.3),
        0 0 20px rgba(120, 67, 233, 0.2);
}

.credits-icon img {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
    border-radius: 0.5rem;
}

.credits-copy {
    border-top: 0.1rem solid rgba(255, 255, 255, 0.2);
    margin: 3rem var(--gap) 0;
    padding-top: 3rem;
    position: relative;
    z-index: 1;
}

.credits-copy p {
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    text-align: center;
    letter-spacing: 0.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.credits-copy a {
    color: #7843e9;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.credits-copy a:hover {
    color: #43e97b;
    text-shadow: 0 0 10px rgba(67, 233, 123, 0.5);
}

/* Botão voltar ao topo */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(120, 67, 233, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(120, 67, 233, 0.3);
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #7843e9;
    transform: rotate(-90deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(120, 67, 233, 0.2);
}

.back-to-top:hover {
    background: rgba(120, 67, 233, 0.9);
    color: var(--white-color);
    border-color: #7843e9;
    transform: rotate(-90deg) scale(1.1) translateY(-2px);
    box-shadow: 
        0 10px 30px rgba(120, 67, 233, 0.4),
        0 0 20px rgba(120, 67, 233, 0.3);
}

/* Menu mobile */
/* Estilos temporários para corrigir o menu mobile */

/* Menu mobile */
.close-menu {
    display: none;
}

.close-menu-label {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1001;
    cursor: pointer;
    display: none;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(120, 67, 233, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(120, 67, 233, 0.2);
}

.close-menu-label:hover {
    border-color: rgba(120, 67, 233, 0.6);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(120, 67, 233, 0.4);
    transform: translateY(-2px);
}

/* Ícone hamburger moderno */
.close-menu-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.4rem;
    height: 2px;
    background: linear-gradient(90deg, #7843e9, #43e97b);
    border-radius: 1px;
    transition: all 0.3s ease;
    box-shadow: 
        0 -0.8rem 0 0 #7843e9,
        0 0.8rem 0 0 #43e97b;
}

/* Transformação do ícone quando aberto */
.close-menu:checked ~ .close-menu-label::before {
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 
        0 0 0 0 #7843e9,
        0 0 0 0 #43e97b;
}

.close-menu:checked ~ .close-menu-label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 2.4rem;
    height: 2px;
    background: linear-gradient(90deg, #7843e9, #43e97b);
    border-radius: 1px;
}

/* Media Queries */
@media (max-width: 480px) {
    .close-menu-label {
        display: block;
    }

    .menu-spacing {
        display: none;
    }

    .menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        border: none;
    }

    .menu-content {
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 3rem;
        text-align: center;
        background: rgba(10, 10, 10, 0.8);
        backdrop-filter: blur(25px);
        border: 1px solid rgba(120, 67, 233, 0.2);
        border-radius: 2rem;
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(120, 67, 233, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transform: scale(0.8);
        transition: all 0.4s ease;
        max-width: 90vw;
        width: 100%;
    }

    .menu h1 {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }

    .menu-content ul {
        flex-direction: column;
        gap: 0.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .menu ul li a {
        display: block;
        padding: 1.8rem 2rem;
        font-size: 1.8rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(120, 67, 233, 0.2);
        border-radius: 1.2rem;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.1rem;
        position: relative;
        overflow: hidden;
        transform: translateX(-50px);
        opacity: 0;
        animation: slideInLeft 0.5s ease forwards;
    }

    .menu ul li:nth-child(1) a { animation-delay: 0.1s; }
    .menu ul li:nth-child(2) a { animation-delay: 0.2s; }
    .menu ul li:nth-child(3) a { animation-delay: 0.3s; }
    .menu ul li:nth-child(4) a { animation-delay: 0.4s; }
    .menu ul li:nth-child(5) a { animation-delay: 0.5s; }

    @keyframes slideInLeft {
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .menu ul li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(120, 67, 233, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .menu ul li a:hover {
        color: #fff;
        background: rgba(120, 67, 233, 0.1);
        border-color: rgba(120, 67, 233, 0.5);
        transform: translateY(-2px);
        box-shadow: 
            0 10px 30px rgba(120, 67, 233, 0.3),
            0 0 20px rgba(120, 67, 233, 0.2);
    }

    .menu ul li a:hover::before {
        left: 100%;
    }

    .menu ul li a::after {
        display: none;
    }

    /* Menu aberto */
    .close-menu:checked ~ .menu {
        opacity: 1;
        visibility: visible;
    }

    .close-menu:checked ~ .menu .menu-content {
        transform: scale(1);
    }
}

/* Tablets e telas intermediárias */
@media (min-width: 481px) and (max-width: 768px) {
    .close-menu-label {
        display: block;
    }

    .menu ul {
        display: none;
    }

    .menu-spacing {
        display: none;
    }

    .menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        border: none;
    }

    .menu-content {
        flex-direction: column;
        padding: 4rem 3rem;
        gap: 3rem;
        text-align: center;
        background: rgba(10, 10, 10, 0.8);
        backdrop-filter: blur(25px);
        border: 1px solid rgba(120, 67, 233, 0.2);
        border-radius: 2rem;
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(120, 67, 233, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transform: scale(0.8);
        transition: all 0.4s ease;
        max-width: 80vw;
        width: 100%;
    }

    .menu h1 {
        font-size: 3.2rem;
        margin-bottom: 2rem;
    }

    .menu-content ul {
        flex-direction: column;
        gap: 1rem;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .menu ul li a {
        display: block;
        padding: 2rem 2.5rem;
        font-size: 2rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(120, 67, 233, 0.2);
        border-radius: 1.2rem;
        margin-bottom: 1.2rem;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.1rem;
        position: relative;
        overflow: hidden;
        transform: translateX(-50px);
        opacity: 0;
        animation: slideInLeft 0.5s ease forwards;
    }

    .menu ul li:nth-child(1) a { animation-delay: 0.1s; }
    .menu ul li:nth-child(2) a { animation-delay: 0.2s; }
    .menu ul li:nth-child(3) a { animation-delay: 0.3s; }
    .menu ul li:nth-child(4) a { animation-delay: 0.4s; }
    .menu ul li:nth-child(5) a { animation-delay: 0.5s; }

    .menu ul li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(120, 67, 233, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .menu ul li a:hover {
        color: #fff;
        background: rgba(120, 67, 233, 0.1);
        border-color: rgba(120, 67, 233, 0.5);
        transform: translateY(-2px);
        box-shadow: 
            0 10px 30px rgba(120, 67, 233, 0.3),
            0 0 20px rgba(120, 67, 233, 0.2);
    }

    .menu ul li a:hover::before {
        left: 100%;
    }

    .menu ul li a::after {
        display: none;
    }

    /* Menu aberto */
    .close-menu:checked ~ .menu {
        opacity: 1;
        visibility: visible;
    }

    .close-menu:checked ~ .menu .menu-content {
        transform: scale(1);
    }
}

/* About section mobile */
@media (max-width: 480px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-formation-content,
    .about-skills-content {
        width: 100%;
        max-width: none;
    }

    .about-formation-content {
        margin-bottom: 2rem;
    }

    .about-formation-content ul {
        max-height: 50rem;
    }

    .about-formation-content ul li {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-formation-content ul li strong {
        font-size: 1.6rem;
    }

    .about-skills-content {
        padding: 2.5rem;
    }

    .about-skills-content h3 {
        font-size: 2.4rem;
        margin-bottom: 2.5rem;
    }

    .skills {
        gap: 1.2rem;
    }

    .skills-skill {
        padding: 1rem 2rem;
        font-size: 1.3rem;
        min-width: auto;
        flex: 0 1 auto;
    }

    /* Projetos responsivos mobile */
    .project-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        margin-bottom: 3rem;
    }

    .project-icon-content {
        order: -1;
        margin-bottom: 2rem;
    }

    .tech-icons {
        gap: 1rem;
    }

    .tech-icons img {
        width: 4rem;
        height: 4rem;
    }

    /* Experience responsiva mobile */
    .experience-content {
        gap: 3rem;
    }

    .experience-card {
        padding: 2rem;
    }

    .experience-company {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .experience-meta {
        gap: 1rem;
    }

    .experience-role {
        padding: 1.5rem;
    }

    .experience-period {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .experience-description li {
        font-size: 1.4rem;
    }

    .skill-tag {
        font-size: 1.2rem;
        padding: 0.6rem 1.2rem;
    }

    /* Contato responsivo mobile */
    .contact-form-content {
        padding: 2.5rem;
    }

    .btn-contact {
        padding: 1.5rem 3rem;
        font-size: 1.5rem;
        min-width: 18rem;
    }

    /* Footer responsivo mobile */
    .credits-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1rem;
    }

    /* About section tablet */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-formation-content,
    .about-skills-content {
        width: 100%;
        max-width: none;
        padding: 2.5rem;
    }

    .about-formation-content ul {
        max-height: 45rem;
    }

    .about-formation-content ul li {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .skills {
        gap: 1.5rem;
    }

    .skills-skill {
        padding: 1.2rem 2.4rem;
        font-size: 1.4rem;
    }

    /* Projetos responsivos tablet */
    .project-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
        margin-bottom: 3rem;
    }

    .project-icon-content {
        order: -1;
        margin-bottom: 2rem;
    }

    .tech-icons img {
        width: 5rem;
        height: 5rem;
    }

    /* Experience responsiva tablet */
    .experience-content {
        gap: 3rem;
    }

    .experience-card {
        padding: 2.5rem;
    }

    .experience-company {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    /* Contato responsivo tablet */
    .contact-form-content {
        padding: 3rem;
    }

    /* Footer responsivo tablet */
    .credits-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 2rem;
    }
}
