@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary: #009CFF;
    --primary-2: #D9EEFF;
    --primary-hover: #007bff;

    --secondary: #414c57;
    --secondary-2: #979da3;
    --secondary-hover: #5a6268;

    --light: #fff;
    --dark: #0f172a;
    --font: #414c57;
    --hover: #d9e7f74f;
     --border: #e5e7eb;  
    --fundo-gradient: linear-gradient(135deg, #eef2f7, #f8fafc);

   --accent: #2563eb;        /* azul estratégico */
  --accent-soft: #eff6ff;

  --bg-main: #ffffff;
  --bg-soft: #f9fafb;
  --bg-glass: rgba(255,255,255,0.6);

  --text-strong: #0f172a;
  --text-normal: #334155;
  --text-muted: #64748b;
}

*{
  font-family: "Poppins", sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-main);
  color: var(--text-normal);
  line-height: 1.7;
}

h1, h2, h3 {
  color: var(--text-strong);
  font-weight: 800;
  letter-spacing: -0.5px;
}

html, body {
  overflow-x: hidden;
}

.section-title {
  max-width: 720px;
  margin: 80px auto;
  text-align: center;
  padding: 0 16px;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 6px !important;
}

.section-title p {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
}

@media (max-width: 768px) {
  .section-title {
    margin: 60px auto;
  }

  .section-title h2 {
    font-size: 1.7rem;
  }
}


/* Logo texto preto */
.logo-chama {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chama {
  position: relative;
  font-size: 26px;
  font-weight: 650;
  color: var(--dark);
  line-height: 1;
}

.chama-br {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  color: var(--light);
  line-height: 1;
}

.linha {
  position: absolute;
  left: 2px;
  bottom: -8px;
  width: 94%;
  height: 10px;
}

.linha path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-linecap: round;
}
/*
.ponto {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-top: 18px;
  margin-left: -5px;
}*/

.os {
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 20px;
  padding: 5px;
  border-radius: 5px;
  line-height: 1;
  margin-left: -10px;

}

.section-title h2{
  margin: 80px;
}

.header-item-left .brand {
  display: flex;
  align-items: center;
  gap: 10px; /* espaço entre logo e texto */
  text-decoration: none; /* remove sublinhado do link */
  margin-left: 5px;
}

.header-item-left .logo {
  height: 35px; /* ajusta o tamanho do logo */
  width: auto;
}


/* ===============================
   FOOTER MINIMAL MODERNO
================================ */

.footer-minimal {
  margin-top: 10px;
  padding: 20px 10px;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  background: linear-gradient(
    to top,
    rgba(13, 110, 253, 0.06),
    transparent
  );
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-minimal strong {
  color: #0f172a;
  font-weight: 600;
}

/* DESKTOP */
.desktop-btn {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.mobile-btn {
  display: none !important;
}

/* MOBILE */
@media (max-width: 991px) {
  .desktop-btn {
    display: none !important;
  }

  .mobile-btn {
    display: flex !important;
    align-items: center;
  }
}

.btn-right{
  background: var(--primary);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--light);
  white-space: nowrap;
}

.btn-right:hover {
  background-color: var(--primary-hover);
}

.btn-mais{
  background: #d8d9db;
 
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--font);
  white-space: nowrap;
}

.btn-mais:hover {
  background-color: #b7babd;
}

.btn-right,
.btn-mais {
  margin: 0;
  margin-left: 10px;
}

/*btn-hero*/
.btn-saas {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 16px 34px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;

  background: var(--primary);
  color: var(--light);

  border-radius: 14px;
  border: 1px solid transparent;

  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;

  background: rgba(255,255,255,0.1);
  border-radius: 50%;

  transition: all 0.3s ease;
}

.btn-icon svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* Hover principal */
.btn-saas:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(17, 24, 39, 0.25);
}

/* Ícone avança */
.btn-saas:hover .btn-icon svg {
  transform: translateX(1px);
}

/* Fundo do círculo reage */
.btn-saas:hover .btn-icon {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

/* Clique */
.btn-saas:active {
  transform: scale(0.98);
}

/* Btn Secundário Premium */
.btn-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;

  background: transparent;
  color: var(--text-strong);

  border: 1px solid var(--border);
  border-radius: 14px;

  transition: all 0.25s cubic-bezier(.4,0,.2,1);
}

.btn-ghost .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;

  border-radius: 50%;
  background: var(--bg-soft);

  transition: all 0.3s ease;
}

.btn-ghost .btn-icon svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* Hover elegante */
.btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--text-strong);
  transform: translateY(-2px);
}

/* Ícone avança */
.btn-ghost:hover .btn-icon svg {
  transform: translateX(4px);
}

/* Círculo reage */
.btn-ghost:hover .btn-icon {
  background: var(--accent-soft);
}

@media (max-width: 768px) {
  .btn-saas,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
