@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

:root {
  --font-family: 'Josefin Sans', sans-serif;
}

body,
h1, h2, h3, h4, h5, h6,
p, li, a, button, input, textarea {
  font-family: var(--font-family) !important;
}


.btn-custom-primary {
  background-color: var(--custom-primary);
  border-color: var(--custom-primary);
  color: #030303;
}

.btn-custom-primary:hover,
.btn-custom-primary:focus,
.btn-custom-primary:active {
  background-color: var(--custom-primary) !important;
  border-color: var(--custom-primary) !important;
  color: #030303 !important;
  filter: brightness(0.9) !important;
}

body {
  font-family: var(--font-family);
}

#header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 18px 0;
}

.logo img {
  max-height: 48px;
}

.menu a {
  margin-left: 28px;
  font-weight: 500;
  color: #030303;
}

.menu a.btn-menu {
  padding: 8px 16px;
  border: 1px solid #030303;
  border-radius: 4px;
}

.menu a.btn-menu:hover {
  background: #030303;
  color: #fff;
}

.btn-primary {
  display: inline-block;
  background: #030303;
  color: #fff;
  padding: 12px 26px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-primary:hover {
  filter: brightness(0.9);
  color: #fff;
}

.btn-secondary {
  display: inline-block;
  border: 1px solid #030303;
  color: #030303;
  padding: 12px 26px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-secondary:hover {
  background: #030303;
  color: #fff;
}

.hero-section {
  padding: 100px 0;
}

.hero-section h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-section .lead {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-note {
  margin-top: 15px;
  font-size: 15px;
  opacity: 0.9;
}

.hero-form h3 {
  margin-bottom: 15px;
  font-weight: 700;
}

section {
  padding: 90px 0;
}

section h2 {
  margin-bottom: 25px;
}

section p {
  margin-bottom: 15px;
}

#solucoes {
  background: #f8f8f8;
}

.solucao-item h3 {
  margin-bottom: 15px;
}

.solucao-item ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.solucao-item ul li {
  margin-bottom: 6px;
}

.diferencial-item {
  padding: 30px 20px;
  border: 0px solid #eee;
  height: 100%;
}

.diferencial-item img {
  max-height: 80px;
  margin-bottom: 15px;
}

.marcas {
  background: #f8f8f8;
}

.marcas img {
  border-radius: 6px;
}

.cta-final {
  padding: 110px 0;
  position: relative;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0.65);
}

.cta-final .container {
  position: relative;
  z-index: 2;
}

.footer {
  background: #f8f8f8;
  color: #030303;
  padding: 70px 0 30px;
}

.footer-logo img {
  max-width: 220px;
}

.footer-contatos p {
  margin-bottom: 18px;
}

.footer-contatos a {
  color: #030303;
}

.footer-contatos a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.6;
}

/* BOTÃO BRANCO APENAS NO CTA FINAL */
#cta-final .btn-primary {
  background: #fff;
  color: #030303;
  border: 1px solid #030303;
}

#cta-final .btn-primary {
  padding: 14px 32px;
  font-weight: 700;
}

.footer {
  background: #f8f8f8;
  color: #030303;
}

.footer-text {
  margin-bottom: 12px;
  font-weight: 500;
}

.footer-link {
  color: #030303;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 14px;
  opacity: 0.6;
}

/* =========================
   NAVBAR MOBILE
   ========================= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;              
  margin-right: 12px;        
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #000;
  border-radius: 2px;
}


/* =========================
   MOBILE
   ========================= */
@media (max-width: 991px) {

  /* HEADER */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
    z-index: 999;
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    margin: 0;
    font-size: 16px;
  }

  /* HERO */
  .hero-section {
    padding: 50px 0;
  }

  .hero-section .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .hero-section h1 {
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
  }

  .hero-section p {
    font-size: 15px;
  }

  /* FORM */
  .hero-form {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
  }

  .hero-form input,
  .hero-form textarea,
  .hero-form button {
    width: 100%;
  }

  /* EVITA ESTOURO */
  img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 991px) {

  /* HERO */
  #hero {
    text-align: center;
  }

  #hero .row {
    row-gap: 30px; /* espaço entre texto e form */
  }

  #hero h1 {
    font-size: 28px;
    line-height: 1.25;
  }

  #hero .lead,
  #hero .hero-note {
    text-align: center;
  }

  /* FORM */
  #hero .hero-form {
    margin: 0 auto;
    max-width: 100%;
  }

}


@media (max-width: 991px) {

  /* SECTION SOBRE */
  #sobre {
    text-align: center;
  }

  #sobre .row {
    row-gap: 30px; /* espaço entre texto e imagem */
  }

  #sobre .btn-primary {
    display: inline-block;
    margin: 25px auto 0; /* espaçamento + centralização */
  }

  #sobre img {
    margin-top: 20px; /* afasta da parte de cima */
  }

}

@media (max-width: 991px) {

  /* SECTION SOLUÇÕES */
  #solucoes {
    text-align: center;
  }

  #solucoes .solucao-item {
    row-gap: 25px; /* espaço entre texto e imagem */
  }

  #solucoes h3 {
    margin-bottom: 15px;
  }

  #solucoes ul {
    padding-left: 0;
    list-style-position: inside;
  }

  #solucoes p {
    margin-top: 15px;
  }

  #solucoes img {
    margin-top: 15px;
  }

}

@media (max-width: 991px) {

  /* DIFERENCIAIS */
  #diferenciais .diferenciais-grid {
    display: flex;
    flex-wrap: wrap;
  }

  #diferenciais .diferenciais-grid > div {
    width: 50%;
    max-width: 50%;
    margin-bottom: 20px;
  }

  #diferenciais .diferencial-item {
    padding: 20px 10px;
  }

  #diferenciais .diferencial-item img {
    max-height: 60px;
  }

}


@media (max-width: 991px) {

  /* SECTION MARCAS */
  #marcas {
    text-align: center;
  }

  #marcas h2 {
    margin-top: 20px;
  }

  #marcas p {
    text-align: center;
  }

  #marcas .btn-primary {
    display: inline-block;
    margin: 25px auto 0;
  }

}

/* =========================
   TIPOGRAFIA GLOBAL
   ========================= */

section p {
  font-size: 18px !important;
  line-height: 1.7;
}

h1 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
}

h2 {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 700;
}

h3 {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
}

#solucoes ul li {
  font-size: 18px;
  line-height: 1.6;
}


/* =========================
   TIPOGRAFIA MOBILE
   ========================= */
@media (max-width: 991px) {
  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  p  { font-size: 15.5px; }
}

@media (max-width: 991px) {
  #solucoes ul li {
    font-size: 16px;
  }
}

/* =========================
   AJUSTES SOMENTE MOBILE
========================= */
@media (max-width: 768px) {

  #marcas {
    padding: 40px 0;
  }

  #marcas .row {
    text-align: center;
  }

  /* IMAGEM */
  #marcas img {
    max-width: 85%;
    margin: 0 auto 24px;
    display: block;
  }

  /* TÍTULO */
  #marcas h2 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  /* PARÁGRAFO */
  #marcas p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* SUBTÍTULO */
  #marcas h4 {
    font-size: 16px !important;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  /* LISTA DE MARCAS */
  .lista-marcas {
    list-style: none;
    padding: 0;
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 colunas no mobile */
    gap: 10px 20px;
    max-width: 320px;
  }

  .lista-marcas li {
    font-size: 14px;
    opacity: 0.9;
  }

  /* BOTÃO */
  #marcas .btn-primary {
    display: inline-block;
    margin-top: 8px;
    padding: 14px 28px;
    font-size: 15px;
  }

}


