
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background: white;
    color: #2E8B57;
    position: relative;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo img {
    height: 50px;
    width: auto;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.telefone i {
    margin-right: 0.5rem;
}


nav {
    background: #1f6f4a;
    padding: 0.5rem 1rem;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #000000;
}

nav a i {
    margin-right: 0.5rem;
}


.menu-toggle {
    display: none; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: #2E8B57;
    position: relative;
    transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 25px;
    height: 3px;
    background: #2E8B57;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}


@media (max-width: 768px) {
    .menu-toggle {
        display: block; 
    }

    nav ul {
        display: none; 
        flex-direction: column;
        background: #1f6f4a;
        position: absolute;
        top: 60px; 
        left: 0;
        width: 100%;
        padding: 1rem 0;
        z-index: 999;
    }

    nav ul.active {
        display: flex; 
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    nav ul li a {
        padding: 0.5rem 1rem;
        display: block;
    }
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

footer {
    background: #2E8B57;
    color: white;
    padding: 2.5rem 0 0 0;
    box-sizing: border-box;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem 1.5rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    text-align: left;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #ffffff;
    margin: 0.1rem auto 0;
}

.footer-section p,
.footer-section ul {
    font-size: 1.05rem;
    color: #f0f0f0;
    line-height: 1.6;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #000000;
}


.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
}

.quick-links li a {
    display: flex;
    align-items: center;
    width: 100%;
}

.quick-links li i {
    margin-right: 0.8rem;
    width: 1.2rem; 
    text-align: center; 
}

.footer-section ul:not(.quick-links) {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul:not(.quick-links) li {
    margin-bottom: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.footer-section ul:not(.quick-links) li i {
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-start;
}

.social-icons a {
    color: white;
    font-size: 1.6rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #000000;
}

.footer-bottom {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #000000;
    color: white;
    padding: 0.1rem 0;
    text-align: center;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .footer-content {
        gap: 1.8rem;
    }
    
    .footer-section {
        min-width: 230px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2.2rem;
        padding: 0 1.5rem 2rem 1.5rem;
    }
    
    .footer-section {
        min-width: 100%;
    }
    
    .footer-section h3 {
        font-size: 1.5rem;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 2rem 0 0 0;
    }
    
    .footer-content {
        padding: 0 1rem 1.5rem 1rem;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section p,
    .footer-section ul {
        font-size: 1rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
        padding: 1rem 0;
    }
}