/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
}

/* 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: 9997;
  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: 9998;
  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;
}

/* Cards - Produtos */
.produtos {
  text-align: center;
  padding: 50px 20px;
  background-color: #313131;
}

.produtos h2 {
  font-size: 56px;
  margin-bottom: 40px;
  color: #fff;
}

.destaque {
  color: #c59a4c;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: #d4d4d4;
  color: #333;
  border-radius: 15px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  background-color: #fff;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #313131;
}

.card img {
  width: 150px;
  height: 150px;
  margin-bottom: 15px;
  border-radius: 100%;
}

.card p {
  font-size: 14px;
  margin-bottom: 15px;
}

.btn,
.consultor,
.consultor2,
.consultor3 {
  display: block;
  text-decoration: none;
  color: #fff;
  background: #313131;
  padding: 10px;
  margin: 5px 0;
  border-radius: 20px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover,
.consultor:hover,
.consultor2:hover,
.consultor3:hover {
  background: #c59a4c;
}

/* Investimentos */
.investimentos {
  text-align: center;
  padding: 50px 20px;
  background-color: #c59a4c;
}

.investimentos h2 {
  font-size: 56px;
  margin-bottom: 40px;
  color: #fff;
}

.destaque-investimentos {
  color: #313131;
}

.cards-investimentos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.cards-investimentos > div {
  background: #f9f9f9;
  color: #333;
  border-radius: 15px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.cards-investimentos > div:hover {
  transform: translateY(-10px);
}

.cards-investimentos h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #c59a4c;
}

.cards-investimentos img {
  width: 150px;
  height: 150px;
  margin-bottom: 15px;
}

.cards-investimentos p {
  font-size: 14px;
  margin-bottom: 15px;
}

.btn-investimentos {
  display: block;
  text-decoration: none;
  color: #fff;
  background: #c59a4c;
  padding: 10px;
  margin: 5px 0;
  border-radius: 20px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-investimentos:hover {
  background: #b6882f;
}

/* Simulação */
.simulacao-cor {
  position: relative;
  background-color: #f5f5f5;
  padding: 120px 40px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.h1-simular {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  border-radius: 10px;
  color: #000;
  font-weight: bold;
  font-size: 2.2rem;
}

#simulacao {
  position: relative;
  max-width: 900px;
  background: white;
  padding: 60px 80px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
}

#simulacao h2 {
  color: #000;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

#form-simulacao select,
#form-simulacao input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  font-size: 1rem;
}

#form-simulacao select:focus,
#form-simulacao input:focus {
  border-color: #c59a4c;
  box-shadow: 0 0 8px rgba(197, 148, 13, 0.5);
  outline: none;
}

