body {
    margin: 0;
    background-color: #F5F5DC;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header {
    display: block;
    flex-direction: column; 
    align-items: justify;
    padding: 20px;
    gap: 20px;
}

header > h1 {
    text-shadow: black 1px 1px 2px;
    color: orange;
    margin: 0;
}

header > nav {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 20px;
    font-weight: bold;
    font-size: 18px;
}

header > nav a:hover {
    text-decoration: underline;
    transition: 0.5s ease;
    color: orange;
}

main {
    display: flex;
    flex-direction: column; 
    align-items: center;
    padding: 40px 20px;
    gap: 40px;
}

main > section {
    line-height: 1.6;
}



footer {
    padding: 30px 20px;
    text-align: center;
}

a {
    text-decoration: none;
    color: #333333;
}


@media (min-width: 768px) {
    
    header {
        flex-direction: row; 
        justify-content: space-between;
        padding: 5px 60px;
    }

    header > nav {
        font-size: 20px;
        gap: 30px;
    }

    main {
        flex-direction: row; 
        padding: 40px 60px;
    }

    main > section {
      flex: 1;
    }

    main > img {
      flex: 1; 
      max-width: 700px;
    }
}
.main-home {
    padding-left: 0;
    padding-right: 0;
    gap: 0;
}
.hero {
    width: 100%;
    background-image: url('../img/turma-do-bem-hero.jpg'); 
    background-size: cover; 
    background-position: center; 
    border-radius: 50%;


    height: 80vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    
    position: relative;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%px;
    background-color: rgba(0, 0, 0, 0.5); 
}


.hero-content {
    position: relative; 
    z-index: 1;
    padding: 20px;
}


.hero h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    color: white;
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 30px auto; 
}

.cta-button {
    background-color: #E67E22; 
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #D35400; 
}