    :root {
      --primary-color: #0a3420;
      --secondary-color: #1a5535;
      --accent-color: #2d8f5f;
      --text-light: #ffffff;
      --text-dark: #2c2c2c;
      --background-light: #f8faf9;
      --background-gradient: linear-gradient(135deg, #0a3420 0%, #1a5535 100%);
      --shadow-light: 0 4px 20px rgba(0,0,0,0.1);
      --shadow-medium: 0 8px 30px rgba(0,0,0,0.15);
      --shadow-heavy: 0 12px 40px rgba(0,0,0,0.2);
      --border-radius: 16px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: var(--background-light);
      color: var(--text-dark);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* Smooth scroll behavior */
    html {
      scroll-behavior: smooth;
    }

.hero-section {
  background: linear-gradient(135deg, #0a3420, #1a5535);
  padding: 60px 20px;
  position: relative;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-logo {
  width: 280px;
  max-width: 100%;
  height: auto;
  margin-right: 40px;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-visual {
    justify-content: center;
    margin-top: 20px;
  }

  .hero-logo {
    width: 120px;
    margin-right: 0;
  }
}

	.hero-main-content {
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  flex-wrap: wrap;
	  text-align: left;
	}

	.hero-header {
	  display: flex;
	  align-items: center; /* Alinha verticalmente */
	  gap: 1rem; /* Espaço entre logo e texto */
	  justify-content: flex-start; /* Puxa tudo para a esquerda */
	}

	.hero-logo {
	  width: 300px;
	  height: auto;
	}

	@media (max-width: 768px) {
	  .hero-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
	  }

	  .hero-logo {
		width: 30px;
		margin-bottom: 1rem; /* Espaço abaixo da logo no mobile */
	  }
	}
	.hero-visual-mobile {
	  display: none;
	  text-align: center;
	  margin-bottom: 30px;
	}

	.hero-visual-desktop img {
	  width: 350px;
	  height: auto;
	}

	@media (max-width: 768px) {
	  .hero-main-content {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	  }

	  .hero-visual-mobile {
		display: block;
	  }

	  .hero-visual-desktop {
		display: none;
	  }

	  .hero-visual-mobile img {
		width: 110px;
	  }
	}

    /* Loading Animation */
    .page-loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--background-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      opacity: 1;
      transition: opacity 0.5s ease;
    }

    .loader {
      width: 50px;
      height: 50px;
      border: 3px solid rgba(255,255,255,0.3);
      border-top: 3px solid var(--text-light);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Modern Navigation Styles */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(10, 52, 32, 0.1);
      z-index: 1000;
      transition: var(--transition);
    }

    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: var(--shadow-light);
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .nav-logo:hover {
      transform: scale(1.05);
    }

    .nav-logo img {
      width: 50px;
      height: auto;
      filter: brightness(0) invert(1);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
    }

    .brand-name {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--primary-color);
      margin: 0;
      line-height: 1.2;
    }

    .brand-tagline {
      font-size: 0.75rem;
      color: var(--accent-color);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 2rem;
      margin: 0;
      padding: 0;
    }

    .nav-link {
      color: var(--text-dark);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: var(--transition);
      position: relative;
      padding: 0.5rem 0;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent-color);
      transition: var(--transition);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--primary-color);
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }

    .bar {
      width: 25px;
      height: 3px;
      background: var(--primary-color);
      border-radius: 2px;
      transition: var(--transition);
    }

    /* Hero Section */
    .hero-section {
      background: var(--background-gradient);
      color: var(--text-light);
      padding: 3rem 0 4rem;
      margin-top: 70px;
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1), transparent),
                  radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05), transparent);
    }

    .hero-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-content {
      max-width: 600px;
    }

    .hero-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #ffffff, #e0e0e0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle {
      font-size: 1.2rem;
      opacity: 0.9;
      margin-bottom: 3rem;
      line-height: 1.6;
    }

    .hero-stats {
      display: flex;
      gap: 2rem;
    }

    .hero-stat {
      text-align: center;
    }

    .stat-value {
      display: block;
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
    }

    .stat-desc {
      font-size: 0.9rem;
      opacity: 0.8;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .hero-visual {
      position: relative;
      height: 300px;
    }

    .floating-elements {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .float-element {
      position: absolute;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.2);
    }

    .float-element:nth-child(1) {
      width: 120px;
      height: 120px;
      top: 20px;
      right: 50px;
      animation: float 4s ease-in-out infinite;
    }

    .float-element:nth-child(2) {
      width: 80px;
      height: 80px;
      bottom: 80px;
      left: 30px;
      animation: float 3s ease-in-out infinite reverse;
    }

    .float-element:nth-child(3) {
      width: 60px;
      height: 60px;
      top: 120px;
      left: 100px;
      animation: float 5s ease-in-out infinite;
    }

    /* Modern Footer Styles */
    footer {
      background: var(--primary-color);
      color: var(--text-light);
      margin-top: 6rem;
    }

    .footer-main {
      padding: 4rem 0 2rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .footer-main .footer-container {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 4rem;
    }

    .footer-brand {
      max-width: 400px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .footer-logo img {
      width: 50px;
      height: 50px;
      filter: brightness(0) invert(1);
    }

    .footer-brand-text h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0;
      line-height: 1.2;
    }

    .footer-brand-text p {
      font-size: 0.9rem;
      opacity: 0.8;
      margin: 0;
    }

    .footer-description {
      font-size: 1rem;
      line-height: 1.6;
      opacity: 0.9;
      margin-bottom: 2rem;
    }

    .footer-social {
      display: flex;
      gap: 1rem;
    }

    .social-link {
      width: 45px;
      height: 45px;
      background: rgba(255,255,255,0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      transition: var(--transition);
      backdrop-filter: blur(10px);
    }

    .social-link:hover {
      background: rgba(255,255,255,0.2);
      transform: translateY(-2px);
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .footer-column h4 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      color: var(--text-light);
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column li {
      margin-bottom: 0.8rem;
    }

    .footer-column a {
      color: var(--text-light);
      text-decoration: none;
      opacity: 0.8;
      transition: var(--transition);
      font-size: 0.95rem;
    }

    .footer-column a:hover {
      opacity: 1;
      color: #ffffff;
      padding-left: 5px;
    }

    .footer-bottom {
      padding: 1.5rem 0;
      background: rgba(0,0,0,0.2);
    }

    .footer-bottom-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.9rem;
      opacity: 0.8;
    }

    .footer-bottom-links {
      display: flex;
      gap: 2rem;
    }

    .footer-bottom-links a {
      color: var(--text-light);
      text-decoration: none;
      transition: var(--transition);
    }

    .footer-bottom-links a:hover {
      opacity: 1;
      text-decoration: underline;
    }-bottom: 0.5rem;
      background: linear-gradient(45deg, #ffffff, #e0e0e0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .company-tagline {
      font-size: 1.1rem;
      opacity: 0.9;
      font-weight: 300;
    }

    /* Main Content Styles */
    main {
      max-width: 1000px;
      margin: 0 auto;
      padding: 4rem 2rem;
      position: relative;
    }

    .content-wrapper {
      background: white;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-light);
      padding: 3rem;
      margin-bottom: 3rem;
      position: relative;
      overflow: hidden;
    }

    .content-wrapper::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--background-gradient);
    }

    .main-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 2.5rem;
      line-height: 1.2;
      position: relative;
    }

    .main-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--accent-color);
      border-radius: 2px;
    }

    .story-paragraph {
      font-size: 1.15rem;
      margin-bottom: 2rem;
      text-align: justify;
      transition: var(--transition);
      position: relative;
      padding-left: 1rem;
    }

    .story-paragraph::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 3px;
      height: 100%;
      background: linear-gradient(to bottom, var(--accent-color), transparent);
      opacity: 0;
      transition: var(--transition);
    }

    .story-paragraph:hover::before {
      opacity: 1;
    }

    .story-paragraph:hover {
      transform: translateX(10px);
      color: var(--secondary-color);
    }

    .highlight-text {
      background: linear-gradient(120deg, rgba(45, 143, 95, 0.2) 0%, rgba(45, 143, 95, 0.1) 100%);
      padding: 0.2rem 0.5rem;
      border-radius: 6px;
      font-weight: 600;
      color: var(--primary-color);
    }

    /* Family Photo Styles */
    .photo-container {
      margin: 4rem 0;
      text-align: center;
    }

    .family-photo {
      width: 100%;
      max-width: 800px;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-medium);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .family-photo:hover {
      transform: scale(1.02);
      box-shadow: var(--shadow-heavy);
    }

    .photo-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, rgba(10, 52, 32, 0.1), transparent);
      opacity: 0;
      transition: var(--transition);
    }

    .family-photo:hover .photo-overlay {
      opacity: 1;
    }

    /* Stats Section */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }

    .stat-card {
      background: var(--background-gradient);
      color: var(--text-light);
      padding: 2rem;
      border-radius: var(--border-radius);
      text-align: center;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
      transition: left 0.5s;
    }

    .stat-card:hover::before {
      left: 100%;
    }

    .stat-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-medium);
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 0.9rem;
      opacity: 0.9;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* Call to Action */
    .cta-section {
      background: var(--background-gradient);
      color: var(--text-light);
      padding: 3rem;
      border-radius: var(--border-radius);
      text-align: center;
      margin: 3rem 0;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1), transparent);
    }

    .cta-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      position: relative;
      z-index: 2;
    }

    .cta-text {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      opacity: 0.95;
      position: relative;
      z-index: 2;
    }

    .cta-button {
      display: inline-block;
      background: white;
      color: var(--primary-color);
      padding: 1rem 2rem;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      transition: var(--transition);
      position: relative;
      z-index: 2;
      box-shadow: var(--shadow-light);
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-medium);
      background: #f8f8f8;
    }

    /* Footer Styles */
    footer {
      background: var(--primary-color);
      color: var(--text-light);
      text-align: center;
      padding: 2.5rem 0;
      margin-top: 4rem;
      position: relative;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .footer-text {
      font-size: 0.95rem;
      opacity: 0.9;
      margin-bottom: 1rem;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 1.5rem;
    }

    .footer-link {
      color: var(--text-light);
      text-decoration: none;
      opacity: 0.8;
      transition: var(--transition);
    }

    .footer-link:hover {
      opacity: 1;
      text-decoration: underline;
    }

    /* Scroll Indicator */
    .scroll-indicator {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: rgba(45, 143, 95, 0.2);
      z-index: 1000;
    }

    .scroll-progress {
      height: 100%;
      background: var(--accent-color);
      width: 0%;
      transition: width 0.1s ease;
    }

	@media (max-width: 768px) {
	  .nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		right: 0;
		background: white;
		flex-direction: column;
		width: 100%;
		box-shadow: var(--shadow-light);
		padding: 1rem 2rem;
	  }

	  .nav-menu.active {
		display: flex;
	  }

	  .nav-toggle {
		display: flex;
	  }
	}
	  
    /* Responsive Design */
    @media (max-width: 768px) {
      .header-container {
        padding: 0 1rem;
      }

      .company-name {
        font-size: 2rem;
      }

      main {
        padding: 2rem 1rem;
      }

      .content-wrapper {
        padding: 2rem 1.5rem;
      }

      .story-paragraph {
        font-size: 1.05rem;
        padding-left: 0.5rem;
      }

      .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .cta-section {
        padding: 2rem 1.5rem;
      }

      .footer-links {
        flex-direction: column;
        gap: 1rem;
      }
    }

    @media (max-width: 480px) {
      .logo {
        width: 100px;
        height: 100px;
      }

      .logo img {
        width: 70px;
      }

      .company-name {
        font-size: 1.8rem;
      }

      .content-wrapper {
        padding: 1.5rem 1rem;
      }

      .cta-section {
        padding: 1.5rem 1rem;
      }
    }

    /* Accessibility */
    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* Print Styles */
    @media print {
      .page-loader,
      .scroll-indicator,
      .cta-section {
        display: none;
      }
      
      body {
        background: white;
        color: black;
      }
      
      .content-wrapper {
        box-shadow: none;
        border: 1px solid #ddd;
      }
    }
