/* ===== Seção Rotinas ===== */
.routines {
  background: var(--white);
  padding: clamp(48px, 6vw, 96px) 16px;
  font-family: var(--secondary-font);
}

.routines__container {
  max-width: 1100px;
  margin: 0 auto;
}

.routines__header {
  text-align: center;
  margin-bottom: 40px;
}

.routines__title {
  font-family: var(--primary-font);
  font-size: clamp(26px, 3.4vw, 42px);
  letter-spacing: 0.08em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.routines__subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--secondary);
  margin-bottom: 6px;
}

.routines__desc {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--ternary);
}

/* ===== Grid ===== */
.routines__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

/* ===== Botões grandes (igual imagem) ===== */
.routine-pill {
  background: var(--accent-light);
  border: 1px solid var(--border);
  border-radius: 999px;

  padding: 22px 28px;
  min-height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 17px;
  font-weight: 500;
  color: var(--primary);
  text-transform: lowercase;

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* ===== CTA ===== */
.routines__cta {
  display: flex;
  justify-content: center;
}

.routines__btn {
  background: var(--accent);
  color: var(--white);

  padding: 18px 46px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;

  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.routines__btn:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
}

/* ===== Responsivo ===== */
@media (max-width: 900px) {
  .routines__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .routines__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .routine-pill {
    font-size: 16px;
    padding: 20px 24px;
  }

  .routines__btn {
    width: 100%;
    max-width: 360px;
    text-align: center;
  }
}