.botao-simular {
  display: block;
  width: 100%;
  padding: 16px 20px;
  margin-top: 30px;
  background: linear-gradient(135deg, #c59a4c, #e0a800);
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s, transform 0.2s;
}

.botao-simular:hover {
  background: linear-gradient(135deg, #e0a800, #c59a4c);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Continue colando a partir daqui se precisar do restante */


.botao-enviar {
  background-color: #c5940d;
  color: white;
  padding: 14px 25px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s;
}

.botao-enviar:hover {
  background-color: #c59a4c;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-button {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 20px;
  right: 20px;
  background-color: #29a71a;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-button img {
  width: 67px;
  height: 67 px;
  display: block;
}

.whatsapp-widget {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 100%;
  max-width: 320px;
  background: linear-gradient(to bottom, #14a80f 5%, #14a80f 16%, #ffffff 80px, #f0f0f0 100%);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
  animation: fadeIn 0.5s ease forwards;
  font-family: 'Montserrat', sans-serif;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: white;
  padding: 12px 0px;
  font-weight: bold;
  font-size: 1.1rem;
}

.widget-header button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  transition: background 0.3s;
}

.widget-header button:hover {
  background: rgba(255, 255, 255, 0.4);
}

.atendente {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.atendente:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.atendente img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #14a80f;
  display: block;
}

.atendente small {
  font-size: 0.8rem;
  color: #777;
}

.atendente p {
  font-weight: 600;
  color: #14a80f;
  text-decoration: none;
  font-size: 1rem;
  margin: 0;
}

.whatsapp-widget p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin-top: 10px;
  text-align: center;
}

.whatsapp-widget small {
  font-size: 0.75rem;
  color: #888;
  text-align: center;
  margin-top: 10px;
}

/* 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; /* mais espaço entre título e itens */
  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;
}


/* Outras media queries que você pediu para manter sem mexer */
@media (max-width: 1024px) {
  .container-contato {
    grid-template-columns: 1fr;
  }

  .contato-info,
  .contato-form {
    padding: 30px;
  }

  .header {
    padding: 0 30px;
  }
}

@media (max-width: 480px) {
  .texto {
    top: 45%;
  }

  .imagem-h1 {
    font-size: 150%;
  }

  .imagem-h2,
  .imagem-p {
    font-size: 90%;
  }
}


  .botao-imagem {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .whatsapp-button {
    width: 55px;
    height: 55px;
  }

  .whatsapp-button img {
    width: 30px;
    height: 30px;
  }

  .whatsapp-widget {
    max-width: 280px;
    padding: 15px;
    right: 15px;
    bottom: 75px;
  }

  .widget-header h3 {
    font-size: 1rem;
  }

  .atendente img {
    width: 40px;
    height: 40px;
  }


/* CARROSSEL BÁSICO FUNCIONAL */
/* CARROSSEL */
.carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex-direction: column;
}

/* BANNER GERAL */
.banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  padding: 30px 20px;
  box-sizing: border-box;
  margin-top: 140px;
  height: 500px;
}

/* IMAGEM */
.image-frame {
  flex: 1 1 100%;
  max-width: 100%;
  padding: 10px;
}

.image-frame img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

/* CONTEÚDO */
.banner-content {
  flex: 1 1 100%;
  padding: 20px;
  text-align: center;
}

.banner-content h1 {
  color: #b98e47;
  font-size: 28px;
  margin: 0 0 15px;
}

.banner-content p {
  color: #313131;
  font-size: 14px;
  font-weight: bold;
  font-family: sans-serif;
  margin-bottom: 20px;
  line-height: 1.4;
}

.banner-content a {
  display: inline-block;
  background: #b98e47;
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 25px;
  transition: background 0.3s;
  font-size: 14px;
}

.banner-content a:hover {
  background: #a87e3a;
}

/* SETAS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: #c59a4c;
  background: transparent;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  z-index: 2;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* PAGINAÇÃO */
.pagination {
  text-align: center;
  margin-top: 15px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}

/* ===== DESKTOP (>= 768px) ===== */
@media (min-width: 768px) {
  .banner {
    flex-direction: row;
    padding: 40px;
    height: 600px;
  }

  .image-frame,
  .banner-content {
    flex: 1;
    max-width: 50%;
  }

  .banner-content {
    text-align: left;
  }

  .banner-content h1 {
    font-size: 40px;
  }

  .banner-content p {
    font-size: 16px;
  }

  .banner-content a {
    font-size: 16px;
  }

  .arrow {
    font-size: 40px;
  }

  /* Botão do menu escondido no desktop */
  .mobile-menu-toggle {
    display: none;
  }
  
  .mobile-header{
      display: none;
  }
}

/* ===== MOBILE (< 768px) ===== */
@media (max-width: 767px) {
  .top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
  }

  .social-icons {
    display: flex;
    gap: 10px;
  }

  /* Botão do menu visível no celular */
  .mobile-menu-toggle {
    display: block;
    margin: 10px auto;
    font-size: 3rem;
    background-color: transparent;
    color: #c59a4c;
    border: none;
    padding: 10px;
    cursor: pointer;
  }

  /* Menu oculto no celular até clicar */
  .menu-icons {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
  }

  .menu-icons.show {
    display: flex;
  }

.logo-left{
    display: none;
  }

  .logo-right{
    width: 50%;
  }

  /* Header estilo imagem */
.mobile-header {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: white;
}

/* Botão hambúrguer */
.mobile-menu-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  color: #c59a4c; /* dourado claro */
  cursor: pointer;
  margin-right: 10px;
}

}
