/* Estilos base para a seção de garantia */
.guarantee-section {
  background-color: #f4f7f9;
  padding: 60px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: #333;
}
.guarantee-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* Título e subtítulo */
.guarantee-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2a4b;
  margin-bottom: 10px;
  line-height: 1.2;
}
.guarantee-title .red-highlight {
  color: #c9302c;
  /* Vermelho mais sóbrio */
}
/* Conteúdo do texto */
.guarantee-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
}
.guarantee-text p {
  margin-bottom: 20px;
}
/* Layout da garantia (imagem e texto) */
.guarantee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.guarantee-badge {
  flex-shrink: 0;
  width: 200px;
}
.guarantee-badge img {
  width: 100%;
  height: auto;
}
/* Badges de confiança */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.trust-badges img {
  height: 50px;
  object-fit: contain;
}
/* Responsividade */
@media (max-width: 768px) {
  .guarantee-content {
    flex-direction: column;
    gap: 20px;
  }
  .guarantee-badge {
    width: 150px;
  }
  .guarantee-text {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .guarantee-title {
    font-size: 2rem;
  }
}

/* ANOTHER STYLE */

.abc-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  font-family: "Jost", sans-serif;
}
.abc-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 1rem;
}
/* Logo à esquerda */
.abc-logo img {
  height: 40px;
  display: block;
}
/* Navegação central */
.abc-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.abc-nav a {
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.abc-nav a:hover {
  color: #cc0000;
}
/* Ações à direita */
.abc-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.abc-actions button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #111827;
}
.abc-actions button:hover {
  color: #cc0000;
}
/* Mobile: oculta menu central, mostra hambúrguer se quiser */
@media (max-width: 768px) {
  .abc-nav,
  .abc-actions .abc-apps,
  .abc-actions .abc-search {
    display: none;
  }
}
