html {
    scroll-behavior: smooth;
}
body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
}
.header {
    display: flex;
    height: auto;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 15px;
    margin: 20px;
    padding: 0 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.499);
    border: 12px solid rgba(255, 255, 255, 0.2);
    justify-content: center;
}
.logo {
    height: 30vh;
    width: auto;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;    
    flex: 0 0 150px;
    margin-top: -15px;
}
.logo:hover {
    transform: scale(1.1);
}
.nav-menu {
    display: flex;
    gap: 20px;
}
.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    background: linear-gradient(135deg, #9daef8, #8b71a4);
    padding: 10px 20px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.2rem;
}
.nav-menu a:hover {
    background: linear-gradient(135deg, #5471f5, #673596);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}
.parque {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 60px 20px;
    background-color: white;
    backdrop-filter: blur(10px);
    margin: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
    flex: 1;
    text-align: left;
    justify-content: center;
}
h2 {
    color: #535353;
    font-size: 1.7rem;
}
.parque div {
    flex: 0.5;
    padding: 20px;
    font-size: 1.2rem;
    color: #555;
}
p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.parque-imagens {
    display: flex;
    flex-direction: column;
    width: 30%;
    margin-left: auto;
    align-items: flex-end;
    gap: 80px;
}
.parque-imagens img {
    width: 60%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.631);
    transition: transform 0.3s, box-shadow 0.3s ease;
}
.parque-imagens img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.873);
}
.introdução {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 80vh;
    padding: 60px 20px;
    background-color: white;
    backdrop-filter: blur(10px);
    margin: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.introdução div {
    flex: 0.5;
    padding: 20px;
    font-size: 1.2rem;
    color: #555;
}
.introdução-content {
    flex: 1;
    padding-right: 40px;
}
.introdução-imagens {
    display: flex;
    flex-direction: column;
    width: 30%;
    margin-left: auto;
    align-items: flex-end;
    gap: 80px;
}
.introdução-imagens img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.631);
    transition: transform 0.3s, box-shadow 0.3s ease;
}
.introdução-imagens img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.873);
}
.desenvolvimento {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    
    padding: 60px 20px;
    background-color: white;
    backdrop-filter: blur(10px);
    margin: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.Conclusão {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 80vh;
    padding: 60px 20px;
    background-color: white;
    backdrop-filter: blur(10px);
    margin: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.Conclusão div {
    flex: 1;
    padding: 20px;
    color: #555;
    align-items: flex-start;
    width: auto;
    margin-left: 0;
    gap: 0;
}
.Conclusão-imagens img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.631);
    transition: transform 0.3s, box-shadow 0.3s ease;
}
.Conclusão-imagens {
    display: flex;
    flex-direction: column;
    width: 30%;
    margin-left: auto;
    align-items: flex-end;
    gap: 80px;
}
footer {
    background: rgba(0, 0, 0, 0.637);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-bottom: -9px;
    margin-right: 0;
    border-radius: 0;
    width: 100vw;
    margin-left: -10px;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgb(242, 255, 0);
}
@media (max-width: 1025px) {
    .header h1 {
        font-size: 1.8rem;
    }
    .header a {
        font-size: 1rem;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 430px) {
    
    .header h1
    {
        font-size: 30px;
    }
    .header a {
        font-size: 15px;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        
    }
    .parque
    {
        flex-wrap: wrap;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .parque img {
       width: 300%;
       height: auto;
       border-radius: 20px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.631);
       transition: transform 0.3s, box-shadow 0.3s ease;
    }
     .introdução
    {
        flex-wrap: wrap;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .introdução img {
        width: 300%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.631);
        transition: transform 0.3s, box-shadow 0.3s ease;
    }
    .desenvolvimento
    {
        flex-wrap: wrap;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
     .Conclusão
    {
        flex-wrap: wrap;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    h1 {
        font-size: 1.8rem;
        text-align: left;
    }
    h2
    {
        font-size: 1.3rem;
        text-align: left;
    }
    .header h1 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 40px;
    }
}
@media (max-width: 325px) {
    .header h1 {
        font-size: 1.4rem;
    }
    .header a {
        font-size: 0.8rem;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media (max-width: 800px) {
    .parque {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .parque div {
        width: 80%;
        margin-left: 0;
    }
    .parque-imagens {
        width: 50%;
        margin-left: 0;
        align-items: center;
    }
    .parque-imagens img {
        width: 80%;
        height: auto;
    }
     .desenvolvimento {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .desenvolvimento div {
        width: 80%;
        margin-left: 0;
    }
    .desenvolvimento-imagens {
        width: 50%;
        margin-left: 0;
        align-items: center;
    }
    .desenvolvimento-imagens img {
        width: 80%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.631);
        transition: transform 0.3s, box-shadow 0.3s ease;
    }
    .introdução {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .introdução div {
        width: 80%;
        margin-left: 0;
    }
    .introdução-imagens {
        width: 50%;
        margin-left: 0;
        align-items: center;
    }
    .introdução-imagens img {
        width: 80%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.631);
        transition: transform 0.3s, box-shadow 0.3s ease;
    }
    .conclusão {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .conclusão div {
        width: 80%;
        margin-left: 0;
    }
    .conclusão-imagens {
        width: 50%;
        margin-left: 0;
        align-items: center;
    }
    .conclusão-imagens img {
        width: 80%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.631);
        transition: transform 0.3s, box-shadow 0.3s ease;
}
}
@media (max-width: 607px) {
    .header h1 {
        text-align: center;
        margin-bottom: 20px;
    }
}