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

:root {
    --primary-color: #6a994e;
    --background-dark: #000;
    --light-text: #f0f0f8;
    --secondary-color: #a7be9f;
    --accent-color: #c7a184;
}

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

html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: var(--background-dark);
    color: var(--light-text);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    color: var(--light-text);
}

header {
    background-color: var(--background-dark);
    padding: 2.5rem 0;
    text-align: center;
}

.navbar-list {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    list-style-type: none;
    margin: 0;
}

.page {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 600;
    font-size: 1.3rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.page:hover {
color: var(--primary-color);
}

.active {
    font-weight: 800;
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 3px;
}

main {
    flex-grow: 1;
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

@media (min-width: 768px) {
    main {
        flex-direction: row;
        justify-content: center;
        text-align: left;
        gap: 5rem;
    }
}

.introduce {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    width: 100%;
    max-width: 600px;
}

.introduce p {
    text-align: justify;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--light-text);
}

@media (min-width: 768px) {
    .introduce p {
        text-align: left;
    }
}

.title {
    text-align: center;
}

@media (min-width: 768px) {
    .title {
        text-align: left;
    }
}

.title h1 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.title h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.social-links {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .social-links {
        justify-content: flex-start;
    }
}

.social-links li {
    transition: transform 0.3s ease;
}

.social-links li:hover {
transform: translateY(-5px);
}

.social-links a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.1rem;
}

.social-links i {
    font-size: 2rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.social-links li:hover i {
    color: var(--primary-color);
}

.logo {
width: 250px;
height: 250px;
border-radius: 50%;
border: 5px solid var(--primary-color);
object-fit: cover;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
flex-shrink: 0;
}

.btn-primary {
    display:inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 3rem;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background-color: #557d41;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

footer {
    background-color: var(--background-dark);
    color: var(--light-text);
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Para laptops menores e tablets na horizontal */
@media (max-width: 1024px) { 
    .navbar-list {
        gap: 1.8rem;
    }

.page {
    font-size: 1.2rem;
}

main {
    padding: 3rem 1rem;
    gap: 2rem;
}

.introduce {
    max-width: 90%;
}

.logo {
    width: 200px;
    height: 200px;
}

.btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 2rem;
}
} 

/* Para tablets na vertical e celulares maiores */
@media (max-width: 768px) {
    header {
        padding: 1.5rem 0;
    }

.navbar-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.page {
    font-size: 1.1rem;
}

main {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2.5rem 1rem;
}

.introduce {
    width: 100%;
    max-width: none;
}

.introduce p {
    text-align: center;
}

.title h1 {
    font-size: 2.5rem;
}

.title h2 {
    font-size: 1.5rem;
}

.social-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links li {
    width: auto;
    max-width: none;
}

.logo {
    width: 180px;
    height: 180px;
    margin-top: 2rem;
}

.btn-primary {
    width: 80%;
    max-width: 300px;
    font-size: 1rem;
}
}

/* Para celulares menores */
@media (max-width: 480px) {
    header {
        padding: 1rem 0;
    }

    .navbar-list {
        gap: 0.8rem;
    }

    .page {
        font-size: 1rem;
    }

    main {
        padding: 2rem 0.8rem;
        gap: 1.5rem
    }

    .title h1 {
        font-size: 2rem;
    }

    .title h2 {
        font-size: 1.2rem;
    }

    introduce p {
        font-size: 1rem;
    }

    .logo {
        width: 150px;
        height: 150px;
    }

    .social-links li {
        width: auto;
        padding: 0;
    }
}