@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    max-width: 100%;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

nav {
    width: 100%;
    height: 100px;
    background-color: #dbdbdb;
    display: grid;
    grid-template-columns: auto 1fr 40px;
    align-items: center;
    padding: 0 45px;
    border-bottom: 0.5px solid #BFAF6F;
}

logo {
    margin: 0 10px;
}

nav links {
    display: flex;
    align-items: center;
    justify-content: center;
}

nav links a {
    color: #1E1E1E;
    text-decoration: none;
    margin: 0 10px;
    padding-left: 15px;
    cursor: pointer;
    transition: 0.7s;
}

a:hover {
    color: #A3A3A3;
}

info square {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 10px;
}

info square:hover {
    svg {
        stroke: #A3A3A3;
    }
}

info square svg {
    stroke: #1E1E1E;
    width: 30px;
    height: 30px;
    transition: 0.3s;
}

introduction {
    display: flex;
    justify-content: space-around;
    background-color: #1E1E1E;
    padding: 20px;
    color: #E6E6E6;
}

introduction img {
    border-radius: 100%;
    border: 2px solid #ffee87;
}

introduction text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

introduction text h1 {
    display: flex;
    justify-content: center;
    color: #ffee87;
}

introduction text h3 {
    display: flex;
    justify-content: center;
    margin-top: -10px;
}

menu {
    display: none;
}

menu square {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

menu square:hover {
    svg {
        stroke: var(--primary-color);
    }
}

menu square svg {
    stroke: var(--white);
    width: 30px;
    height: 30px;
    transition: 0.3s;
}

slogan {
    display: flex;
    flex-direction: column;
    align-items: center;
    letter-spacing: 10px;
    font-size: larger;
    background-color: #fff3a6;
    padding: 95px 0;
    color: #333333;
}

slogan svg {
    width: 40px;
    height: 40px;
    stroke: #333333;
    animation: jump 1s infinite alternate, colorChange 1s infinite alternate;
}

@keyframes jump {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(10px);
    }
}

@keyframes colorChange {
    0% {
        stroke: #333333;
    }

    100% {
        stroke: #5e5e5e;
    }
}

about {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1E1E1E;
    padding: 20px;
    color: #E6E6E6;
}

.about-me h1 {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.about-me.show h1 {
    opacity: 1;
    transform: translateX(0);
}

.columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.column {
    text-align: center;
}

#column-top-svg {
    width: 50px;
    height: 50px;
}

.column li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: #32a852;
}

.icon {
    font-size: 64px;
    display: block;
    margin: 0 auto 10px;
}

.column h3 {
    text-align: center;
}

.column ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.column li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
}

.history-container {
    margin: 0 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: start;
    text-align: center;
}

.container {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 350px;
}

.container img {
    display: block;
    margin: 0 auto 10px;
}

.container img[src*="unicesumar"] {
    transform: scale(0.9);
    margin-top: -30px;
    margin-bottom: -30px;
}

.container p {
    text-align: justify;
    font-weight: 500;
}

.container #bold {
    font-weight: bold;
}

#ecologic {
    height: 400px;
    justify-self: center;
}

#image-ecologic {
    margin-top: -50px;
    margin-bottom: -45px;
}

#image-senai {
    margin-top: -35px;
    margin-bottom: -23px;
}

#senai #bold {
    text-align: center;
}

#kelly {
    max-width: 470px;
    height: 300px;
    margin-bottom: 90px;
}

professional-history {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    background-color: #fff3a6;
    color: #333333;
}

professional-history logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

professional-history #logos-container #ecologic {
    margin-left: -30px;
}

courses {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #1E1E1E;
    color: #E6E6E6;
    padding-top: 50px;
}

courses text {
    display: flex;
    flex-direction: column;
    justify-content: left;
}

courses text h1 {
    color: #ffee87;
    margin-bottom: 20px;
}

courses ul {
    list-style: none;
    padding: 0;
}

courses li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

courses li svg {
    font-size: 20px;
    color: #ffee87;
    flex-shrink: 0;
    align-items: flex-start;
}

