 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 10px 5%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    transition: transform 0.3s;
    object-fit: cover;
}
.logo:hover {
    transform: scale(1.05);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #2e7d32;
}
.nav-links a.active {
    color: #2e7d32;
    border-bottom: 3px solid #2e7d32;
    padding-bottom: 5px;
}
.social-icons-nav a {
    color: #555;
    font-size: 20px;
    margin-left: 15px;
    text-decoration: none;
    transition: color 0.3s;
}
.social-icons-nav a:hover {
    color: #2e7d32;
}
.vegetativo-section {
    padding: 40px 5%;
    max-width: 100%;
    margin: 0 auto;
}
.vegetativo-container {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding-right: 30px; 
}
.vegetativo-image {
    width: 1000px; 
    height: 475px; 
    flex-shrink: 0; 
    background: #e0e0e0;
    overflow: hidden;
    position: relative;
}
.vegetativo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vegetativo-texto {
    flex: 1; 
    padding: 20px 0;
    max-width: 1000px;
    text-align: center;
}
.vegetativo-texto h1 {
    color: #2e7d32;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.vegetativo-texto p {
    font-size: 1.15rem;
    color: #555;
    text-align: justify;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.lema-section {
    padding: 60px 5%;
    background-color: #e8f5e9;
    text-align: center;
}
.section-title {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.lema-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.icon-lema {
    font-size: 50px;
    color: #2e7d32;
    margin-bottom: 20px;
}
.card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}
.card p {
    color: #666;
    font-size: 1rem;
}
.trabalho-section {
    padding: 60px 5%;
    max-width: 100%;
    margin: 0 auto;
}
.trabalho-section .section-title {
    text-align: center;
}
.trabalho-container {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.trabalho-left {
    flex: 1; 
    max-width: 1200px;
}
.trabalho-left h3 {
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 20px;
}
.trabalho-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2e7d32;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.3s;
    margin-top: 10px;
}
.btn:hover {
    background-color: #1b5e20;
    transform: scale(1.05);
}
.trabalho-right {
    width: 1000px; 
    height: 600px; 
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #e0e0e0;
}
.mySlides {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}
.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {opacity: .5}
    to {opacity: 1}
}
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
footer {
    background-color: #1a1a1a;
    color: #bfbfbf;
    padding-top: 50px;
    margin-top: 50px;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #2e7d32;
}
.footer-col p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.footer-col p i {
    color: #2e7d32;
    margin-right: 10px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: #bfbfbf;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col ul li a:hover {
    color: #2e7d32;
    padding-left: 5px;
}
.footer-socials {
    margin-top: 15px;
}
.footer-socials a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: background 0.3s, transform 0.3s;
}
.footer-socials a:hover {
    background-color: #2e7d32;
    transform: translateY(-3px);
}
.footer-bottom {
    background-color: #111;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9rem;
}
@media screen and (max-width: 1100px) {
    
    .vegetativo-container, .trabalho-container {
        flex-direction: column;
        padding-right: 0;
    }
    
    .vegetativo-image, .trabalho-right {
        width: 100%; 
        height: auto;
        aspect-ratio: 16/9; 
    }
    .vegetativo-texto {
        padding: 30px;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr); 
    }
}
@media screen and (max-width: 768px) {
    
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .lema-cards {
        grid-template-columns: repeat(1, 1fr); 
    }
    .footer-container {
        grid-template-columns: repeat(1, 1fr); 
    }
}