body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #1a1a1a;
  line-height: 1.6;
}

header {
    font-family: Arial, sans-serif;
  }
  
  /* Top Bar */
.top-bar {
  background: #313131;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 80px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9998;
  transition: transform 0.3s ease;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid white;
  border-radius: 50%;
  margin-right: 10px;
  text-decoration: none;
  background: transparent;
  color: white;
}

.social-icons a:hover {
  background-color: #a87e3a;
}

.social-icons a:last-child {
  margin-right: 0;
}

.logo-redes {
  width: 30px;
  height: 20px;
}

.logo-redes-linkedin {
  width: 30px;
  height: 30px;
   transform: translateX(-1px);
}

/* Main Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  padding: 20px;
  height: 140px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  width: 100%;
  top: 40px;
  transition: top 0.3s ease;
}

.header-fixed .main-header {
  top: 0;
}

.logo-left {
  width: 19%;
}

.logo-right {
  width: 14%;
}

.menu-icons {
  display: flex;
  gap: 30px;
}

.menu-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-size: 11px;
  color: #292929;
  font-weight: bold;
}

.menu-icons img {
  margin-bottom: 4px;
  width: 70px;
}

.menu-icons a:nth-child(2),
.menu-icons a:nth-child(4) {
  color: #c59a4c;
}

.text-cinza {
  color: #313131;
}

.text-dourado {
  color: #c59a4c;
}

.icon-wrapper {
  width: 70px;
  color: #313131;
}

.icon-1:hover,
.icon-2:hover,
.icon-3:hover,
.icon-4:hover {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

.icon-wrapper {
  width: 70px;
  color: #313131;
}

  /* Footer geral */

  footer {
  background-color: #222;
  color: #eee;
  padding: 40px 30px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.footer-section {
  flex: 1 1 220px;
  margin: 15px;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
}

.footer-nav h3,
.footer-contact h3,
.footer-social h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li {
  margin-bottom: 12px;
}

.footer-nav ul li a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-nav ul li a:hover {
  color: #c59a4c;
}

.footer-contact p {
  margin: 7px 0;
  font-size: 1rem;
}

.footer-social a {
  display: inline-block;
  margin-right: 15px;
  color: #eee;
  font-size: 26px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #c59a4c;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 15px 0 0 0;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  font-size: 0.9rem;
  color: #bbb;
}


.quem-somos {
  padding: 150px 20px;
  padding-top: 220px;
  max-width: 1000px;
  margin: auto;
  font-family: 'Arial', sans-serif;
  text-align: center;
  color: #313131;
}

.quem-somos h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.quem-somos p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.quem-somos strong {
  font-weight: bold;
}

.valores-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
}

.valores-container .bloco {
  flex: 1;
  min-width: 280px;
  background-color: #f4f9fd;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.valores-container h2 {
  font-size: 20px;
  color: #313131;
  margin-bottom: 10px;
}

.valores-container p, .valores-container li {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.valores-container ul {
  list-style: none;
  padding-left: 0;
}

.valores-container li::before {
  content: "✓ ";
  color: #313131;
  font-weight: bold;
}


