* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

header {
  background: white;
  padding: 20px 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.2em;
  font-weight: 700;
  color: #006437;
  max-width: 50%;
  white-space: normal;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo img {
  width: 64px;
  height: 64px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  width: 25px;
  height: 3px;
  background: #006437;
  transition: all 0.3s ease;
}

.hamburger::before {
  transform: translateY(-8px);
}

.hamburger::after {
  transform: translateY(5px);
}

.menu-toggle.active .hamburger {
  background: transparent;
}

.menu-toggle.active .hamburger::before {
  transform: translateY(0) rotate(45deg);
}

.menu-toggle.active .hamburger::after {
  transform: translateY(0) rotate(-45deg);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #555;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #006437;
}

#hero {
  padding: 142px 40px 80px;
  background: white;
  text-align: left;

  position: relative;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 1;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

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

.hero-text h1 {
  font-size: 2.8em;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.get-started-btn {
  background: #006437;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 20px;
  transition: background 0.3s;
}

.get-started-btn:hover {
  background: #004d2b;
}

.stats {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  max-width: 300px;
  text-align: center;
}

.stats h3 {
  font-size: 1.5em;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.stats p {
  font-size: 0.9em;
  color: #666;
}

#sobre {
  padding: 80px 40px;
  background: #f8f9fa;
  text-align: center;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

h2 {
  font-size: 2.2em;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

p {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 20px;
}

#conteudo {
  padding: 80px 40px;
  background: white;
}

.dashboard-section {
  margin-bottom: 60px;
}

.dashboard-container {
  position: relative;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  min-height: 400px;
  margin-top: 30px;
}

.dashboard-container iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.fullscreen-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #006437;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 0.9em;
  transition: background 0.3s;
}

.fullscreen-btn:hover {
  background: #004d2b;
}

footer {
  background: #004d2b;
  color: white;
  padding: 40px 40px;
  text-align: center;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-orgs {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.org-logo {
  max-width: 142px;
  height: auto;
  transition: transform 0.3s ease;
}

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

.footer-socials {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.footer-socials a {
  color: white;
  font-size: 1.5em;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: row;
  gap: 4px;
  text-decoration: none;
  align-items: center;
}

.footer-socials i {
  margin: 0;
}

.footer-socials p {
  color: white;
  font-size: 1.2rem;
  margin: 0;
}

.footer-socials a:hover {
  color: #ffc107;
  transform: scale(1.1);
}

.footer-socials p:hover {
  color: #ffc107;
  transform: scale(1.1);
  margin-left: 8px;
}

.footer-address {
  font-size: 1em;
}

.footer-address p {
  margin: 0;
  color: #dfdfdf;
}

.footer-copyright p {
  font-size: 1.1em;
  color: white;
  margin: 0;
}

.footer-copyright a {
  color: #ffc107;
  text-decoration: none;
}

.footer-copyright a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    align-items: center;
    position: relative;
  }

  .logo {
    font-size: 1em;
    max-width: 70%;
    text-align: left;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 999;
  }

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

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  nav a {
    font-size: 1.1em;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2em;
  }

  .stats {
    margin: 0 auto;
  }

  #hero {
    padding-top: 132px;
  }

  footer-orgs {
    gap: 20px;
  }

  .org-logo {
    max-width: 100px;
  }

  .footer-socials {
    gap: 15px;
    flex-wrap: wrap;
  }

  .footer-socials a {
    font-size: 1.3em;
  }

  .footer-address {
    font-size: 0.9em;
  }

  .footer-copyright p {
    font-size: 1em;
  }
}
