/* =========================================================
   TIMER + GARANTIA SECTION — Premium Professional Design
   ========================================================= */

/* ---- Section Container ---- */
.trust-section {
  background-color: #f8fafb;
  padding: 5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

/* ---- TIMER CARD ---- */
.timer-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.5rem 3rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  text-align: center;
  max-width: 640px;
  width: 100%;
  border: 1.5px solid #fed7aa;
  position: relative;
  overflow: hidden;
}

.timer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ea580c, #f97316, #ea580c);
  background-size: 200% 100%;
  animation: timer-bar-shimmer 3s ease-in-out infinite;
}

@keyframes timer-bar-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.timer-card__title {
  color: #1e293b;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.timer-card__title em {
  font-style: normal;
  color: #ea580c;
  font-weight: 900;
}

.timer-card__blocks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.timer-block__number {
  background: #fff7ed;
  border: 2px solid #fed7aa;
  border-radius: 14px;
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  font-weight: 900;
  color: #ea580c;
  font-variant-numeric: tabular-nums;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.timer-block__number.tick {
  animation: timer-tick 0.4s ease;
}

@keyframes timer-tick {
  0% { transform: scale(1); }
  30% { transform: scale(1.08); box-shadow: 0 0 12px rgba(234, 88, 12, 0.2); }
  100% { transform: scale(1); }
}

.timer-block__label {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.timer-separator {
  font-size: 2rem;
  font-weight: 900;
  color: #ea580c;
  margin-bottom: 1.8rem;
  line-height: 1;
  opacity: 0.6;
}

.timer-card__subtitle {
  color: #475569;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.timer-card__subtitle strong {
  color: #ea580c;
  font-weight: 700;
}

/* ---- SECURITY BLOCK ---- */
.security-block {
  text-align: center;
  max-width: 680px;
  padding: 0 1rem;
}

.security-block__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-block__img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

.security-block__title {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 0.8rem;
  font-weight: 900;
  line-height: 1.2;
}

.security-block__title .green {
  color: #16a34a;
}

.security-block__desc {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

/* ---- GUARANTEE CARD ---- */
.guarantee-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  max-width: 820px;
  width: 100%;
  border: 1.5px solid #bbf7d0;
  position: relative;
}

.guarantee-card__inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

/* Selo / Shield (Imagem) */
.guarantee-seal {
  flex-shrink: 0;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-seal__img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.guarantee-seal__img:hover {
  transform: scale(1.05);
}

/* Content */
.guarantee-card__content {
  flex: 1;
  min-width: 0;
}

.guarantee-card__title {
  font-size: 1.4rem;
  color: #0f172a;
  font-weight: 900;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.guarantee-card__text {
  color: #475569;
  line-height: 1.7;
  font-size: 0.95rem;
}

.guarantee-card__text strong {
  color: #0f172a;
  font-weight: 700;
}

.guarantee-card__text .green-highlight {
  color: #16a34a;
  font-weight: 800;
}

/* 3 Pillars */
.guarantee-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.guarantee-pillar {
  text-align: center;
  padding: 0.8rem 0.5rem;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.guarantee-pillar:hover {
  background: #f0fdf4;
}

.guarantee-pillar__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.5rem;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-pillar__icon svg {
  width: 18px;
  height: 18px;
  fill: #16a34a;
}

.guarantee-pillar__title {
  font-size: 0.8rem;
  color: #0f172a;
  font-weight: 800;
  display: block;
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.guarantee-pillar__desc {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

/* ---- PROMISE BANNER ---- */
.promise-banner {
  background: #ffffff;
  border: 1.5px solid #bbf7d0;
  border-radius: 14px;
  padding: 1rem 2rem;
  max-width: 820px;
  width: 100%;
  text-align: center;
}

.promise-banner__text {
  color: #166534;
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  line-height: 1.5;
}

.promise-banner__text svg {
  width: 20px;
  height: 20px;
  fill: #16a34a;
  flex-shrink: 0;
}

.promise-banner__text strong {
  color: #15803d;
  font-weight: 800;
}

/* =========================================================
   RESPONSIVE — Mobile & Tablet
   ========================================================= */

@media (max-width: 768px) {
  .trust-section {
    padding: 3rem 1rem;
    gap: 2.5rem;
  }

  .timer-card {
    padding: 1.8rem 1.2rem;
    border-radius: 16px;
  }

  .timer-card__title {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .timer-card__blocks {
    gap: 0.4rem;
    margin-bottom: 1.5rem;
  }

  .timer-block__number {
    width: 68px;
    height: 68px;
    font-size: 2.1rem;
    border-radius: 12px;
  }

  .timer-separator {
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
  }

  .timer-block__label {
    font-size: 0.6rem;
    letter-spacing: 0.8px;
  }

  .timer-card__subtitle {
    font-size: 0.85rem;
  }

  .security-block__title {
    font-size: 1.5rem;
  }

  .security-block__desc {
    font-size: 0.95rem;
  }

  .security-block__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
  }

  .security-block__icon svg {
    width: 44px;
    height: 44px;
  }

  .guarantee-card {
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 16px;
  }

  .guarantee-card__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .guarantee-seal {
    width: 120px;
    height: auto;
    margin-bottom: 0.5rem;
  }

  .guarantee-card__title {
    font-size: 1.25rem;
  }

  .guarantee-card__text {
    font-size: 0.9rem;
    text-align: left;
  }

  .guarantee-pillars {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .guarantee-pillar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: left;
    padding: 0.6rem 0.8rem;
  }

  .guarantee-pillar__icon {
    margin: 0;
    flex-shrink: 0;
  }

  .guarantee-pillar__title {
    font-size: 0.78rem;
  }

  .guarantee-pillar__desc {
    font-size: 0.72rem;
  }

  .promise-banner {
    padding: 0.9rem 1.2rem;
  }

  .promise-banner__text {
    font-size: 0.82rem;
  }
}

@media (max-width: 380px) {
  .timer-block__number {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .timer-separator {
    font-size: 1.2rem;
  }
}
