:root {
    --primary-color: #2b5f2b;
    --secondary-color: #4a8c4a;
    --accent-color: #d4a017;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.navbar-brand span {
    color: var(--accent-color);
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after, .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
        url('img/hero-bg.jpg') no-repeat center center;
background-size: cover;
color: white;
padding: 150px 0;
text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--light-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* About */
.about {
    padding: 100px 0;
    background-color: white;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
}

/* Contact */
.contact {
    padding: 100px 0;
    background-color: var(--light-color);
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-links h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
.contact-section {
background-color: #f8f9fa;
position: relative;
overflow: hidden;
}

.divider {
width: 80px;
height: 3px;
opacity: 0.7;
}

.contact-card {
border: none;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
}

.contact-dots {
position: absolute;
width: 100%;
height: 100%;
background-image: radial-gradient(#2b5f2b21 1px, transparent 1px);
background-size: 15px 15px;
opacity: 0.3;
}

.contact-item {
transition: all 0.3s ease;
border-left: 3px solid #2b5f2b;
}

.contact-item:hover {
transform: translateX(5px);
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-icon {
transition: all 0.3s ease;
}

.text-primary {
color: #2b5f2b !important;
}

.bg-primary {
background-color: #1f6e1f !important;
}
.footer {
    background-color: #2b5f2b !important;
    border-top: 1px solid #c8e6c9;
}

.footer-brand {
    transition: all 0.3s ease;
}

.footer-brand:hover {
    transform: translateX(5px);
}

.footer-links a {
    transition: all 0.3s ease;
    text-decoration: none;
}

.hover-primary:hover {
    color: #2b5f2b !important;
    transform: translateX(5px);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #2b5f2b;
    transform: translateY(-3px);
}

.newsletter-form .form-control {
    border: 1px solid #2b5f2b;
    background-color: rgba(255,255,255,0.05);
    color: white;
}

.newsletter-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(43, 95, 43, 0.25);
}

.copyright {
    font-size: 0.9rem;
}

#year {
    font-weight: 500;
}
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('imagens/logolimpeza.webp') no-repeat center center/cover;
    min-height: 100vh;
}