*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}

:root{
    --bg-color: #10101a;
    --main-color: #2fbf71;
    --2nd-main-color: #ffffffcc;
    --text-color:#fff;
    --big-font: 5rem;
    --h2-font: 1.9rem;
    --p-font: 1rem;
}

body{
    background: var(--bg-color);
    color:var(--text-color);
}
header{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(16, 16, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 0 5%;
    height: 80px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.logo{
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--main-color);
    transition: all 0.3s ease;
}

.logo span {
    color: var(--main-color);
}

.logo:hover {
    transform: translateY(-2px);
}
span{
    color: var(--main-color);
}
span2{
    color: #fff000;
}
span3{
    color: #000fff;
}
span4{
    color: #993399
}

.navbar{
    display: flex;
    align-items: center;
}
.navbar ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.navbar a {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}
.navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: all 0.3s ease;
}
.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}
.navbar a:hover,
.navbar a.active {
    color: var(--main-color);
}
#menu-icon{
    font-size: 32px;
    z-index: 10001;
    cursor: pointer;
    display: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

#menu-icon:hover {
    color: var(--main-color);
}

#menu-icon.bx-x {
    color: var(--main-color);
    transform: rotate(180deg);
}

section{
    padding: 100px 14%;
    position: relative;
    scroll-margin-top: 80px;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(47, 191, 113, 0.05), rgba(47, 191, 113, 0.02));
    z-index: -1;
}

