/* ================================================
   TUDO SE VESTE - Components
   ================================================ */

/* --- BADGE --- */
.badge {
  display: inline-block;
  background: var(--azul);
  color: var(--amarelo);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.badge--yellow {
  background: var(--amarelo);
  color: var(--azul);
  letter-spacing: 3px;
  font-size: 13px;
  padding: 6px 18px;
  margin-bottom: var(--space-md);
}

/* --- BOTÃO WHATSAPP --- */
.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background: var(--verde);
  color: var(--branco);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), transform var(--transition-fast);
  box-shadow: var(--shadow-btn);
}

.btn-wa:hover {
  background: var(--verde-escuro);
  transform: scale(1.02);
}

.btn-wa svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- BOTÃO HERO --- */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--verde);
  color: var(--branco);
  font-weight: 800;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-hero);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,156,59,0.6);
}

.btn-hero svg,
.btn-cta svg {
  width: 22px;
  height: 22px;
}

/* --- BOTÃO CTA AMARELO --- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amarelo);
  color: var(--azul);
  font-weight: 800;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  transition: transform var(--transition-fast);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-cta:hover {
  transform: translateY(-3px);
}

/* --- CARD --- */
.card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  animation: fadeUp 0.6s ease both;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }

.card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #e8edf5;
}

.card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__img-wrap img {
  transform: scale(1.05);
}

.card__overlay {
  position: absolute;
  top: 12px;
  left: 12px;
}

.card__body {
  padding: 20px 22px 24px;
}

.card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--azul);
  margin-bottom: 6px;
}

.card__desc {
  font-size: 13px;
  color: var(--cinza-texto);
  line-height: 1.5;
  margin-bottom: 18px;
}

/* --- STEP (Como Funciona) --- */
.step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: var(--space-md) 20px;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  color: var(--branco);
  text-align: center;
}

.step__num {
  width: 44px;
  height: 44px;
  background: var(--amarelo);
  color: var(--azul);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 auto 14px;
}

.step p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
}
