html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #313131;
}

body {
  display: flex;
  flex-direction: column;
}

/* 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;
}
/* Txt */

.container {
padding-top: 240px;
padding-bottom: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.financiamento {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.texto {
  flex: 1;
  min-width: 300px;
}

.texto h1 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #a87e3a;
}

.imagem {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.imagem img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.vantagens h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #a87e3a;
}

.vantagens ul {
  list-style: none;
  padding: 0;
}

.vantagens li {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #313131;
}


/* Rodapé */
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;
}

/* Responsivo */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    height: auto;
    padding: 10px;
  }

  .logo-left, .logo-right {
    width: 50%;
    margin-bottom: 10px;
  }

  .menu-icons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .icon-wrapper, .menu-icons img {
    width: 50px;
  }

  .topo {
    flex-direction: column;
  }

  .imagem-casal, .texto-destaque {
    max-width: 100%;
  }

  .top-bar {
    padding: 6px 20px;
  }
}
