 a:hover {
  color: #000 !important;
}
 
 
 :root {
            --primary-green: #059669;
            --secondary-green: #10b981;
            --accent-orange: #f59e0b;
            --dark-gray: #1f2937;
            --light-gray: #f9fafb;
        }
  
        .hero-section1{
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/placeholder.svg?height=600&width=1200') center/cover;
            opacity: 0.1;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        .hero-section1 {
        margin-top: 100px; 
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section1 {
                padding: 60px 0;
            }
            
            .mvv-section {
                padding: 60px 0;
            }
            
            .mvv-card {
                margin-bottom: 30px;
            }
            
            .stat-number {
                font-size: 36px;
            }
           
        }
       

        .mvv-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .mvv-section {
            display: flex;
            align-items: center;
            margin-bottom: 120px;
            gap: 80px;
        }

        .mvv-section:nth-child(even) {
            flex-direction: row-reverse;
        }

        .mvv-content {
            flex: 1;
        }

        .mvv-icon-container {
            flex: 0 0 200px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .mvv-icon {
            width: 120px;
            height: 120px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            color: white;
        }
 

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}
 
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        .hero-section {
        margin-top: 100px; 
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            
            .mvv-section {
                padding: 60px 0;
            }
            
            .mvv-card {
                margin-bottom: 30px;
            }
            
            .stat-number {
                font-size: 36px;
            }
           
        }

/* quem somos */

.about-section {
  padding: 80px 0;
  background-color: #f0fdf4;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-container {
    flex-direction: row;
    align-items: stretch;
  }
}

.about-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1;
  color: #1e293b;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #166534;
}

.about-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #374151;
  text-align: justify;
}

/* hero */
.hero-section1 {
  position: relative;
  min-height: 400px; 
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9fafb; 
  padding: 60px 0;
  text-align: center;
}

.hero-content {
  margin: 0 auto;
}

.hero-section1 h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-section1 p {
  font-size: 1.25rem;
  color: #ffffff;
}


   /* Main Content */
        .main-content1 {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .page-header1 {
            text-align: center;
            margin-bottom: 50px;
        }

        .page-title1 {
            font-size: 36px;
            font-weight: bold;
            color: #2c5530;
            margin-bottom: 15px;
            margin-top: 125px;
        }

        .page-subtitle1 {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* FAQ Section */
        .faq-section1 {
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .faq-item1 {
            border-bottom: 1px solid #eee;
        }

        .faq-item1:last-child {
            border-bottom: none;
        }

        .faq-question1 {
            background: #f8f9fa;
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }

        .faq-question1:hover {
            background: #e9ecef;
        }

        .faq-question1.active {
            background: #2c5530;
            color: white;
        }

        .faq-title1 {
            font-size: 18px;
            font-weight: 600;
        }

        .faq-icon1 {
            font-size: 20px;
            transition: transform 0.3s;
        }

        .faq-question1.active .faq-icon1 {
            transform: rotate(180deg);
        }

        .faq-answer1 {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        }

        .faq-answer1.active {
            padding: 20px;
            max-height: 1000px;
        }

        .document-list1 {
            display: grid;
            gap: 15px;
        }

        .document-item1 {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            transition: background-color 0.3s;
        }

        .document-item1:hover {
            background: #e9ecef;
        }

        .pdf-icon1 {
            width: 40px;
            height: 40px;
            background: #f82007ff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 12px;
        }

        .document-info1 {
            flex: 1;
        }

        .document-title1 {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .document-meta1 {
            font-size: 14px;
            color: #666;
        }

        .download-btn1 {
            background: #267700ff;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.3s;
        }

        .download-btn1:hover {
            background: #267700ff;
        }

        /* Newsletter */
       

        /* Responsive */
        @media (max-width: 768px) {
            .header1 .container1 {
                flex-direction: column;
                height: auto;
                padding: 15px 20px;
            }

            .nav1 {
                margin: 15px 0;
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }

            .search-box1 input {
                width: 150px;
            }

            .page-title1 {
                font-size: 28px;
                margin-top: 120px;
            }

            .faq-question1 {
                padding: 15px;
            }

            .faq-title1 {
                font-size: 16px;
            }

            .newsletter-form1 {
                flex-direction: column;
                max-width: 300px;
            }

            .top-bar1 .container1 {
                flex-direction: column;
                gap: 10px;
            }

            .contact-info1 {
                flex-direction: column;
                gap: 5px;
                text-align: center;
            }
        }