@font-face {
  font-family: 'Segoe UI';
  src: url('fonts/segoe-ui/Segoe UI.ttf2') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  scroll-padding: 100px;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #111;
  position: relative;

}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #1C1C1F;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.logo {
  font-weight: 700;
  color: #86806a;
  font-size: 18px;
}

.logo img {
  width: 300px;
}

nav a {
  margin: 0 20px;
  text-decoration: none;
  color: white;
  font-weight: 400;
}

.btn-contato {
  padding: 8px 16px;
  background: #86806a;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-contato:hover {
  background: #6b4f3b;
}

.hero {
  background: url('images/hero.jpg') no-repeat left;
  background-color: rgba(31, 29, 29, 0.76);
  background-size: cover;
  background-blend-mode: overlay;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.hero h1 span {
  color: #86806a;
}

.hero p {
  font-size: 18px;
  color: #d1d5db;
  margin: 16px 0;
}

.hero a {
  background: #86806a;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
  border: 1px solid #86806a;
  transition: background 0.3s, border 0.3s;
}

.hero a:hover {
  background: transparent;
  border: 1px solid white;
}

section {
  padding: 100px 60px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto 48px;
}

.cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 24px;
  width: 350px;
  text-align: center;
}

.icon-ativos {
  font-size: 2em;
  padding: 16px;
  color: #86806a;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 15px;
}

.card p {
  font-size: 14px;
  color: #6b7280;
}

.bar-chart {
  margin: 60px auto;
  max-width: 1000px;
  height: 300px;
}

.foco-lista {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.foco-item,
.proposta-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.foco-item img,
.proposta-item img {
  width: 24px;
  margin-top: 4px;
}

.icon-estrategia {
  font-size: 2em;
  color: #86806a;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #064e3b;
}

.proposta-lista {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

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

.proposta-flex img {
  border-radius: 16px;
  width: 450px;
  height: 400px;
}

.icon-proposta {
  font-size: 2em;
  color: #86806a;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #064e3b;
}

.contato {
  background-color: #86806a;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.contato h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contato p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 24px;
}

.contato-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  font-size: 16px;
}

.btn-contato-cta {
  background: #fff;
  color: black;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}

.btn-contato-cta:hover {
  background: #6b4f3b;
  color: white;
}

.rodape {
  background: #1f2937;
  color: #9ca3af;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
}

.rodape a {
  color: #93c5fd;
  text-decoration: none;
}


/* ================== RESPONSIVIDADE ================== */

/* Tablets */
@media (max-width: 1024px) {
  header {
    padding: 15px 30px;
  }

  .logo img {
    width: 220px;
  }

  nav a {
    margin: 0 10px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

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

  .proposta-flex img {
    width: 100%;
    height: auto;
    max-width: 500px;
  }

  .cards {
    gap: 16px;
  }

  .card {
    width: 100%;
    max-width: 400px;
  }
}

/* Celulares */
@media (max-width: 768px) {
  header {
    align-items: center;
    padding: 15px 20px;
  }

  nav {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    gap: 10px;
  }

  nav a {
    margin: 0;
    font-size: 16px;
  }

  .btn-contato {
    margin-top: 10px;
    align-self: flex-start;
  }

  .hero {
    height: auto;
    padding: 120px 20px 60px;
    background-position: center;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 100%;
  }

  .foco-lista {
    padding: 0 10px;
  }

  .proposta-lista {
    max-width: 100%;
  }

  .contato-info {
    flex-direction: column;
    gap: 10px;
  }

  .contato h2 {
    font-size: 28px;
  }

  .contato p {
    font-size: 16px;
  }

  .rodape {
    font-size: 12px;
  }
}

/* Smartphones pequenos */
@media (max-width: 480px) {
  .logo img {
    width: 160px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero p {
    font-size: 13px;
  }

  .btn-contato,
  .btn-contato-cta {
    font-size: 14px;
    padding: 10px 18px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 13px;
  }
}


/* Botão menu hambúrguer */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    gap: 15px;
    background: #1C1C1F;
    width: 100%;
    padding: 20px;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 9;
  }

  nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  header {
    flex-wrap: wrap;
  }

  .btn-contato {
    margin-left: auto;
  }
}


.whatsapp-button {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 999;
  border-radius: 50%;
  background-color: #25D366;
  padding: 4px 10px;
}

.whatsapp-button i {
  font-size: 3rem;
  cursor: pointer;
  transition: color .2s;
}

.whatsapp-button i:hover {
  color: white;
}

.whatsapp-button a {
  color: black;
}