/* ==========================================================================
   SEÇÃO: X. CHAMADA FINAL (.closing)
   Design: Editorial Monumental Noturno com Atmosfera Sacra e Dourada
   ========================================================================== */

.closing {
  position: relative;
  background: #080A0E;
  color: var(--color-white);
  padding: 8.5rem 0 9rem;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(197, 155, 39, 0.25);
}

.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: 
    radial-gradient(circle 600px at 50% 45%, rgba(255, 204, 0, 0.12) 0%, rgba(255, 204, 0, 0.02) 50%, transparent 75%),
    linear-gradient(180deg, rgba(8, 10, 14, 0.8) 0%, transparent 40%, rgba(8, 10, 14, 0.9) 100%);
}

.closing__engraving {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0.35;
}

.closing__engraving svg {
  width: min(840px, 95vw);
  height: auto;
  animation: rotate-clockwise 140s linear infinite;
}

.closing__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}

/* Badge de Urgência / Status */
.closing__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 1.1rem;
  border: 1px solid rgba(197, 155, 39, 0.4);
  border-radius: var(--radius-full);
  background: rgba(255, 204, 0, 0.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E6C66E;
  margin-bottom: 2rem;
}

.closing__kicker .pulse-dot {
  width: 7px;
  height: 7px;
  background: #FFCC00;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.9);
  animation: pulse-glow-light 2s infinite ease-in-out;
}

/* Título Monumental */
.closing__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  line-height: 1.02;
  color: var(--color-white);
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9);
}

.closing__title-accent {
  font-family: var(--font-gotica), cursive;
  font-weight: 400;
  color: #E5A900;
  display: inline-block;
  font-size: 1.18em;
  line-height: 0.92;
  text-shadow: 0 2px 20px rgba(229, 169, 0, 0.35);
}

/* Texto de Argumentação */
.closing__text {
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.72;
  max-width: 54ch;
  margin: 0 auto 2.75rem;
  color: rgba(255, 255, 255, 0.78);
  text-wrap: pretty;
}

/* Botão de Ação */
.closing__actions {
  margin-bottom: 2rem;
}

.closing__btn {
  padding: 1.15rem 2.75rem !important;
  font-size: 1.05rem !important;
  box-shadow: 0 8px 30px rgba(229, 169, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease !important;
}

.closing__btn:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 14px 40px rgba(229, 169, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

/* Faixa de Garantia / Confiança */
.closing__guarantee {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.closing__guarantee span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.closing__guarantee .guarantee-dot {
  font-size: 0.5rem;
  color: #C59B27;
  font-style: normal;
}

@media (max-width: 768px) {
  .closing {
    padding: 6rem 0 6.5rem;
  }

  .closing__guarantee {
    flex-direction: column;
    gap: 0.65rem;
    font-size: 0.68rem;
  }
}
