:root {
  --primary-color: #64748b;
  --primary-dark: #2C3E50;
  --secondary-color: #10b981;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --gray-color: #64748b;
  --light-gray: #e2e8f0;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

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

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.main-header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Logo Styles */
.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo {
  width: 200px;
  height: 60px;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  /*background-color: #2563eb;*/
  border-radius: 8px;

}
.logo img{
  margin: auto;
  width: auto;
  height: 100%;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 40px;
  background-color: #2563eb;
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}


.logo-text-container {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #1e293b;
  line-height: 1.2;
}

.logo-subtext {
  font-size: 1.2rem;
  color: #64748b;
  font-weight: 500;
}

/* Navigation Styles */
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 10px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-link:hover {
  color: #2563eb;
  background-color: #f8fafc;
}

.btn-nav {
  background-color: #2C3E50; 
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-nav:hover {
  background-color: #405264;
  transform: translateY(-2px);
}

.icon-user {
  font-size: 0.9rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 32px;
}

.menu-icon {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #1e293b;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 80px);
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow-y: auto;
  }

  .main-nav.active {
    left: 0;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 5px;
  }

  .nav-link {
    padding: 12px 15px;
    width: 100%;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.active .menu-icon:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-menu-btn.active .menu-icon:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active .menu-icon:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}





/* Footer */
.main-footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col p, .footer-col address {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: white;
}

.logo-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.logo-footer .logo-icon {
  width: 30px;
  height: 30px;
  font-size: 1rem;
}

.logo-footer .logo-text {
  color: white;
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links 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: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 992px) {
  .hero-content, .sobre-content {
    flex-direction: column;
  }
  
  .hero-text, .sobre-text {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .hero-actions, .sobre-destaques, .cta-actions {
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    padding: 120px 0 60px;
    margin-top: 60px;
  }
  
  .hero-actions, .cta-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn {
    width: 100%;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .sobre-destaques {
    flex-direction: column;
    gap: 20px;
  }
}



.conteudo{
    margin: 0px;
    margin-top: 70px;
    width: 100%;
    height: calc(100% - 70px);
    padding: 0px 5px;
    overflow: hidden;
    overflow-y: auto;
    position: relative;
}
