* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo */

.logo img {
  width: 150px;
}

/* Links */
.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #0580d8;
}

/* Botão */
.btn-contato {
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.btn-contato:hover {
  background-color: #f5f5f5;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropbtn {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  color: #333;
  font-weight: 500;
}

.dropbtn i {
  font-size: 20px;
  margin-left: 4px;
  vertical-align: middle;
  color: #333;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background-color: white;
  min-width: 150px;
  box-shadow: 0 9px 16px rgba(0,0,0,0.1);
  z-index: 1;
  border-radius: 8px;
}

.dropdown-content a {
  padding: 12px 16px;
  display: block;
  color: #333;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hambúrguer */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #000;
}

.hamburger i {
  font-size: 28px;
  color: #000;
  transition: 0.3s;
}

.hamburger .close-icon {
  display: none;
}

/* Quando o menu estiver aberto */
.nav-links.show ~ .desktop-show {
  display: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .nav-links {
  position: fixed;
  top: 70px; /* ou ajuste conforme altura do seu header */
  left: 0;
  width: 100vw;
  background: #fff;
  flex-direction: column;
  gap: 20px;
  padding: 30px 40px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }


  .nav-links.show {
  opacity: 1;
  max-height: 500px; /* valor alto o suficiente para conter todos os itens */
  transform: translateY(0);
}

  .desktop-show {
    display: none;
  }

  .mobile-show {
    display: inline-block;
  }

  .hamburger {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
  }
  .hamburger i {
    font-size: 28px;
    color: #000;
    transition: 0.3s;
  }

  .navbar-container {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  }

  .nav-links a,
  .btn-contato {
    padding: 10px 0;
  }

.dropdown {
  width: 100%;
  text-align: center;
}

.dropbtn {
  width: 100%;
  background: none;
  border: none;
  font: inherit;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  padding: 10px 0;
  text-align: center;
}

.dropdown-content {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  background: none;
  box-shadow: none;
  border-radius: 0;
  position: static;
}

.dropdown.show-submenu .dropdown-content {
  display: flex;
}

.dropdown-content a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 400;
}
}
.comunicacao-inteligente {
  background: #fff;
  padding: 5rem 2rem;
  font-family: 'Montserrat', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.content-left {
  flex: 1 1 500px;
  text-align: center;
}

.content-right {
  flex: 1 1 500px;
  text-align: center;
}
.bloco-topo-centralizado {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.selo-visao {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #ccc;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 400;
}

.selo-visao img {
  height: 18px;
  width: 18px;
}

.titulo-gradiente {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  background: linear-gradient(to right, #FF9513, #e38007, #a75c01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1.5rem;
}

.btn-cta {
  background: #FF9513;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.btn-cta i {
  font-size: 1rem;
}

.btn-cta:hover {
  background: #cd7100;
}

.entregas-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.entregas {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 500px;
  text-align: left;
}

.entregas li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #333;
}

.entregas li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #FF9513;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.45rem;
}

.beneficios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  text-align: center;
  flex-wrap: nowrap; /* impede quebra */
}

.beneficio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 180px;
  font-family: 'Poppins', sans-serif;
}

.beneficio-item .icone {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.icone-laranja { color: #FF9513; }  /* confiança */
.icone-amarelo { color: #FF9513; }  /* clareza */
.icone-azul    { color: #FF9513; }  /* ruídos */
.icone-verde   { color: #FF9513; }  /* palco */

.beneficio-item strong {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: #000;
}

.beneficio-item .desc {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.3;
}

.mockup-bg {
  max-width: 500px;
  width: 100%;
  border-radius: 30px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0 !important;
 }

  .bloco-topo-centralizado {
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }

  .titulo-gradiente {
    font-size: 1.8rem;
    line-height: 1.2;
    word-break: normal;
    white-space: normal;
    display: inline-block;
    max-width: 100%;
  }
  

  .btn-cta {
    font-size: 0.85rem;
    padding: 0.75rem 2rem;
  }

  .content-right {
    height: auto !important;
    min-height: auto !important;
    flex: unset !important;
  }

  .mockup-bg {
    margin: 1rem auto 0;
    max-width: 90%;
    display: block;
  }

  .entregas-box {
    margin-top: 1rem;
  }

  .entregas-box {
    padding: 1rem;
    margin-top: 1rem;
  }

  .entregas li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
  }

  .beneficios {
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }

  .beneficio-item {
    max-width: 100%;
  }
  .content-right {
  padding: 0;
  margin: 0;
 }
}



/* Fundo do scroll */
::-webkit-scrollbar-track {
  background: #f0f0f0; /* cinza claro */
}

/* "Alça" do scroll */
::-webkit-scrollbar-thumb {
  background-color: #FF9513; /* roxo principal */
  border-radius: 10px;
}

/* Ao passar o mouse */
::-webkit-scrollbar-thumb:hover {
  background-color: #FF9513; /* roxo mais claro para hover */
}

/* Firefox */
html {
  scrollbar-color: #FF9513 #f0f0f0; /* thumb e track */
  scrollbar-width: thin;
}