.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    border: 2px solid #ffee87;
    background-size: cover;
    border-radius: 100%;
    height: 300px;
    width: 300px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 4px;
    background: #1E1E1E;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-mobile {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    background: rgba(0, 0, 0, 0.46);
    width: 200px;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    text-align: start;
}

.menu-mobile.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    box-shadow: -10px 0 100px rgba(0, 0, 0, 0.46);

}

.menu-mobile a {
    color: #dbdbdb;
    margin: 20px 20px 20px 20%;
    text-align: center;
    font-weight: bolder;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.menu-mobile a:hover {
    color: #ffee87;
    font-size: 20px;
}

.menu-mobile a:last-child {
    border-bottom: none;
}

.menu-bar {
    width: 100%;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
}

#footer {
    background-color: #222;
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 30px;
    font-family: Arial, sans-serif;
}

.footer-left {
    display: flex;
    gap: 15px;
}

.icon {
    background-color: #444;
    padding: 10px;
    border-radius: 8px;
    transition: 0.3s;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon:hover {
    background-color: #666;
}

.footer-right {
    font-size: 14px;
    font-weight: bold;
}

.footer-bottom {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    width: 100%;
}

.container-award {
    background-color: #000;
    display: flex;
    justify-content: center;
}

.award {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 25px;
    text-align: center;
    background-color: #A3A3A3;
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    border-radius: 10px;
}

.award svg {
    border: 2px solid #ffee87;
    border-radius: 50px;
    padding: 8px;
    width: 60px;
    height: 60px;
    stroke: #ffee87;
}

@media only screen and (max-width: 800px) {
    .hamburger {
        display: flex;
    }

    body {
        flex-direction: column;
        align-items: center;
        overflow-x: hidden;
    }

    nav {
        width: 100%;
        height: auto;
        padding: 15px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    logo img {
        width: 120px;
        height: auto;
    }

    menu {
        display: flex !important;
    }

    menu square svg {
        stroke: #1E1E1E;
        width: 30px;
        height: 30px;
        transition: 0.3s;
    }

    menu square:hover {
        svg {
            stroke: #A3A3A3;
        }
    }

    info {
        display: none;
    }

    links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #8B3E3E;
        padding: 10px 0;
        text-align: center;
    }

    links a {
        display: block;
        padding: 10px;
    }

    introduction {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }

    introduction img {
        width: 200px;
        height: 200px;
    }

    slogan {
        font-size: 1.2rem;
        letter-spacing: 5px;
        text-align: center;
        padding: 30px 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    slogan svg {
        margin-top: -20px;
        width: 40px;
        height: 40px;
        stroke: #333333;
        animation: jump 1s infinite alternate, colorChange 1s infinite alternate;
    }

    @keyframes jump {
        0% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(10px);
        }
    }

    @keyframes colorChange {
        0% {
            stroke: #333333;
        }

        100% {
            stroke: #5e5e5e;
        }
    }

    about {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    about img {
        width: 200px;
        height: 200px;
    }

    .columns {
        grid-template-columns: 1fr;
    }

    #column-top-svg {
        width: 40px;
        height: 40px;
    }

    .icon {
        font-size: 48px;
    }

    about {
        padding: 15px;
    }

    .column li {
        margin-bottom: 12px;
    }

    .column ul {
        text-align: left;
    }

    courses {
        display: flex;
        flex-direction: column;
        padding: 30px 10px;
    }

    courses text {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    courses text h1 {
        text-align: center;
        width: 100%;
    }

    .image-container {
        margin-top: 20px;
        order: -1;
    }

    .image-container img {
        height: 200px;
        width: 200px;
    }

    courses li {
        text-align: left;
        list-style: none;
    }

    courses ul {
        text-align: left;
        width: 100%;
        padding-left: 20px;
    }

    .history-container {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 0 10px;
    }

    .container {
        height: auto;
        padding: 10px;
    }

    .container img {
        max-width: 100%;
        height: auto;
    }

    #kelly {
        max-width: 100%;
        height: auto;
        margin-bottom: 40px;
    }

    #footer {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .footer-left {
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer-right {
        margin-top: 10px;
    }

    .motto {
        width: 90%;  
        padding: 30px 15px; 
        font-size: 14px;
    }


}