.home {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 6rem;
    align-items: center;
    padding: 120px 14% 80px;
    background: linear-gradient(45deg, rgba(47, 191, 113, 0.05), rgba(47, 191, 113, 0.02));
}
.home-img img{
    max-width: 100%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--main-color);
    box-shadow: 0 0 20px rgba(47, 191, 113, 0.2);
    transition: all 0.3s ease;
}
.home-img img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(47, 191, 113, 0.3);
}
.home-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 600px;
    margin-top: 2rem;
}
.home-text h5{
    color: var(--main-color);
    font-size: 25px;
    font-weight: 500;
    margin: 0 0 20px;
    letter-spacing: 2px;
}
.home-text h1{
    font-size: var(--big-font);
    color: var(--text-color);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: 1px;
}
.home-text h6{
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 1px;
}
.home-text p{
    max-width: 470px;
    font-size: var(--p-font);
    font-weight: 300;
    line-height: 2rem;
    margin-bottom: 1.5rem;
    color: var(--2nd-main-color);
}
.home-text .btn {
    margin-top: 2.5rem;
    align-self: flex-start;
    width: auto;
    min-width: 220px;
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 0 30px;
    line-height: 45px;
    box-shadow: 4px 4px var(--text-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.home-text .btn:hover {
    background: var(--text-color);
    color: var(--main-color);
    box-shadow: 4px 4px var(--main-color);
    transform: translateY(-2px);
}

.about {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    align-items: center;
    padding: 4rem 14%;
    background: linear-gradient(45deg, rgba(47, 191, 113, 0.05), rgba(47, 191, 113, 0.02));
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    color: var(--text-color);
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 6px;
    margin: 0 0 30px;
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--main-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--2nd-main-color);
    font-size: 1.1rem;
}

.about-text p:last-of-type {
    margin-bottom: 2.5rem;
}

.about-skills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.skill-item {
    background: #0b0b13;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(47, 191, 113, 0.1);
}

.skill-item:hover {
    transform: translateY(-5px);
    border-color: var(--main-color);
    box-shadow: 0 10px 20px rgba(47, 191, 113, 0.1);
}

.skill-item i {
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.skill-item h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.skill-item p {
    color: var(--2nd-main-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.main-btn {
    text-align: center;
    margin-top: 2rem;
}

.center {
    text-align: center;
    margin-bottom: 4rem;
}

.center h3 {
    color: var(--text-color);
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.center h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--main-color);
}

.center i {
    color: var(--main-color);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: block;
}

.services .services-content,
.resume .services-content,
.certifications .services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.services .row,
.resume .row,
.certifications .row {
    background: #0b0b13;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.services .row:hover,
.resume .row:hover,
.certifications .row:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(47, 191, 113, 0.2);
}

.services .row i,
.resume .row i,
.certifications .row i {
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
}

.services .row h3,
.resume .row h3,
.certifications .row h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.services .row p,
.resume .row p,
.certifications .row p {
    font-size: 0.9rem;
    color: var(--2nd-main-color);
    line-height: 1.6;
    margin: 0;
}

.resume .row h5,
.certifications .row h5 {
    font-size: 0.9rem;
    color: var(--main-color);
    margin-top: 1rem;
    font-weight: 500;
}

.contact {
    background: #0b0b13;
    width: 100%;
    padding: 100px 0;
    text-align: center;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(47, 191, 113, 0.05), rgba(47, 191, 113, 0.02));
    z-index: 0;
}

.contact h4 {
    color: var(--text-color);
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.contact h2 {
    color: var(--main-color);
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.contact-btn {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-icons a {
    color: #ffffff;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--main-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding: 30px;
    color: var(--2nd-main-color);
    background: #0b0b13;
    margin-top: 3rem;
    line-height: 1.8rem;
    border-top: 1px solid rgba(47, 191, 113, 0.1);
}

.copyright a {
    color: var(--main-color);
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: #fff;
}

@media (max-width: 1430px) {
    section {
        padding: 80px 4%;
    }
    
    .home {
        grid-gap: 4rem;
        padding: 100px 4% 60px;
    }
    
    .home-text h1 {
        font-size: 4rem;
    }
    
    .home-img img {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 1200px) {
    section {
        padding: 70px 3%;
    }
    
    .home {
        grid-gap: 3rem;
        padding: 90px 3% 50px;
    }
    
    .home-text h1 {
        font-size: 3.5rem;
    }
    
    .home-img img {
        width: 320px;
        height: 320px;
    }
    
    .about-text h3 {
        font-size: 28px;
    }
    
    .about-text p {
        font-size: 1rem;
    }
}

@media (max-width: 1020px) {
    section {
        padding: 60px 3%;
    }
    
    .home {
        grid-template-columns: 1fr;
        text-align: center;
        grid-gap: 2rem;
        padding: 80px 3% 40px;
    }
    
    .home-text {
        align-items: center;
        margin: 0 auto;
    }
    
    .home-text .btn {
        margin: 2rem auto 0;
    }
    
    .home-img {
        order: -1;
    }
    
    .home-img img {
        width: 300px;
        height: 300px;
    }
    
    .about {
        padding: 3rem 3%;
    }
    
    .about-text h3 {
        font-size: 26px;
    }
    
    .experience-card {
        padding: 2.5rem;
    }
    
    .company-logo {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 830px) {
    header {
        padding: 0 3%;
        height: 70px;
        background: rgba(16, 16, 26, 0.95);
    }
    
    .logo {
        font-size: 1.4rem;
        margin-right: auto;
    }
    
    #menu-icon {
        display: block;
        font-size: 28px;
        margin-left: 1rem;
        cursor: pointer;
        z-index: 10001;
    }
    
    .navbar {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(16, 16, 26, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: 0.4s ease;
        padding: 1rem 0;
        overflow-y: auto;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
    }
    
    .navbar a {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 1rem;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(47, 191, 113, 0.1);
        transition: all 0.3s ease;
    }
    
    .navbar a::after {
        display: none;
    }
    
    .navbar a:hover,
    .navbar a.active {
        background: rgba(47, 191, 113, 0.1);
        padding-left: 2.5rem;
        border-left: 3px solid var(--main-color);
        border-bottom: 1px solid rgba(47, 191, 113, 0.2);
    }

    section {
        padding: 50px 3%;
    }
    
    .home-text h1 {
        font-size: 3rem;
    }
    
    .home-text h5 {
        font-size: 22px;
    }
    
    .home-text h6 {
        font-size: 16px;
    }
    
    .home-img img {
        width: 280px;
        height: 280px;
    }
    
    .about {
        padding: 2.5rem 3%;
    }
    
    .about-text h3 {
        font-size: 24px;
        letter-spacing: 4px;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .experience-card {
        padding: 2rem;
    }
    
    .company-logo {
        width: 130px;
        height: 130px;
    }
    
    .company-details h2 {
        font-size: 2rem;
    }
    
    .company-details h3 {
        font-size: 1.1rem;
    }
    
    .experience-description p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0 3%;
        height: 65px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    #menu-icon {
        font-size: 26px;
    }
    
    .navbar {
        top: 65px;
        height: calc(100vh - 65px);
    }
    
    .navbar a {
        font-size: 0.95rem;
        padding: 0.9rem 1.5rem;
    }
    
    .navbar a:hover,
    .navbar a.active {
        padding-left: 2rem;
    }

    section {
        padding: 40px 3%;
    }
    
    .home {
        padding: 70px 3% 30px;
    }
    
    .home-text h1 {
        font-size: 2.5rem;
    }
    
    .home-text h5 {
        font-size: 20px;
    }
    
    .home-text h6 {
        font-size: 15px;
    }
    
    .home-text p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .home-img img {
        width: 250px;
        height: 250px;
    }
    
    .about {
        padding: 2rem 3%;
    }
    
    .about-text h3 {
        font-size: 22px;
        letter-spacing: 3px;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .experience-card {
        padding: 1.8rem;
    }
    
    .company-logo {
        width: 120px;
        height: 120px;
    }
    
    .company-details h2 {
        font-size: 1.8rem;
    }
    
    .company-details h3 {
        font-size: 1rem;
    }
    
    .experience-description p {
        font-size: 0.95rem;
    }
    
    .experience-highlights li,
    .experience-achievements li {
        font-size: 0.9rem;
    }
    
    .center h3 {
        font-size: 22px;
        letter-spacing: 3px;
    }
    
    .center i {
        font-size: 2.5rem;
    }
    
    .contact h2 {
        font-size: 3rem;
    }
    
    .contact h4 {
        font-size: 1.4rem;
    }
    
    .social-icons a {
        font-size: 2.5rem;
    }
}

@media (min-width: 1920px) {
    section {
        padding: 150px 10%;
    }
    
    .home {
        grid-gap: 8rem;
    }
    
    .home-img img {
        width: 500px;
        height: 500px;
    }
    
    .services .services-content,
    .resume .services-content,
    .certifications .services-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Botão */
.btn {
    background: var(--main-color);
    color: var(--text-color);
    box-shadow: 4px 4px var(--text-color);
    padding: 0 25px;
    line-height: 42px;
    display: inline-block;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    transition: ease all 0.35s;
    border-radius: 5px;
    text-align: center;
    min-width: 180px;
}

.btn:hover {
    background: var(--text-color);
    color: var(--main-color);
    box-shadow: 4px 4px var(--main-color);
    transform: translateY(-2px);
}

/* Experience Section */
.experience {
    padding: 80px 14%;
    position: relative;
    background: linear-gradient(45deg, rgba(47, 191, 113, 0.03), rgba(47, 191, 113, 0.01));
}

.experience-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.experience-card {
    background: #0b0b13;
    border-radius: 20px;
    padding: 3.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(47, 191, 113, 0.1);
    position: relative;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(47, 191, 113, 0.1);
    border-color: var(--main-color);
}

.experience-grid {
    display: grid;
    gap: 3rem;
}

.experience-header {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(47, 191, 113, 0.1);
}

.company-logo {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-details {
    flex: 1;
}

.company-details h2 {
    color: var(--main-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.company-details h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

.position-info {
    margin-top: 1.5rem;
}

.position-info h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.period {
    color: var(--main-color);
    font-size: 1rem;
    font-weight: 500;
}

/* Career Progression */
.career-progression {
    margin: 1rem 0;
}

.career-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 1rem;
    gap: 1rem;
    align-items: center;
}

.career-timeline::before {
    display: none;
}

.career-step {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.career-arrow {
    color: var(--main-color);
    font-size: 1.2rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.experience-card:hover .career-arrow {
    opacity: 1;
    transform: scale(1.1);
}

.step-content {
    background: rgba(47, 191, 113, 0.05);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.career-step.active .step-content {
    background: rgba(47, 191, 113, 0.1);
    border: 1px solid rgba(47, 191, 113, 0.2);
}

.step-title {
    display: block;
    color: var(--main-color);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.step-period {
    display: block;
    color: var(--2nd-main-color);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Experience Body */
.experience-body {
    display: grid;
    gap: 2.5rem;
}

.experience-description p {
    color: var(--2nd-main-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.experience-highlights,
.experience-achievements {
    background: rgba(47, 191, 113, 0.05);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.experience-card:hover .experience-highlights,
.experience-card:hover .experience-achievements {
    background: rgba(47, 191, 113, 0.08);
}

.experience-highlights h5,
.experience-achievements h5 {
    color: var(--main-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.experience-highlights ul,
.experience-achievements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-highlights li,
.experience-achievements li {
    color: var(--2nd-main-color);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.experience-highlights li::before,
.experience-achievements li::before {
    content: '•';
    color: var(--main-color);
    position: absolute;
    left: 0;
    font-size: 1.4rem;
    line-height: 1.6;
}

.experience-reflection {
    margin-top: 1rem;
}

.experience-reflection p {
    color: var(--2nd-main-color);
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

@media (max-width: 1020px) {
    .experience-card {
        padding: 3rem;
    }
    
    .experience-header {
        gap: 2.5rem;
    }
    
    .company-logo {
        width: 150px;
        height: 150px;
    }
    
    .company-details h2 {
        font-size: 2.2rem;
    }
    
    .company-details h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .experience {
        padding: 60px 5%;
    }
    
    .experience-card {
        padding: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .experience-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding-bottom: 2rem;
    }
    
    .company-logo {
        width: 140px;
        height: 140px;
        margin: 0 auto;
    }
    
    .company-details h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .company-details h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .career-timeline {
        flex-direction: column;
        gap: 1rem;
    }
    
    .career-timeline::before {
        display: none;
    }
    
    .career-step {
        width: 100%;
    }
    
    .step-content {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .experience-body {
        gap: 2rem;
    }
    
    .experience-description p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .experience-highlights,
    .experience-achievements {
        padding: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .experience-highlights h5,
    .experience-achievements h5 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .experience-highlights li,
    .experience-achievements li {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
        padding-left: 1.5rem;
    }
    
    .experience-reflection p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .experience-item {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .experience-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .experience-item .company {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .experience-item .period {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .experience-item p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .experience-item ul {
        padding-left: 1.2rem;
        margin-bottom: 1rem;
    }

    .experience-item li {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .experience {
        padding: 40px 5%;
    }
    
    .experience-card {
        padding: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .experience-header {
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .company-logo {
        width: 120px;
        height: 120px;
    }
    
    .company-details h2 {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .company-details h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .experience-body {
        gap: 1.5rem;
    }
    
    .experience-description p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    
    .experience-highlights,
    .experience-achievements {
        padding: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .experience-highlights h5,
    .experience-achievements h5 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .experience-highlights li,
    .experience-achievements li {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0.6rem;
        padding-left: 1.2rem;
    }
    
    .experience-reflection p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Projects Section */
.projetos {
    padding: 80px 14%;
    position: relative;
}

.projetos .center {
    margin-bottom: 3rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: #0b0b13;
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    min-height: 420px;
    border: 1px solid rgba(47, 191, 113, 0.1);
    position: relative;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(47, 191, 113, 0.1);
    border-color: var(--main-color);
}

.project-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 2rem;
    background: white;
    padding: 1.2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card h4 {
    color: var(--main-color);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
    font-weight: 500;
}

.project-card p {
    color: var(--2nd-main-color);
    font-size: 1rem;
    line-height: 1.7;
    flex-grow: 1;
    padding: 0 1rem;
}

.project-card i {
    font-size: 4rem;
    color: var(--main-color);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.project-card:hover i {
    transform: scale(1.1);
    color: var(--text-color);
}

/* Services Section */
.services {
    padding: 80px 14%;
    position: relative;
}

.services .center {
    margin-bottom: 3rem;
}

.services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services .row {
    background: #0b0b13;
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(47, 191, 113, 0.1);
}

.services .row:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(47, 191, 113, 0.1);
    border-color: var(--main-color);
}

.services .row i {
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
}

.services .row h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.services .row p {
    font-size: 1rem;
    color: var(--2nd-main-color);
    line-height: 1.7;
    margin: 0;
}

/* Resume Section */
.resume {
    padding: 80px 14%;
    position: relative;
}

.resume .center {
    margin-bottom: 3rem;
}

.resume-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.resume .row {
    background: #0b0b13;
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(47, 191, 113, 0.1);
}

.resume .row:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(47, 191, 113, 0.1);
    border-color: var(--main-color);
}

.resume .row i {
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
}

.resume .row h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.resume .row p {
    font-size: 1rem;
    color: var(--2nd-main-color);
    line-height: 1.7;
    margin: 0;
}

.resume .row h5 {
    font-size: 1rem;
    color: var(--main-color);
    margin-top: 1rem;
    font-weight: 500;
}

/* Certifications Section */
.certifications {
    padding: 80px 14%;
    position: relative;
}

.certifications .center {
    margin-bottom: 3rem;
}

.certifications-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.certifications .row {
    background: #0b0b13;
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(47, 191, 113, 0.1);
}

.certifications .row:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(47, 191, 113, 0.1);
    border-color: var(--main-color);
}

.certifications .row i {
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
}

.certifications .row h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.certifications .row p {
    font-size: 1rem;
    color: var(--2nd-main-color);
    line-height: 1.7;
    margin: 0;
}

.certifications .row h5 {
    font-size: 1rem;
    color: var(--main-color);
    margin-top: 1rem;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .project-card {
        min-height: 400px;
        padding: 2rem;
    }
    
    .services-content,
    .resume-content,
    .certifications-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1020px) {
    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
    
    .project-card {
        min-height: auto;
        padding: 2rem;
    }
    
    .project-card img {
        width: 130px;
        height: 130px;
        margin-bottom: 1.5rem;
    }
    
    .project-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .services-content,
    .resume-content,
    .certifications-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services .row,
    .resume .row,
    .certifications .row {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .projetos,
    .services,
    .resume,
    .certifications {
        padding: 60px 14%;
    }
    
    .projects-grid {
        padding: 1rem;
    }
    
    .project-card {
        padding: 1.8rem;
    }
    
    .project-card img {
        width: 120px;
        height: 120px;
    }
    
    .services-content,
    .resume-content,
    .certifications-content {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .services .row,
    .resume .row,
    .certifications .row {
        padding: 1.8rem;
    }
}

@media (max-width: 480px) {
    .projetos,
    .services,
    .resume,
    .certifications {
        padding: 40px 14%;
    }
    
    .project-card {
        padding: 1.5rem;
    }
    
    .project-card img {
        width: 100px;
        height: 100px;
    }
    
    .project-card h4 {
        font-size: 1.1rem;
    }
    
    .project-card p {
        font-size: 0.9rem;
    }
    
    .services .row,
    .resume .row,
    .certifications .row {
        padding: 1.5rem;
    }
    
    .services .row h3,
    .resume .row h3,
    .certifications .row h3 {
        font-size: 1.1rem;
    }
    
    .services .row p,
    .resume .row p,
    .certifications .row p {
        font-size: 0.9rem;
    }
}

@media (min-width: 1920px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1600px;
        gap: 3rem;
    }
    
    .project-card {
        min-height: 450px;
        padding: 3rem;
    }
    
    .project-card img {
        width: 180px;
        height: 180px;
    }
    
    .project-card h4 {
        font-size: 1.4rem;
    }
    
    .project-card p {
        font-size: 1rem;
    }
    
    .services-content,
    .resume-content,
    .certifications-content {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1600px;
    }
}

.cert-link {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 15px;
    background-color: var(--main-color);
    color: var(--bg-color);
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cert-link:hover {
    background-color: var(--text-color);
    transform: translateY(-2px);
}