@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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #1f1f1f;
    color: #fff;
}

.header-title {
    font-size: 1.5rem;
    font-weight: 500;
}

.navbar {
    display: flex;
    gap: 1.5rem;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar a:hover {
    background-color: #fff;
    color: #333;
    border-radius: 4px;
}

.menu-toggle {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.apresentation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    min-height: 100vh;
}

.apresentation-text {
    text-align: left;
}

.apresentation-text h1 {
    font-weight: 700;
}

.apresentation-text h2 {
    font-weight: 500;
}

.apresentation-icons {
    display: flex;
    gap: 1.5rem;
}

.apresentation-icons img {
    width: 60px;
    height: auto;
}

#about {
    background-color: #333;
    color: #fff;
    padding: 4rem 2rem;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.about-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-copy {
    font-size: 0.9em;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-icon-link {
    color: #fff;
    text-decoration: none;
    font-size: 2em;
    transition: color 0.3s ease;
}

.footer-icon-link:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .navbar {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 70px;
        right: 0;
        padding: 1rem;
        width: 200px;
    }

    .navbar a:hover {
        background-color: #fff;
        color: #333;
        border-radius: 4px;
    }

    .menu-toggle {
        display: block;
    }

    .navbar.active {
        display: flex;
    }

    .apresentation {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
        min-height: auto;
    }

    .apresentation-text {
        text-align: center;
    }

    .apresentation-icons {
        justify-content: center;
        width: 50px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text,
    .about-image {
        width: 100%;
    }

    .about-image img {
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }
}