   :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;
}
